summaryrefslogtreecommitdiffstats
path: root/Section.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2017-04-23 15:39:59 +0200
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2017-04-21 15:39:59 +0200
commitd46f3a7180afdb5213afc80c97ae5fc8db43248a (patch)
tree2e00ab460474084042176d71df3f6f2cee8d3d63 /Section.hpp
parent2017-04-21 (diff)
downloadAltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar.gz
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar.bz2
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar.lz
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar.xz
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.tar.zst
AltCraft-d46f3a7180afdb5213afc80c97ae5fc8db43248a.zip
Diffstat (limited to 'Section.hpp')
-rw-r--r--Section.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Section.hpp b/Section.hpp
index 14ea2f8..8e1a0d1 100644
--- a/Section.hpp
+++ b/Section.hpp
@@ -2,6 +2,7 @@
#include <vector>
#include <map>
+#include <condition_variable>
#include "Block.hpp"
#include "Field.hpp"
@@ -17,6 +18,7 @@ class Section {
byte *m_dataSkyLight = nullptr;
byte m_bitsPerBlock = 0;
std::vector<Block> m_blocks;
+ std::condition_variable parseWaiter;
public:
void Parse();