/* ************************************************************************** */ /* */ /* :::::::: */ /* HumanA.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/21 16:28:57 by whaffman #+# #+# */ /* Updated: 2025/04/02 10:56:49 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #include #include "Weapon.hpp" class HumanA { private: std::string name; Weapon &weapon; HumanA(); public: HumanA(std::string p_name, Weapon &p_weapon); void attack(); };