/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* TacticalMarine.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 15:30:48 by charles #+# #+# */ /* Updated: 2020/04/14 15:34:12 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef TACTICALMARINE_HPP # define TACTICALMARINE_HPP # include # include "ISpaceMarine.hpp" class TacticalMarine : public ISpaceMarine { public: TacticalMarine(); TacticalMarine(TacticalMarine const& other); void operator=(TacticalMarine const& other); virtual ~TacticalMarine(); virtual ISpaceMarine* clone() const; virtual void battleCry() const; virtual void rangedAttack() const; virtual void meleeAttack() const; private: }; #endif