/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanA.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/05 13:34:19 by rparodi #+# #+# */ /* Updated: 2024/11/05 14:23:03 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANA_HPP #define HUMANA_HPP #include "Weapon.hpp" #include #include class HumanA { public: HumanA(std::string name, Weapon &toGive); ~HumanA(); void attack(); private: std::string _name; Weapon *_weapon; }; #endif