Weapon.class.hpp 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* Weapon.class.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@gmail.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/07/15 15:34:27 by bchanot #+# #+# */
  9. /* Updated: 2025/07/15 17:10:48 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef WEAPON_CLASS_H
  13. #define WEAPON_CLASS_H
  14. #include <iostream>
  15. class Weapon {
  16. public:
  17. Weapon(std::string type);
  18. ~Weapon(void);
  19. std::string getType(void) const;
  20. void setType(std::string type);
  21. private:
  22. std::string _type;
  23. };
  24. #endif