/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanA.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 16:56:55 by erey-bet #+# #+# */ /* Updated: 2023/04/20 17:19:21 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANA_HPP # define HUMANA_HPP # include "Weapon.hpp" # include class HumanA { public: HumanA(std::string name, Weapon &weapon); void attack(void); private: std::string name; Weapon &weapon; }; #endif