/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanA.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/10 21:20:32 by apommier #+# #+# */ /* Updated: 2022/06/16 23:39:42 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANA_HPP # define HUMANA_HPP #include "Weapon.hpp" class HumanA { public: HumanA(const std::string name, Weapon Weapon); ~HumanA(void); void attack(void); private: std::string _name; std::string *_Weapon; }; #endif