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
//! The decoder for decoding Scratch 3.0 project files (.sb3).
//!
//! This module provides functionality to decode .sb3 files into Rust structs.
//! It includes the [`Decoder`] struct and related methods for handling the decoding process.

pub mod decoder;
pub mod decoder_builder;
pub mod raw_structs;

pub use decoder::*;
pub use decoder_builder::*;
pub use raw_structs::*;