Advertisement
Guest User

Untitled

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