/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 12:50:31 by narnaud #+# #+# */ /* Updated: 2022/07/18 10:07:39 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once # 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; };