Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created August 7, 2014 01:28
Show Gist options
  • Save pumpkincouture/c6b0e83f2ce33881c5bf to your computer and use it in GitHub Desktop.
Save pumpkincouture/c6b0e83f2ce33881c5bf to your computer and use it in GitHub Desktop.
computer_player = ComputerPlayer.new
human_player = HumanPlayer.new
ui = UserInterface.new
board = Board.new(ui)
new_example = Example.new
new_game = Game.new(computer_player, human_player, ui, board, new_example)
new_game.start
until new_game.game_over?
new_game.play_game
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment