summaryrefslogtreecommitdiffhomepage
path: root/src/chunk.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r--src/chunk.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp
index 031ba88e..8453bf83 100644
--- a/src/chunk.hpp
+++ b/src/chunk.hpp
@@ -118,7 +118,7 @@ private:
std::array<std::shared_ptr<tile_atlas>, TILE_COUNT> _ground_atlases;
std::array<uint8_t, TILE_COUNT> ground_indexes = {};
std::array<variant_t, TILE_COUNT> _ground_variants = {};
- std::array<std::shared_ptr<tile_atlas>, TILE_COUNT*2> _wall_atlases;
+ std::array<std::shared_ptr<tile_atlas>, TILE_COUNT*2> _wall_atlases; // todo make into vector
std::array<uint16_t, TILE_COUNT*2> wall_indexes = {};
std::array<variant_t, TILE_COUNT*2> _wall_variants = {};
std::vector<std::shared_ptr<entity>> _entities;