Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Last active January 1, 2016 18:19
Show Gist options
  • Save tarynsauer/8183089 to your computer and use it in GitHub Desktop.
Save tarynsauer/8183089 to your computer and use it in GitHub Desktop.
module TictactoeConstants
MARKER_X = 'X'
MARKER_O = 'O'
COMPUTER_PLAYER = 'computer'
HUMAN_PLAYER = 'human'
AI_PLAYER = 'hard computer'
HARD_LEVEL = 'hard'
EASY_LEVEL = 'easy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment