about summary refs log tree commit diff
path: root/src/block/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/mod.rs')
-rw-r--r--src/block/mod.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/block/mod.rs b/src/block/mod.rs
index a0c2454..38b10ea 100644
--- a/src/block/mod.rs
+++ b/src/block/mod.rs
@@ -1,13 +1,17 @@
-mod block;
 mod colortable;
+pub mod extension;
 mod indexedimage;
 mod imagedescriptor;
 mod screendescriptor;
 mod version;
 
-pub use block::Block;
 pub use colortable::ColorTable;
 pub use indexedimage::IndexedImage;
 pub use imagedescriptor::ImageDescriptor;
 pub use screendescriptor::ScreenDescriptor;
-pub use version::Version;
\ No newline at end of file
+pub use version::Version;
+
+pub enum Block {
+	IndexedImage(IndexedImage),
+	Extension(extension::Extension)
+}
\ No newline at end of file