| 123456789101112131415161718192021222324252627282930 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Weapon.class.cpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/15 15:48:04 by bchanot #+# #+# */
- /* Updated: 2025/07/15 16:46:07 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "Weapon.class.hpp"
- Weapon::Weapon(std::string type) : _type(type) {
- return;
- }
- Weapon::~Weapon(void) {
- return ;
- }
- std::string Weapon::getType(void) const {
- return this->_type;
- }
- void Weapon::setType(std::string type) {
- this->_type = type;
- return ;
- }
|