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,8 +1,11 @@
use crate::{
GameAssets, Rotation,
physics::{Position, Velocity, Wrapping},
};
use bevy::prelude::*;
use bevy_rapier2d::prelude::*;
use crate::{GameAssets, Rotation, physics::Position, physics::Velocity, physics::Wrapping};
#[derive(Component)]
pub struct Ship;