#ifndef HACKTHEGAME_MONSTER_HPP #define HACKTHEGAME_MONSTER_HPP #include "src/class/character.hpp" class Monster : public Character { protected: int bounty; public: Monster(std::string monsterName); Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef); Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef, int monsterBounty); int getBounty(); }; #endif