#include "HumanA.hpp"
HumanA::HumanA(std::string name, Weapon &weapon) : _name(name), _weapon(weapon)
{
return;
}
HumanA::~HumanA(void)
void HumanA::attack()
std::cout << _name << " attacks with their " << _weapon.getType() << std::endl;