]> git.localhorst.tv Git - blobs.git/blob - src/world/Resource.hpp
fun with resources
[blobs.git] / src / world / Resource.hpp
1 #ifndef BLOBS_WORLD_RESOURCE_HPP_
2 #define BLOBS_WORLD_RESOURCE_HPP_
3
4 #include <string>
5
6
7 namespace blobs {
8 namespace world {
9
10 struct Resource {
11
12         std::string name;
13         std::string label;
14
15         int id;
16
17 };
18
19 }
20 }
21
22 #endif