Guest User

Untitled

a guest
Apr 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class PC < Character
  2. def initialize(hp = 10)
  3. @hp = hp
  4. end
  5.  
  6. def hp
  7. @hp
  8. end
  9.  
  10. def hp=(hp)
  11. @hp = hp
  12. end
  13. end
Add Comment
Please, Sign In to add comment