class RubyTictactoe::ComputerPlayer

Public Instance Methods

make_move(board) click to toggle source
# File lib/computer_player.rb, line 5
def make_move(board)
  cell = board.random_cell
  add_marker(board, cell)
end