summaryrefslogtreecommitdiffstats
path: root/src/ThreadGame.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2017-08-19 17:20:51 +0200
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2017-08-19 17:20:51 +0200
commitf24107368fa47f911f4491f644ff3755525c91e1 (patch)
tree02dc3583ed82d81139b17191af9a9bfae40c45a9 /src/ThreadGame.hpp
parent2017-08-18 (diff)
downloadAltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar.gz
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar.bz2
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar.lz
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar.xz
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.tar.zst
AltCraft-f24107368fa47f911f4491f644ff3755525c91e1.zip
Diffstat (limited to 'src/ThreadGame.hpp')
-rw-r--r--src/ThreadGame.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ThreadGame.hpp b/src/ThreadGame.hpp
index 9894235..41676d6 100644
--- a/src/ThreadGame.hpp
+++ b/src/ThreadGame.hpp
@@ -5,7 +5,7 @@
#include "Event.hpp"
class ThreadGame: Thread {
- GameState *gs = nullptr;
+ std::shared_ptr<GameState> gs;
bool isRunning = true;
bool isMoving[5] = { 0,0,0,0,0 };
public: