sb3-decoder 0.1.0

A Rust library for decoding Scratch 3.0 project files (.sb3)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A prelude module to re-export commonly used items from the crate.

pub use crate::decoder::{Decoder, DecoderBuilder};
pub use crate::error::*;
pub use crate::structs::*;

#[cfg(feature = "costume_png")]
pub use image;

#[cfg(feature = "costume_svg")]
pub use usvg;