aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/engine.hpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/include/engine.hpp b/include/engine.hpp
index d4b1e34..c842b59 100644
--- a/include/engine.hpp
+++ b/include/engine.hpp
@@ -11,10 +11,9 @@
//game::engine::Systems->add<entityx::deps::Dependency<Visible, Sprite>>();
class Engine : public entityx::Receiver<Engine> {
-private:
- bool gameRunning;
-
public:
+ bool shouldRun;
+
entityx::SystemManager systems;
explicit Engine(void);
@@ -33,11 +32,7 @@ public:
}*/
inline void receive(const GameEndEvent &gee) {
- gameRunning = !(gee.really);
- }
-
- inline bool shouldRun(void) const {
- return gameRunning;
+ shouldRun = !(gee.really);
}
};