/* ************************************************************************** */ /* */ /* :::::::: */ /* Weapon.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/21 16:15:25 by whaffman #+# #+# */ /* Updated: 2025/03/21 16:28:51 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include class Weapon { public: Weapon(); Weapon(std::string p_type); ~Weapon(); const std::string &getType(); void setType(std::string p_type); private: std::string type; };