/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 16:36:23 by cacharle #+# #+# */ /* Updated: 2020/11/09 11:08:23 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "Weapon.hpp" Weapon::Weapon(std::string t) : type(t) {} std::string const& Weapon::getType() const { return type; } void Weapon::setType(std::string const& t) { type = t; }