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