/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/10 19:43:13 by apommier #+# #+# */ /* Updated: 2022/07/23 12:36:35 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WEAPON_HPP # define WEAPON_HPP #include #include class Weapon { public: Weapon(); Weapon(std::string type); ~Weapon(); const std::string& getType( void ) const; void setType(std::string newType); private: std::string _type; }; #endif