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
//! The raw_sound module contains the [`RawSound`] struct.

/// The [`RawSound`] struct represents a sound in its raw form in a
/// Scratch 3.0 project.
#[derive(serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RawSound {
    /// The name of the sound.
    pub name: String,

    /// The MD5 hash with file extension of the sound.
    pub md5ext: String,
}