選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

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