Files
2026-09-06 18:54:24 +02:00

25 lines
426 B
C++

#ifndef SCAVTRAP_HPP
# define SCAVTRAP_HPP
#include <string>
#include <iostream>
#include "ClapTrap.hpp"
class ScavTrap: public ClapTrap {
private:
bool _guarding_gate;
public:
ScavTrap();
ScavTrap(const ScavTrap &copy);
ScavTrap(std::string name);
virtual ~ScavTrap();
ScavTrap &operator=(const ScavTrap &src);
void attack(const std::string &target);
void guardGate(void);
};
#endif