Module: RubyTictactoe::TictactoeConstants

Included in:
Board, Game, GameSetup, PlayerFactory
Defined in:
lib/tictactoe_constants.rb

Constant Summary collapse

MARKER_X =
'X'
MARKER_O =
'O'
COMPUTER_PLAYER =
'computer'
HUMAN_PLAYER =
'human'
AI_PLAYER =
'hard computer'
HARD_LEVEL =
'hard'
EASY_LEVEL =
'easy'