Created
September 3, 2012 22:19
-
-
Save abrongersma/3614116 to your computer and use it in GitHub Desktop.
Jeremy
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 Die | |
attr_accessor :faces | |
def initialize(faces) | |
@faces = faces | |
end | |
def sides | |
@faces | |
end | |
def roll | |
self.rand(1..6) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment