Esempio n. 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (ExampleGame game = new ExampleGame())
     {
         game.Run();
     }
 }
Esempio n. 2
0
 static void Main(string[] args)
 {
     GameInstance = new ExampleGame("GameProperties.json");
     GameInstance.Run();
     while (GameInstance.isRunning)
     {
     }
     // Game has shutdown at this point
 }
Esempio n. 3
0
 static void Main()
 {
     using (var game = new ExampleGame())
         game.Run();
 }