Exemple #1
0
 public void flyCow(IBoard board, int from, int to)
 {
     if ((CowsInBox == 0) && (board.PlayerCowCount(this.playerColour) == 3))
     {
         board.AdjustBoard_Fly(from, to, this.playerColour);
         Console.WriteLine("Player's Cow Flown");
     }
 }