using System; namespace WorldManagerServer { internal class Program { private static void Main(string[] args) { // Attempt to size window for best log view try { Console.SetWindowSize(140, 40); } catch { } if (args.Length == 1 && byte.TryParse(args[0], out var worldId)) { WorldManagerServer.Run(worldId); } else { WorldManagerServer.Run(); } } } }