Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. #include <iostream>
  4. #include <time.h>
  5. #include <iomanip>
  6.  
  7. class Boov
  8. {
  9. public:
  10. Boov(std::string Name);
  11. std::string GetName();
  12. int GetHealth();
  13. bool IsDefeated();
  14. void Print();
  15. void GetsAttacked();
  16. void SetHealth(int health);
  17.  
  18. private:
  19. std::string name;
  20. int health;
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement