コード例 #1
0
ファイル: Game1.cs プロジェクト: jeegnathebug/Tetris
 /// <summary>
 /// Restarts the game
 /// </summary> 
 public void RestartGame()
 {
     Exit();
     Game1 game = new Game1();
     game.Run();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: jeegnathebug/Tetris
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }