mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
28 lines
700 B
C#
28 lines
700 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Drawing.Imaging;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using HISP.Game;
|
|
using HISP.Security;
|
|
using HISP.Server;
|
|
namespace HISP
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
Directory.SetCurrentDirectory(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location));
|
|
ConfigReader.OpenConfig();
|
|
CrossDomainPolicy.GetPolicy();
|
|
Database.OpenDatabase();
|
|
Map.OpenMap();
|
|
Gamedata.ReadGamedata();
|
|
World.ReadWorldData();
|
|
DroppedItems.Init();
|
|
GameServer.StartServer();
|
|
|
|
}
|
|
}
|
|
}
|