diff options
Diffstat (limited to 'src/Section.hpp')
-rw-r--r-- | src/Section.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Section.hpp b/src/Section.hpp index 7a7a3d0..41bef7b 100644 --- a/src/Section.hpp +++ b/src/Section.hpp @@ -19,9 +19,11 @@ class Section { std::vector<unsigned short> palette; Vector worldPosition; - size_t hash; + mutable size_t hash; - void CalculateHash(); + void CalculateHash() const; + + std::map<Vector, BlockId> overrideList; public: Section(Vector pos, unsigned char bitsPerBlock, std::vector<unsigned short> palette, std::vector<long long> blockData, std::vector<unsigned char> lightData, std::vector<unsigned char> skyData); |