Created
September 24, 2014 15:05
-
-
Save pumpkincouture/f828d3561e9628dbd111 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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