class Players::Human

Public Instance Methods

move(board) click to toggle source
# File lib/players/human.rb, line 4
def move(board)
  puts "\nPlayer #{self.token} - Please input a #1-9.".blue
  input = gets.strip
  input
end