sb3_decoder/structs/block/
mod.rs

1//! This module provides all the necessary components to decode and work with Scratch 3.0 blocks.
2//!
3//! The main struct in this module is [`Block`], which represents a Scratch block with its
4//! opcode, inputs, fields, and other properties.
5
6pub mod block;
7pub mod opcodes;
8pub mod input;
9
10pub use block::*;
11pub use opcodes::*;
12pub use input::*;