Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class Player
  2. {
  3. private int life;
  4. private int endurance;
  5. private int life_total()
  6. {
  7. return life + endurance;
  8. }
  9.  
  10. public Player()
  11. {
  12. life = 10;
  13. endurance = 2;
  14. }
  15.  
  16. public int get_life_total()
  17. {
  18. return life_total()
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement