/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos class Weapon { private: std::string type; public: Weapon(const std::string &type); const std::string& getType() const; void setType(const std::string &str); }; #endif