1#![doc = include_str!("../README.MD")] 2 3/// Errors used in this crate 4pub mod error; 5 6/// Raw data types 7/// 8/// These are used to then construct the main [`Aseprite`] type. 9pub mod raw; 10 11mod computed; 12 13pub use computed::*;