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.
27 lines
1.1 KiB
27 lines
1.1 KiB
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* Weapon.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/14 12:51:23 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/06/16 10:08:02 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "Weapon.hpp"
|
||
|
|
||
|
Weapon::Weapon(string type):_type(type){}
|
||
|
|
||
|
const string &Weapon::getType(void) const
|
||
|
{
|
||
|
return (this->_type);
|
||
|
}
|
||
|
|
||
|
void Weapon::setType(string type)
|
||
|
{
|
||
|
this->_type = type;
|
||
|
}
|
||
|
|