aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex01/RadScorpion.hpp
blob: 252fcc06d97afc65a146aca6482b5f47728e50a9 (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
38
39
40
41
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   RadScorpion.hpp                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/14 13:35:04 by charles           #+#    #+#             */
/*   Updated: 2020/12/11 11:01:22 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef RADSCORPION_HPP
# define RADSCORPION_HPP

# include <iostream>
# include "Enemy.hpp"

class RadScorpion : public Enemy
{
public:
    RadScorpion();
    RadScorpion(RadScorpion const& other);
    RadScorpion& operator=(RadScorpion const& other);
    virtual ~RadScorpion();

private:
};

class NotSoRadScorpion : public Enemy
{
public:
    NotSoRadScorpion();
    NotSoRadScorpion(NotSoRadScorpion const& other);
    NotSoRadScorpion& operator=(NotSoRadScorpion const& other);
    virtual ~NotSoRadScorpion();

private:
};

#endif