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
11class Damaging {
12public:
13 virtual ~Damaging() = default;
14 Damaging() = default;
15 virtual void getDamage(size_t entity, int damage) = 0;
16protected:
17 int _health;
18};
19
20#endif //R_TYPE_DAMAGING_HPP
Definition: Damaging.hpp:11