/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Weapon.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 12:51:23 by narnaud #+# #+# */ /* Updated: 2022/07/18 10:05:10 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "Weapon.hpp" Weapon::Weapon(string type):_type(type){} const string &Weapon::getType(void) const { return (_type); } void Weapon::setType(string type) { _type = type; }