25 lines
1.0 KiB
C++
25 lines
1.0 KiB
C++
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* Weapon.hpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2024/11/04 19:21:24 by adjoly #+# #+# */
|
||
|
/* Updated: 2024/11/04 19:23:25 by adjoly ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class Weapon {
|
||
|
private:
|
||
|
std::string type;
|
||
|
|
||
|
public:
|
||
|
std::string getType(void);
|
||
|
void setType(std::string newType);
|
||
|
};
|