1
0
mirror of https://gitlab.com/Syroot/Worms.git synced 2025-07-23 05:31:33 +03:00

19 lines
453 B
C#

using System.Net;
namespace Syroot.Worms.Worms2.GameServer
{
internal class Program
{
// ---- METHODS (PRIVATE) --------------------------------------------------------------------------------------
private static void Main()
{
Proxy.Start();
return;
Server server = new Server(new IPEndPoint(IPAddress.Any, 17000));
server.Run();
}
}
}