You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
546 B

using System;
using System.Threading;
using System.Threading.Tasks;
using GameServer.Arch;
using GameServer.Management;
namespace GameServer {
internal static class Program {
private static void Main() {
Console.Title = "Game Server";
Console.SetOut(new DatePrefix());
ThreadManager.IsRunning = true;
Server.Start(50, 26950);
var mainThread = new Thread(ThreadManager.MainThread);
mainThread.Start();
}
}
}