usebevy::prelude::*;// Tag component used to tag entities added on the splash screen
#[derive(Component)]pubstructSplashScreen;// Newtype to use a `Timer` for this screen as a resource
#[derive(Resource, Deref, DerefMut)]pubstructSplashTimer(pub Timer);