class HumanPlayer

require 'player'

Public Instance Methods

perform_move(game_state, move) click to toggle source
# File lib/human_player.rb, line 4
  def perform_move(game_state, move)
#    location = Game.ask_move(board, @token)
#    board.add_piece(@token, location)
    game_state.update(move)
  end