public void Play(Move move) { this[move.Row][move.Col] = move.Player; Moves.Add(move); }
public void Play(int row, int col, int player) { this[row][col] = player; Moves.Add(new Move(row, col, player)); }