My Project
CServerId.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CId
6 */
7 
8 #ifndef CSERVERID_HPP_
9  #define CSERVERID_HPP_
10 
11  #include <cstdint>
12 
16 namespace component {
20  struct cserverid_t {
21  uint16_t id;
22  };
23 }
24 
25 #endif /* !CSERVERID_HPP_ */
component
Namespace for all components.
Definition: CDamage.hpp:14
component::cserverid_t::id
uint16_t id
Id of the entity in server.
Definition: CServerId.hpp:21
component::cserverid_t
Structure representing the server id component in charge of entity identification.
Definition: CServerId.hpp:20