aboutsummaryrefslogtreecommitdiff
path: root/cpp03/ex03/NinjaTrap.hpp
blob: db73de2bc5cc41c56096e6b2a2ee21a23dc55bb5 (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:48:34 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef NINJATRAP_HPP
# define NINJATRAP_HPP

# include "ClapTrap.hpp"
# include "FragTrap.hpp"
# include "ScavTrap.hpp"

class NinjaTrap : 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);

private:
	NinjaTrap();
};

#endif