Beispiel #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game game = new Game())
     {
         game.Run();
     }
 }
Beispiel #2
0
 public Player(int playerNumber, Game g, EventQueue eventQueue)
 {
     this.playerNumber = playerNumber;
     this.game = g;
     this.eventQueue = eventQueue;
     waitForKeyUp = false;
 }