/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ScavTrap.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 14:11:51 by charles #+# #+# */ /* Updated: 2020/04/13 18:41:33 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef SCAVTRAP_HPP # define SCAVTRAP_HPP # include # include "ClapTrap.hpp" class ScavTrap : public ClapTrap { public: ScavTrap(); ScavTrap(std::string name); ScavTrap(ScavTrap const& other); void operator=(ScavTrap const& other); ~ScavTrap(); void challengeNewcomer(std::string const& target); }; #endif