/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* SuperMutant.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 13:29:53 by charles #+# #+# */ /* Updated: 2020/11/13 11:42:08 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef SUPERMUTANT_HPP # define SUPERMUTANT_HPP # include # include "Enemy.hpp" class SuperMutant : public Enemy { public: SuperMutant(); SuperMutant(SuperMutant const& other); SuperMutant& operator=(SuperMutant const& other); virtual ~SuperMutant(); virtual void takeDamage(int amount); private: }; #endif