aboutsummaryrefslogtreecommitdiffstats
path: root/include/player.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/player.hpp')
-rw-r--r--include/player.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/player.hpp b/include/player.hpp
index 6bad917..e196fa4 100644
--- a/include/player.hpp
+++ b/include/player.hpp
@@ -10,7 +10,7 @@ constexpr const float PLAYER_SPEED_CONSTANT = 0.15f;
class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> {
private:
- entityx::Entity::Id pid;
+ entityx::Entity player;
bool moveLeft;
bool moveRight;
@@ -21,6 +21,8 @@ public:
PlayerSystem(void)
: moveLeft(false), moveRight(false), speed(1.0f) {}
+ void create(void);
+
void configure(entityx::EventManager&);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
@@ -28,9 +30,6 @@ public:
void receive(const KeyUpEvent&);
void receive(const KeyDownEvent&);
- inline void setPlayer(const entityx::Entity& e)
- { pid = e.id(); }
-
vec2 getPosition(void) const;
};