/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanB.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 12:54:11 by narnaud #+# #+# */ /* Updated: 2022/07/18 10:07:11 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "Weapon.hpp" class HumanB { public: HumanB(string name); HumanB(string name, Weapon &weap); void attack(void) const; void setWeapon(Weapon &weap); private: string _name; Weapon *_weapon; };