/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PowerFist.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 13:14:42 by charles #+# #+# */ /* Updated: 2020/12/11 10:41:32 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef POWERFIST_HPP # define POWERFIST_HPP # include # include "AWeapon.hpp" class PowerFist : public AWeapon { public: PowerFist(); PowerFist(PowerFist const& other); PowerFist& operator=(PowerFist const& other); virtual ~PowerFist(); virtual void attack() const; private: }; #endif