aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex01/PowerFist.hpp
blob: fa347c8ebd1ebab770bb48772b7bf1838999d56f (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   PowerFist.hpp                                      :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/14 13:14:42 by charles           #+#    #+#             */
/*   Updated: 2020/12/11 10:41:32 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef POWERFIST_HPP
# define POWERFIST_HPP

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

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

    virtual void attack() const;

private:
};

#endif