blob: 965cb30cf943978d9848e9ce69f74a1050c55d2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* TacticalMarine.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/14 15:30:48 by charles #+# #+# */
/* Updated: 2020/11/13 12:16:07 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef TACTICALMARINE_HPP
# define TACTICALMARINE_HPP
# include <iostream>
# include "ISpaceMarine.hpp"
class TacticalMarine : public ISpaceMarine
{
public:
TacticalMarine();
TacticalMarine(TacticalMarine const& other);
TacticalMarine& operator=(TacticalMarine const& other);
virtual ~TacticalMarine();
virtual ISpaceMarine* clone() const;
virtual void battleCry() const;
virtual void rangedAttack() const;
virtual void meleeAttack() const;
private:
};
#endif
|