16 lines
205 B
C++
16 lines
205 B
C++
|
|
#include <string>
|
|
#include "Weapon.hpp"
|
|
|
|
class HumanB
|
|
{
|
|
private:
|
|
std::string name;
|
|
Weapon *weapon;
|
|
HumanB();
|
|
|
|
public:
|
|
HumanB(std::string p_name);
|
|
void attack();
|
|
void setWeapon(Weapon &p_weapon);
|
|
}; |