summaryrefslogtreecommitdiffstats
path: root/src/World/Level.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/World/Level.hpp')
-rw-r--r--src/World/Level.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/World/Level.hpp b/src/World/Level.hpp
index 6cdfc4e..6fd45a8 100644
--- a/src/World/Level.hpp
+++ b/src/World/Level.hpp
@@ -29,6 +29,7 @@
#include "../NBT/CompoundTag.hpp"
#include <cstdint>
+#include <vector>
namespace MinedMap {
@@ -36,6 +37,8 @@ namespace World {
class Level {
private:
+ std::vector<uint8_t> buffer;
+
std::shared_ptr<const NBT::CompoundTag> root;
std::shared_ptr<const NBT::CompoundTag> data;