blob: 08fef0c1dbacdbf7f3b1b9208f3ae747c5f77819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Weapon.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/02 16:34:31 by cacharle #+# #+# */
/* Updated: 2020/11/09 11:08:36 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef WEAPON_HPP
# define WEAPON_HPP
# include <string>
class Weapon
{
public:
Weapon(std::string t);
std::string const& getType() const;
void setType(std::string const& t);
private:
std::string type; // subject wants litteraly `type`
};
#endif
|