blob: 1a890cc05de353e7995e3e60494fd58a51aa2519 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* SuperMutant.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/14 13:29:53 by charles #+# #+# */
/* Updated: 2020/04/14 13:37:56 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SUPERMUTANT_HPP
# define SUPERMUTANT_HPP
# include <iostream>
# include "Enemy.hpp"
class SuperMutant : public Enemy
{
public:
SuperMutant();
SuperMutant(SuperMutant const& other);
void operator=(SuperMutant const& other);
~SuperMutant();
virtual void takeDamage(int amount);
private:
};
#endif
|