Re-order use statements, prefer crate mods first

This commit is contained in:
2025-08-09 14:49:10 -05:00
parent 61c57783f1
commit 73b97ad15c
4 changed files with 16 additions and 12 deletions

View File

@@ -1,10 +1,10 @@
use crate::GameState;
use bevy::{
color::palettes::css::{BLACK, GREEN, LIGHT_BLUE, RED},
prelude::*,
};
use crate::GameState;
pub fn preparation_widget_plugin(app: &mut App) {
app.add_systems(OnEnter(GameState::GetReady), spawn_get_ready)
.add_systems(OnExit(GameState::GetReady), despawn_get_ready)