rs-sb3 0.3.0

sb3 json serializer
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module to deal with Scratch broadcast

use crate::prelude::*;

/// Only contains in stage
#[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize)]
#[serde(transparent)]
pub struct Broadcast {
    /// Name of the broadcast
    pub name: Text,
}