Advertisement
Guest User

Untitled

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