//! The raw_project module contains the [`RawProject`] struct and related functionality.
usecrate::decoder::RawTarget;/// The [`RawProject`] struct represents a Scratch 3.0 project json file.
#[derive(serde::Deserialize)]pubstructRawProject{/// Contains all the targets (sprites and stage) in the project.
pubtargets:Vec<RawTarget>,
}