Advertisement
Guest User

Untitled

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