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.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/systems/controlling.h b/src/systems/controlling.h new file mode 100644 index 0000000..d6f0789 --- /dev/null +++ b/src/systems/controlling.h
@@ -0,0 +1,27 @@
1#ifndef CONTROLLING_H_80B1BB8D
2#define CONTROLLING_H_80B1BB8D
3
4#include "system.h"
5#include <queue>
6
7class ControllingSystem : public System {
8public:
9
10 ControllingSystem(Game& game) : System(game)
11 {
12 }
13
14 void tick(double dt);
15
16 void input(int key, int action);
17
18 void freeze(id_type entity);
19
20 void unfreeze(id_type entity);
21
22private:
23
24 std::queue<std::pair<int,int>> actions_;
25};
26
27#endif /* end of include guard: CONTROLLING_H_80B1BB8D */