// A resource containing data about the simulation, for ease of access during initialization.
usebevy::prelude::Resource;#[derive(Resource)]pubstructSimulationDescriptor{pubtitle: String,
pubwidth:f32,
pubheight:f32,
pubcenter_x:f32,
pubcenter_y:f32,
pubpaused:bool,
pubui_width:f32,
}