about summary refs log tree commit diff
path: root/src/block/block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/block.rs')
-rw-r--r--src/block/block.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/block/block.rs b/src/block/block.rs
new file mode 100644
index 0000000..95ff12e
--- /dev/null
+++ b/src/block/block.rs
@@ -0,0 +1,9 @@
+use crate::block::Version;
+
+use super::ScreenDescriptor;
+
+
+pub enum Block {
+	Version(Version),
+	LogicalScreenDescriptor(ScreenDescriptor)
+}
\ No newline at end of file