Advertisement
ssnr

Untitled

Oct 11th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. #ifndef HUMAN_H
  3. #define HUMAN_H
  4.  
  5. #include <string>
  6. #include "creature.h"
  7.  
  8. using namespace std;
  9.  
  10.  
  11. class human : public creature
  12. {
  13. public:
  14. human();
  15. human(int inStrength, int inHitpoints);
  16. int getDamage()const;
  17. string getSpecies()const;
  18.  
  19. };
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement