mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
27 lines
664 B
C#
Executable file
27 lines
664 B
C#
Executable file
using System;
|
|
using HISP.Game;
|
|
using HISP.Game.Horse;
|
|
using HISP.Game.SwfModules;
|
|
using HISP.Security;
|
|
using HISP.Server;
|
|
namespace HISP
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.Title = "HISP - Horse Isle Server Emulator";
|
|
ConfigReader.OpenConfig();
|
|
CrossDomainPolicy.GetPolicy();
|
|
Database.OpenDatabase();
|
|
GameDataJson.ReadGamedata();
|
|
Map.OpenMap();
|
|
World.ReadWorldData();
|
|
DroppedItems.Init();
|
|
WildHorse.Init();
|
|
Brickpoet.LoadPoetryRooms();
|
|
GameServer.StartServer();
|
|
|
|
}
|
|
}
|
|
}
|