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
16
//! Contains all the raw structs.
//!
//! These are not meant to be used directly, but are used to deserialize
//! the JSON data from the .json file inside the .sb3 file.

pub mod raw_block;
pub mod raw_costume;
pub mod raw_project;
pub mod raw_sound;
pub mod raw_target;

pub use raw_block::*;
pub use raw_costume::*;
pub use raw_project::*;
pub use raw_sound::*;
pub use raw_target::*;