about summary refs log tree commit diff
path: root/src/block/mod.rs
blob: 38b10ead088a481d6236d7f8b2e283eaf0620254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod colortable;
pub mod extension;
mod indexedimage;
mod imagedescriptor;
mod screendescriptor;
mod version;

pub use colortable::ColorTable;
pub use indexedimage::IndexedImage;
pub use imagedescriptor::ImageDescriptor;
pub use screendescriptor::ScreenDescriptor;
pub use version::Version;

pub enum Block {
	IndexedImage(IndexedImage),
	Extension(extension::Extension)
}