/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/10 21:13:13 by apommier #+# #+# */ /* Updated: 2022/06/10 21:18:19 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #include "Weapon.hpp" Weapon::Weapon(std::string name): _type(name) { } Weapon::~Weapon() { } std::string const getType(void) { return (this->_type); } void setType(std::string type) { this->_type = type; }