summaryrefslogtreecommitdiffstats
path: root/code/Block.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'code/Block.hpp')
-rw-r--r--code/Block.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/code/Block.hpp b/code/Block.hpp
new file mode 100644
index 0000000..7c780c1
--- /dev/null
+++ b/code/Block.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+struct Block {
+ Block(unsigned short idAndState, unsigned char light);
+
+ Block(unsigned short id, unsigned char state, unsigned char light);
+
+ Block();
+
+ ~Block();
+
+ unsigned short id:13;
+ unsigned char state:4;
+ unsigned char light:4;
+}; \ No newline at end of file