/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PlasmaRifle.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 12:15:47 by charles #+# #+# */ /* Updated: 2020/04/14 14:04:39 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PLASMARIFLE_HPP # define PLASMARIFLE_HPP # include # include "AWeapon.hpp" class PlasmaRifle : public AWeapon { public: PlasmaRifle(); PlasmaRifle(PlasmaRifle const& other); void operator=(PlasmaRifle const& other); ~PlasmaRifle(); virtual void attack() const; private: }; #endif