2023-10-08 14:12:01 +00:00
|
|
|
|
using AscNet.Common.Util;
|
|
|
|
|
using AscNet.GameServer;
|
2023-10-06 13:29:27 +00:00
|
|
|
|
|
|
|
|
|
namespace AscNet
|
|
|
|
|
{
|
|
|
|
|
internal class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Logger.c.Log("Starting...");
|
2023-10-14 15:01:49 +00:00
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
if (Common.Common.config.VerboseLevel < Common.VerboseLevel.Debug)
|
|
|
|
|
Common.Common.config.VerboseLevel = Common.VerboseLevel.Debug;
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-10-10 09:56:08 +00:00
|
|
|
|
PacketFactory.LoadPacketHandlers();
|
2023-10-08 14:12:01 +00:00
|
|
|
|
Task.Run(GameServer.Server.Instance.Start);
|
2023-10-06 13:29:27 +00:00
|
|
|
|
SDKServer.SDKServer.Main(args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|