Created
August 20, 2012 18:20
-
-
Save codeschool-courses/3406403 to your computer and use it in GitHub Desktop.
RubyBits 6-6 - emulator.rb
This file contains 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 Emulator | |
def initialize(system) | |
# Creates an emulator for the given system | |
end | |
def play(game) | |
# Runs the given game in the emulator | |
end | |
def start(game) | |
# Loads the given game but doesn't run it | |
end | |
def screenshot | |
# Returns a screenshot of the currently loaded game | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment