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