gserver-remake/GServer.Server/Program.cs
Aaron Yarborough 6d80785dfd refactor
2024-09-11 21:38:32 +01:00

23 lines
No EOL
568 B
C#

using System.Net;
namespace GServer.Server;
// ReSharper disable once ClassNeverInstantiated.Global
internal sealed class Program
{
private const int ListenPort = 11000;
private static void Main(string[] args)
{
CancellationTokenSource cancellationTokenSource = new();
Thread serverWorker = new(delegate()
{
TcpGameServer server = new(new IPEndPoint(IPAddress.Any, ListenPort), new GameServerOptions());
server.Start();
});
serverWorker.Start();
}
}