/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ScavTrap.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/30 15:34:27 by fgras-ca #+# #+# */ /* Updated: 2023/12/30 22:24:07 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef SCAVTRAP_HPP #define SCAVTRAP_HPP #include "ClapTrap.hpp" class ScavTrap : public ClapTrap { public: ScavTrap(); ScavTrap(std::string name); ScavTrap(const ScavTrap ©); ScavTrap & operator = (const ScavTrap &operator_aff); ~ScavTrap(); void attack(const std::string& target); void guardGate(); }; #endif