/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 12:50:31 by narnaud #+# #+# */ /* Updated: 2022/06/16 10:04:50 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WEAPON_HPP # define WEAPON_HPP # include using std::string; using std::cout; using std::cin; using std::endl; class Weapon { public: Weapon(void); Weapon(string type); const string &getType(void) const; void setType(string type); private: string _type; }; #endif