summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h index 46f1ab2..bb99543 100644 --- a/src/game.h +++ b/src/game.h
@@ -4,6 +4,13 @@
4#include <vector> 4#include <vector>
5#include "sprite.h" 5#include "sprite.h"
6 6
7struct Input {
8 bool left = false;
9 bool right = false;
10 bool up = false;
11 bool down = false;
12};
13
7class Game { 14class Game {
8public: 15public:
9 16