/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/20 16:50:04 by erey-bet #+# #+# */ /* Updated: 2023/04/20 17:14:44 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WEAPON_HPP # define WEAPON_HPP # include # include class Weapon { public: Weapon(); Weapon(std::string type); const std::string &getType(void); void setType(std::string type); private: std::string type; }; #endif