/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanA.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 16:37:23 by cacharle #+# #+# */ /* Updated: 2020/11/09 11:08:55 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANA_HPP # define HUMANA_HPP # include # include "Weapon.hpp" class HumanA { public: HumanA(std::string const& name, Weapon& weapon); void attack(); private: std::string m_name; Weapon& m_weapon; }; #endif