summary refs log tree commit diff stats
path: root/firmware/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/src/game')
-rw-r--r--firmware/src/game/game_state.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/firmware/src/game/game_state.cpp b/firmware/src/game/game_state.cpp
new file mode 100644
index 0000000..219c627
--- /dev/null
+++ b/firmware/src/game/game_state.cpp
@@ -0,0 +1,9 @@
+#include "game/game_state.h"
+
+namespace game {
+
+GameState::GameState() {}
+
+void GameState::update(const inputs::Input& input) {}
+
+}