Guest User

Untitled

a guest
Jun 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public static class HP;
  2.  
  3. public static class Player
  4. {
  5. public bool HasTarget = false;
  6. HP hpclass;
  7. };
  8.  
  9. public static class HP
  10. {
  11. public int Current = 50, Max = 100;
  12. };
  13.  
  14. Player.HasTarget = true;
  15. Player.HP.Current = 60;
Add Comment
Please, Sign In to add comment