summaryrefslogtreecommitdiffstats
path: root/src/World/Region.hpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-07-20 23:33:11 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-07-20 23:49:51 +0200
commitc082c8800c42d6f9da98ed985babc8ad2c2265a7 (patch)
tree1afd73b8d96e67d6446a855eb5903c59ebb0d113 /src/World/Region.hpp
parent4b9bb2ab4894c52f60baba3273c27948ad022292 (diff)
downloadMinedMap-c082c8800c42d6f9da98ed985babc8ad2c2265a7.tar
MinedMap-c082c8800c42d6f9da98ed985babc8ad2c2265a7.zip
Separate splitting of regions into chunks and actual parsing of chunk structure
Diffstat (limited to 'src/World/Region.hpp')
-rw-r--r--src/World/Region.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World/Region.hpp b/src/World/Region.hpp
index 7a8088f..00bfd7b 100644
--- a/src/World/Region.hpp
+++ b/src/World/Region.hpp
@@ -42,7 +42,7 @@ class Region {
public:
static const size_t SIZE = 32;
- typedef std::function<void (size_t, size_t, const Chunk *)> ChunkVisitor;
+ typedef std::function<void (size_t, size_t, const ChunkData *)> ChunkVisitor;
Region() = delete;