cpp01/ex03/Weapon.hpp

18 lines
221 B
C++
Raw Normal View History

2025-05-12 14:00:11 +02:00
#ifndef WEAPON_HPP
#define WEAPON_HPP
#include <string>
class Weapon {
public:
Weapon(std::string type);
const std::string &getType(void);
void setType(std::string type);
private:
std::string type;
};
#endif