/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* HumanB.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 16:42:54 by cacharle #+# #+# */ /* Updated: 2020/02/02 16:54:18 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef HUMANB_HPP # define HUMANB_HPP # include # include "Weapon.hpp" class HumanB { private: std::string name; Weapon weapon; public: HumanB(std::string name); void attack(); void setWeapon(Weapon weapon); }; #endif