cpp03/ex01/ScavTrap.hpp

17 lines
248 B
C++
Raw Normal View History

2025-05-19 14:13:59 +02:00
#ifndef SCAVTRAP_HPP
#define SCAVTRAP_HPP
#include "ClapTrap.hpp"
class ScavTrap : public ClapTrap {
public:
ScavTrap();
ScavTrap(std::string name);
~ScavTrap();
ScavTrap &operator=(const ScavTrap &other);
void guardGate();
};
#endif