Created
November 26, 2013 12:40
-
-
Save nixsticks/7657691 to your computer and use it in GitHub Desktop.
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 Cylon | |
def initialize(parts) | |
@CPU = parts[:cpu] | |
@mcp_chip = parts[:MCP] | |
@cool_new_centurion_part = parts[:cool_new_centurion_part] | |
end | |
def some_cylon_action | |
# I don't know, lifting trucks in the air or something. | |
end | |
def some_other_cylon_action | |
# Crushing the skulls of humans. | |
end | |
def fancy_new_cylon_action | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment