blob: 86aa4f35535f0c9b98aeab181545c085a00b4d8c (
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
35
36
37
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* NinjaTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 17:31:24 by charles #+# #+# */
/* Updated: 2020/11/12 08:54:34 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef NINJATRAP_HPP
# define NINJATRAP_HPP
# include "ClapTrap.hpp"
# include "FragTrap.hpp"
# include "ScavTrap.hpp"
class NinjaTrap : virtual public ClapTrap
{
public:
NinjaTrap(std::string const& name);
NinjaTrap(NinjaTrap const& other);
NinjaTrap& operator=(NinjaTrap const& other);
~NinjaTrap();
void ninjaShoebox(NinjaTrap const& target);
void ninjaShoebox(FragTrap const& target);
void ninjaShoebox(ScavTrap const& target);
void ninjaShoebox(ClapTrap const& target);
protected:
NinjaTrap();
};
#endif
|