Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 řádky
445 B

  1. #ifndef HACKTHEGAME_MONSTER_HPP
  2. #define HACKTHEGAME_MONSTER_HPP
  3. #include "src/class/character.hpp"
  4. class Monster : public Character
  5. {
  6. protected:
  7. int bounty;
  8. public:
  9. Monster(std::string monsterName);
  10. Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef);
  11. Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef, int monsterBounty);
  12. int getBounty();
  13. };
  14. #endif