Advertisement
Guest User

Untitled

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