diff options
Diffstat (limited to 'src/ThreadGame.hpp')
-rw-r--r-- | src/ThreadGame.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ThreadGame.hpp b/src/ThreadGame.hpp index 81d135f..1254183 100644 --- a/src/ThreadGame.hpp +++ b/src/ThreadGame.hpp @@ -6,7 +6,8 @@ class ThreadGame: Thread { GameState *gs = nullptr; - GlobalState state = GlobalState::InitialLoading; + bool isRunning = true; + bool isMoving[4] = { 0,0,0,0 }; public: ThreadGame(); ~ThreadGame(); |