/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.class.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/07/15 15:48:04 by bchanot #+# #+# */ /* Updated: 2025/07/15 16:46:07 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "Weapon.class.hpp" Weapon::Weapon(std::string type) : _type(type) { return; } Weapon::~Weapon(void) { return ; } std::string Weapon::getType(void) const { return this->_type; } void Weapon::setType(std::string type) { this->_type = type; return ; }