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