summary refs log tree commit diff stats
path: root/src/systems/controlling.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-02-05 11:51:24 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-02-05 11:51:24 -0500
commitda3df061699203eccc9a0c98becaee3ce8050a4f (patch)
treee5082da630d73abc1ecc0b0367d420fbf245126c /src/systems/controlling.h
parenta855ce0262e17b85e8670c511acf179ebddd24fe (diff)
downloadtherapy-da3df061699203eccc9a0c98becaee3ce8050a4f.tar.gz
therapy-da3df061699203eccc9a0c98becaee3ce8050a4f.tar.bz2
therapy-da3df061699203eccc9a0c98becaee3ce8050a4f.zip
Whitespace changes
Diffstat (limited to 'src/systems/controlling.h')
-rw-r--r--src/systems/controlling.h6
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