sb3_decoder/decoder/raw_structs/
mod.rs

1//! Contains all the raw structs.
2//!
3//! These are not meant to be used directly, but are used to deserialize
4//! the JSON data from the .json file inside the .sb3 file.
5
6pub mod raw_block;
7pub mod raw_costume;
8pub mod raw_project;
9pub mod raw_sound;
10pub mod raw_target;
11
12pub use raw_block::*;
13pub use raw_costume::*;
14pub use raw_project::*;
15pub use raw_sound::*;
16pub use raw_target::*;