]> git.localhorst.tv Git - blobs.git/blob - Tile.hpp
e8faf7d421ff43200d5c010408533773944f4f97
[blobs.git] / Tile.hpp
1 #ifndef BLOBS_WORLD_TILE_HPP_
2 #define BLOBS_WORLD_TILE_HPP_
3
4 #include <cstdint>
5
6
7 namespace blobs {
8 namespace world {
9
10 struct Tile {
11
12         std::uint16_t type;
13
14 };
15
16 }
17 }
18
19 #endif