Skip to content

Instantly share code, notes, and snippets.

@keikun17
Last active December 21, 2015 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keikun17/6228121 to your computer and use it in GitHub Desktop.
Save keikun17/6228121 to your computer and use it in GitHub Desktop.
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