cpp03/ex02/FragTrap.hpp

18 lines
287 B
C++
Raw Normal View History

2025-05-19 15:44:16 +02:00
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include "ClapTrap.hpp"
class FragTrap : public ClapTrap {
public:
FragTrap();
2025-05-27 13:39:30 +02:00
FragTrap(const FragTrap &other);
2025-05-19 15:44:16 +02:00
FragTrap(std::string name);
~FragTrap();
FragTrap &operator=(const FragTrap &other);
void highFivesGuys();
};
#endif