/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.class.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/07/15 15:34:27 by bchanot #+# #+# */ /* Updated: 2025/07/15 17:10:48 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WEAPON_CLASS_H #define WEAPON_CLASS_H #include class Weapon { public: Weapon(std::string type); ~Weapon(void); std::string getType(void) const; void setType(std::string type); private: std::string _type; }; #endif