My Project
CType.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CType
6 */
7 
8 #ifndef CTYPE_HPP_
9  #define CTYPE_HPP_
10 
11  #include "Serialization.hpp"
12 
16 namespace component {
20  struct ctype_t {
21  ENTITY_TYPE type;
22  };
23 }
24 
25 #endif /* !CTYPE_HPP_ */
component::ctype_t::type
ENTITY_TYPE type
type of the entity
Definition: CType.hpp:21
component::ctype_t
A structure representing the type component of an entity.
Definition: CType.hpp:20
component
Namespace for all components.
Definition: CDamage.hpp:14