1use bevy::prelude::*; 2 3#[derive(Component)] 4pub struct Loading(pub Option<String>); 5 6#[derive(Component, Clone)] 7pub struct LoadingUi;