/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanB.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/04 19:39:47 by adjoly #+# #+# */ /* Updated: 2024/11/05 17:53:56 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "Weapon.hpp" #include class HumanB { private: std::string _name; Weapon *_weapon; public: void attack(void); void setWeapon(Weapon &newWeapon); HumanB(std::string name); };