sb3_decoder/decoder/raw_structs/
raw_costume.rs

1//! The raw_costume module contains the [`RawCostume`] struct.
2
3/// The [`RawCostume`] struct represents a costume / backdrop in its raw form
4/// in a Scratch 3.0 project.
5#[derive(serde::Deserialize)]
6#[serde(rename_all = "camelCase")]
7pub struct RawCostume {
8    /// The name of the costume / backdrop.
9    pub name: String,
10
11    /// The data format of the costume (e.g., "png", "svg").
12    pub data_format: String,
13
14    /// The MD5 hash with file extension of the costume / backdrop.
15    pub md5ext: String,
16}