コード例 #1
0
 public void playGame()
 {
     Console.WriteLine("Starting game loop on a thread " + currentGame.getGameType());
     currentGame.getLoop().gameLoop(currentGame);
 }
コード例 #2
0
 public GameThread(Game_Generic newGame)
 {
     Console.WriteLine("CurrentGame has been set to: " + newGame.getGameType());
     currentGame = newGame;
 }