Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

19 righe
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