Guest User

Untitled

a guest
Nov 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #ifndef Character_H
  2. #define Character_H
  3. #include "Attributes.h"
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. class Character {
  9. private:
  10. static Character* uniqueInstance;
  11. Attributes* stats;
  12. Character();
  13. public:
  14. static Character* Instance();
  15. ~Character();
  16. void showAttributes();
  17. void rename(string name);
  18. };
  19.  
  20. #endif // Character_H
Add Comment
Please, Sign In to add comment