/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanA.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 12:52:11 by narnaud #+# #+# */ /* Updated: 2022/06/16 10:33:40 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANA_HPP # define HUMANA_HPP # include "Weapon.hpp" class HumanA { public: HumanA(string name, Weapon &weap); void attack(void) const; private: string _name; Weapon &_weapon; }; #endif