#ifndef SCAVTRAP_HPP # define SCAVTRAP_HPP #include "ClapTrap.hpp" #include class ScavTrap : public ClapTrap { public: ScavTrap(); ScavTrap(std::string name); ~ScavTrap(); ScavTrap(const ScavTrap &clap); ScavTrap& operator=(const ScavTrap &clap); void attack(const std::string& target); void guardGate(); }; #endif