aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex01/PlasmaRifle.hpp
blob: 53088a9f71410b5a4baf883eb0b61f952d7f442e (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
42
43
44
45
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   PlasmaRifle.hpp                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/14 12:15:47 by charles           #+#    #+#             */
/*   Updated: 2020/12/11 10:55:04 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef PLASMARIFLE_HPP
# define PLASMARIFLE_HPP

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

class PlasmaRifle : public AWeapon
{
public:
    PlasmaRifle();
    PlasmaRifle(PlasmaRifle const& other);
    PlasmaRifle& operator=(PlasmaRifle const& other);
    virtual ~PlasmaRifle();

    virtual void attack() const;

private:
};

class ThisIsNotAPlasmaRifle : public AWeapon
{
public:
    ThisIsNotAPlasmaRifle();
    ThisIsNotAPlasmaRifle(ThisIsNotAPlasmaRifle const& other);
    ThisIsNotAPlasmaRifle& operator=(ThisIsNotAPlasmaRifle const& other);
    virtual ~ThisIsNotAPlasmaRifle();

    virtual void attack() const;

private:
};

#endif