cpp03/ex03/FragTrap.hpp

17 lines
260 B
C++
Raw Normal View History

2025-05-20 11:24:16 +02:00
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include "ClapTrap.hpp"
class FragTrap : public virtual ClapTrap {
public:
FragTrap();
FragTrap(std::string name);
~FragTrap();
FragTrap &operator=(const FragTrap &other);
void highFivesGuys();
};
#endif