cpp01/ex03/Weapon.hpp

19 lines
265 B
C++

#ifndef WEAPON_HPP
# define WEAPON_HPP
# include <iostream>
class Weapon
{
private:
std::string _type;
public:
Weapon();
Weapon(std::string type);
~Weapon();
void setType(std::string type);
const std::string &getType() const;
};
#endif