bevy_basic_ui/loading/
components.rs

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