sb3_decoder/decoder/mod.rs
1//! The decoder for decoding Scratch 3.0 project files (.sb3).
2//!
3//! This module provides functionality to decode .sb3 files into Rust structs.
4//! It includes the [`Decoder`] struct and related methods for handling the decoding process.
5
6pub mod decoder;
7pub mod decoder_builder;
8pub mod raw_structs;
9
10pub use decoder::*;
11pub use decoder_builder::*;
12pub use raw_structs::*;