summary refs log tree commit diff stats
path: root/firmware/src/game/game_state.cpp
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-26 20:47:12 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-26 20:47:12 +0100
commit32a24182ad8cd2fc3a9125cb8f70de3b9c22f9a4 (patch)
treef2d3a9a1696d50ae28e88e9ba94684bf5ffee5d3 /firmware/src/game/game_state.cpp
parent6b3fb653f8b342d8ecfc093a000e9f6fa479c644 (diff)
downloadtetris-console-32a24182ad8cd2fc3a9125cb8f70de3b9c22f9a4.tar.gz
tetris-console-32a24182ad8cd2fc3a9125cb8f70de3b9c22f9a4.zip
add preliminary public apis
Diffstat (limited to 'firmware/src/game/game_state.cpp')
-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) {}
+
+}