My Project
CRefId.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CRefId
6 */
7 
8 #ifndef CREFID_HPP_
9  #define CREFID_HPP_
10 
11  #include <string>
12  #include <map>
13  #include <vector>
14 
18 namespace component {
22  struct crefid_t {
23  std::string refId;
24  };
25 }
26 
27 #endif /* !CREFID_HPP_ */
component::crefid_t
A structure representing the ref component that holds the ref of an entity text or button.
Definition: CRefId.hpp:22
component
Namespace for all components.
Definition: CDamage.hpp:14
component::crefid_t::refId
std::string refId
ref of the entity
Definition: CRefId.hpp:23