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
12
13
14
15
//! The project and everything inside it, all rust-ified into structs.

pub mod costume;
pub mod project;
pub mod sound;
pub mod target;
pub mod variable;
pub mod block;

pub use costume::*;
pub use project::*;
pub use sound::*;
pub use target::*;
pub use variable::*;
pub use block::*;