summary refs log tree commit diff stats
path: root/src/systems/controlling.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/controlling.h')
-rw-r--r--src/systems/controlling.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/systems/controlling.h b/src/systems/controlling.h index 1f1e8a0..01ed7a0 100644 --- a/src/systems/controlling.h +++ b/src/systems/controlling.h
@@ -3,7 +3,6 @@
3 3
4#include "system.h" 4#include "system.h"
5#include <queue> 5#include <queue>
6#include "entity_manager.h"
7 6
8class ControllingSystem : public System { 7class ControllingSystem : public System {
9public: 8public:
@@ -17,13 +16,6 @@ public:
17 16
18private: 17private:
19 18
20 void walkLeft(id_type entity);
21 void walkRight(id_type entity);
22 void stopWalking(id_type entity);
23 void jump(id_type entity);
24 void stopJumping(id_type entity);
25 void drop(id_type entity, bool start);
26
27 std::queue<std::pair<int,int>> actions_; 19 std::queue<std::pair<int,int>> actions_;
28}; 20};
29 21