/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ScavTrap.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include "../ClapTrap/ClapTrap.hpp" class ScavTrap : public ClapTrap { private: bool guarding_gate; public: ScavTrap(); ScavTrap(std::string name); ScavTrap(const ScavTrap &other); ScavTrap& operator=(const ScavTrap &other); ~ScavTrap(); void attack(const std::string &target); void guardGate(); }; #endif