You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Weapon.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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;
|
|
}
|
|
|
|
|