From d46f3a7180afdb5213afc80c97ae5fc8db43248a Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sun, 23 Apr 2017 18:39:59 +0500 Subject: 2017-04-23 --- World.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'World.hpp') 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::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 -- cgit v1.2.3