| 123456789101112131415161718192021222324252627282930 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Weapon.class.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/07/15 15:34:27 by bchanot #+# #+# */
- /* Updated: 2025/07/15 17:10:48 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef WEAPON_CLASS_H
- #define WEAPON_CLASS_H
- #include <iostream>
- class Weapon {
- public:
- Weapon(std::string type);
- ~Weapon(void);
- std::string getType(void) const;
- void setType(std::string type);
-
- private:
- std::string _type;
- };
- #endif
|