R-Type
HealthComponent.hpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** HealthComponent.hpp
4 ** File description:
5 ** HealthComponent
6 */
7 
8 #ifndef HEALTHCOMPONENT_HPP_
9 #define HEALTHCOMPONENT_HPP_
10 
11 #include <cstdint>
12 
13 namespace GameEngine
14 {
16  {
17  int health;
18  };
19 } // namespace GameEngine
20 
21 #endif /* !HEALTHCOMPONENT_HPP_ */
Definition: AssetManager.hpp:15
Definition: HealthComponent.hpp:16
int health
Definition: HealthComponent.hpp:17