#ifndef THREAD_HPP_ #define THREAD_HPP_ #ifndef __WIN32__ #include #else #include #endif // __WIN32__ #include #include class GameThread : public entityx::Receiver { private: std::atomic_bool die; std::thread thread; public: GameThread(std::function func) { die.store(false); thread = std::thread([&](std::function f) { while (!die.load()) f(); }, func); } ~GameThread(void) { thread.join(); } inline void stop(void) { die.store(true); } }; #endif // THREAD_HPP_