You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
445 B

#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