コード例 #1
0
 public static void Main(string[] args)
 {
     using (var server = new BattleServer(args[0], int.Parse(args[1])))
     {
         server.Start();
     }
 }
コード例 #2
0
 public static void Main(string[] args)
 {
     using (var server = new BattleServer("127.0.0.1", 8888))
     {
         server.Start();
     }
 }