pmd_wan 6.0.0

A library that can read wan file, a sprite format used in pokemon mystery dungeon games
Documentation
/**
 * Structure specialised in Shiren’s variation of the Wan file format (the base one being for Explorers of Sky, or general enought for both)
 */
mod shiren_wan;
pub use shiren_wan::ShirenWan;

mod shiren_fragment_bytes_store;
pub use shiren_fragment_bytes_store::ShirenFragmentBytesStore;

mod shiren_fragment_bytes;
pub use shiren_fragment_bytes::ShirenFragmentBytes;

mod shiren_frame_store;
pub use shiren_frame_store::ShirenFrameStore;

mod shiren_fragment;
pub use shiren_fragment::ShirenFragment;

mod shiren_frame;
pub use shiren_frame::ShirenFrame;

mod shiren_palette;
pub use shiren_palette::ShirenPalette;

mod shiren_image;
pub use shiren_image::{shiren_export_fragment, shiren_export_frame};

mod shiren_animation_store;
pub use shiren_animation_store::ShirenAnimationStore;

mod shiren_animation;
pub use shiren_animation::ShirenAnimation;

mod shiren_animation_frame;
pub use shiren_animation_frame::ShirenAnimationFrame;