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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systems/controlling.h b/src/systems/controlling.h index 01ed7a0..d6f0789 100644 --- a/src/systems/controlling.h +++ b/src/systems/controlling.h
@@ -12,8 +12,13 @@ public:
12 } 12 }
13 13
14 void tick(double dt); 14 void tick(double dt);
15
15 void input(int key, int action); 16 void input(int key, int action);
16 17
18 void freeze(id_type entity);
19
20 void unfreeze(id_type entity);
21
17private: 22private:
18 23
19 std::queue<std::pair<int,int>> actions_; 24 std::queue<std::pair<int,int>> actions_;