Пример #1
0
 public void Play(Move move)
 {
     this[move.Row][move.Col] = move.Player;
     Moves.Add(move);
 }
Пример #2
0
 public void Play(int row, int col, int player)
 {
     this[row][col] = player;
     Moves.Add(new Move(row, col, player));
 }