R-Type
1.0.1.0
Rewrite of the R-Type game with networking ability
Loading...
Searching...
No Matches
Damaging.hpp
1
/*
2
** EPITECH PROJECT, 2023
3
** damaging.hpp
4
** File description:
5
** damaging.hpp
6
*/
7
8
#ifndef R_TYPE_DAMAGING_HPP
9
#define R_TYPE_DAMAGING_HPP
10
11
class
Damaging
{
12
public
:
13
virtual
~Damaging
() =
default
;
14
Damaging
() =
default
;
15
virtual
void
getDamage(
size_t
entity,
int
damage) = 0;
16
protected
:
17
int
_health;
18
};
19
20
#endif
//R_TYPE_DAMAGING_HPP
Damaging
Definition:
Damaging.hpp:11
client
include
Damaging.hpp
Generated by
1.9.5