diff options
Diffstat (limited to 'src/systems/controlling.h')
| -rw-r--r-- | src/systems/controlling.h | 6 |
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/systems/controlling.h b/src/systems/controlling.h index 61f86eb..30210b3 100644 --- a/src/systems/controlling.h +++ b/src/systems/controlling.h | |||
| @@ -8,10 +8,10 @@ class ControllingSystem : public System { | |||
| 8 | public: | 8 | public: |
| 9 | ControllingSystem(Game& game) | 9 | ControllingSystem(Game& game) |
| 10 | : System(game) {} | 10 | : System(game) {} |
| 11 | 11 | ||
| 12 | void tick(double dt); | 12 | void tick(double dt); |
| 13 | void input(int key, int action); | 13 | void input(int key, int action); |
| 14 | 14 | ||
| 15 | private: | 15 | private: |
| 16 | void walkLeft(int entity); | 16 | void walkLeft(int entity); |
| 17 | void walkRight(int entity); | 17 | void walkRight(int entity); |
| @@ -19,7 +19,7 @@ class ControllingSystem : public System { | |||
| 19 | void jump(int entity); | 19 | void jump(int entity); |
| 20 | void stopJumping(int entity); | 20 | void stopJumping(int entity); |
| 21 | void drop(int entity, bool start); | 21 | void drop(int entity, bool start); |
| 22 | 22 | ||
| 23 | std::queue<std::pair<int,int>> actions; | 23 | std::queue<std::pair<int,int>> actions; |
| 24 | }; | 24 | }; |
| 25 | 25 | ||
