Exemple #1
0
 public void placeCow(IBoard board, int to)
 {
     if (CowsInBox > 0)
     {
         board.AdjustBoard_Place(to, this.playerColour);
         Console.WriteLine("Player's Cow was placed");
         CowsInBox -= 1;
     }
 }