aboutsummaryrefslogtreecommitdiffstats
path: root/src/player.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.hpp')
-rw-r--r--src/player.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player.hpp b/src/player.hpp
index b1821c5..d9a9237 100644
--- a/src/player.hpp
+++ b/src/player.hpp
@@ -40,9 +40,13 @@ private:
*/
constexpr static double GROUND_VELOCITY = 100;
+ entityx::EntityManager& entities;
entityx::Entity player;
public:
+ PlayerSystem(entityx::EntityManager& _entities) :
+ entities(_entities) {}
+
/**
* Prepares the system for running.
*/