/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/04 19:21:24 by adjoly #+# #+# */ /* Updated: 2024/11/09 18:46:33 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include class Weapon { private: std::string _type; public: const std::string &getType(void); void setType(std::string newType); Weapon(std::string type); };