Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created September 24, 2014 15:05
Show Gist options
  • Save pumpkincouture/f828d3561e9628dbd111 to your computer and use it in GitHub Desktop.
Save pumpkincouture/f828d3561e9628dbd111 to your computer and use it in GitHub Desktop.
class SetUp
attr_reader :player, :human_player, :ui, :board
def create_instances
@human_player = HumanPlayer.new
@ui = UserInterface.new
@board = Board.new(@ui)
end
def choose_player
human_choice = @ui.choice
if human_choice == "E"
@player = ComputerPlayer.new
else
@player = IntelComputerPlayer.new
end
@player
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment