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