summaryrefslogtreecommitdiffstats
path: root/World.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'World.hpp')
-rw-r--r--World.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/World.hpp b/World.hpp
index ac3433b..89873b6 100644
--- a/World.hpp
+++ b/World.hpp
@@ -19,15 +19,15 @@ private:
//utility vars
World(const World& other);
World&operator=(const World &other);
- //utility methods
+ bool isContinue=true;
+ std::mutex m_parseSectionMutex;
+ std::condition_variable m_parseSectionWaiter;
std::thread m_sectionParseThread;
std::queue<std::map<PositionI,Section>::iterator> m_sectionToParse;
+ //utility methods
+ void SectionParsingThread();
//game vars
int m_dimension = 0;
//game methods
- std::mutex m_parseSectionMutex;
- std::condition_variable m_parseSectionWaiter;
Section ParseSection(byte *data, size_t &dataLen);
- void SectionParsingThread();
- bool isContinue=true;
}; \ No newline at end of file