Example #1
0
 public void StartMatch()
 {
     while (player1.wins < 2 && player2.wins < 2)
     {
         round++;
         Console.WriteLine("Round: " + round + "\n");
         firstPick  = player1.PlayerPick();
         secondPick = player2.PlayerPick();
         ComparePicks();
     }
     DecideWinner();
 }