My Project
CDammage.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CDammage
6 */
7 
8 #ifndef CDAMMAGE_HPP_
9  #define CDAMMAGE_HPP_
10 
11  #include <cstddef>
12 
16 namespace component {
20  struct cdammage_t {
21  std::size_t dammage;
22  };
23 }
24 
25 #endif /* !CDAMMAGE_HPP_ */
component::cdammage_t::dammage
std::size_t dammage
dammage of the entity
Definition: CDammage.hpp:21
component
Namespace for all components.
Definition: CDamage.hpp:14
component::cdammage_t
A structure representing the dammage component that holds the dammage of an entity.
Definition: CDammage.hpp:20