My Project
CAssetId.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CAssetId
6 */
7 
8 #ifndef CASSETID_HPP_
9  #define CASSETID_HPP_
10 
11  #include <string>
12 
16 namespace component {
20  struct cassetid_t {
21  std::string assets;
22  };
23 }
24 
25 #endif /* !CASSETID_HPP_ */
component::cassetid_t::assets
std::string assets
asset string to find in asset list
Definition: CAssetId.hpp:21
component
Namespace for all components.
Definition: CDamage.hpp:14
component::cassetid_t
A structure representing asset id from asset manager.
Definition: CAssetId.hpp:20