/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/24 16:02:52 by fgras-ca #+# #+# */ /* Updated: 2023/12/24 18:03:55 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WEAPON_HPP # define WEAPON_HPP #include #include class Weapon { public: Weapon(std::string type); ~Weapon(void); const std::string &getType(void); void setType(std::string type); private: std::string _type; }; #endif