Last active
December 21, 2015 01:29
-
-
Save keikun17/6228121 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 Hero | |
attr_accessor :名, :職, :ファイル, :健康 | |
def initialize(名, 職, ファイル, 健康) | |
@名 = 名 | |
@職 = 職 | |
@ファイル = ファイル | |
@健康 = 健康 | |
end | |
def 攻撃(対象) | |
対象.傷 | |
end | |
def 傷 | |
@健康 = 健康-1 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment