HISP/Horse Isle Server/HorseIsleServer/Program.cs
SilicaAndPina d9cdd05acb Add Horse Pawneer
and Pawneer Orders.
2021-02-15 13:31:00 +13:00

36 lines
835 B
C#
Executable file

using System;
using HISP.Game;
using HISP.Game.Items;
using HISP.Game.Horse;
using HISP.Game.SwfModules;
using HISP.Security;
using HISP.Server;
using HISP.Game.Services;
namespace HISP
{
public 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();
Treasure.Init();
DroppedItems.Init();
WildHorse.Init();
Brickpoet.LoadPoetryRooms();
Drawingroom.LoadAllDrawingRooms();
Item.DoSpecialCases();
GameServer.StartServer();
}
}
}