game module

This commit is contained in:
danijoo
2013-12-13 10:08:36 +01:00
parent c5ae552fe8
commit f4bea4fe9f
7 changed files with 137 additions and 21 deletions

7
lib/sightstone/stat.rb Normal file
View File

@@ -0,0 +1,7 @@
class Stat
def initialize(data)
@id = data['id']
@name = data['name']
@value = data['value']
end
end