summary refs log tree commit diff stats
path: root/firmware/include/game/blocks.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/game/blocks.h')
-rw-r--r--firmware/include/game/blocks.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/firmware/include/game/blocks.h b/firmware/include/game/blocks.h
new file mode 100644
index 0000000..7e9b75f
--- /dev/null
+++ b/firmware/include/game/blocks.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <stdint.h>
+
+namespace game {
+
+enum class Block : uint8_t { T, L, J, O, I, Z, S, NONE };
+
+}