diff options
Diffstat (limited to 'include/player.hpp')
-rw-r--r-- | include/player.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/player.hpp b/include/player.hpp index e196fa4..187e77e 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -4,6 +4,7 @@ #include <entityx/entityx.h> #include <events.hpp> +#include <components.hpp> #include <common.hpp> constexpr const float PLAYER_SPEED_CONSTANT = 0.15f; @@ -31,6 +32,8 @@ public: void receive(const KeyDownEvent&); vec2 getPosition(void) const; + inline void setX(const float& x) + { player.component<Position>().get()->x = x; } }; #endif // PLAYER_HPP_ |