示例#1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         Debug.WriteLine("args: {0}", args.Length);
         if (args.Length == 1)
         {
             game.IsClient(true);
         }
         else
         {
             game.IsClient(false);
         }
         game.Run();
     }
 }