コード例 #1
0
ファイル: Program.cs プロジェクト: gmurph52/RockPaperScissors
 /**
  * This is the main method wher the game is started from. The game is in an infinate loop
  * allowing the user to play as many rounds as he wants.
  */
 public static void Main()
 {
     RockPaperScissors game = new RockPaperScissors();
     while (true)
     {
         Console.WriteLine("Press enter to start a game... ");
         Console.ReadLine();
         game.playGame();
     }
 }