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 @@
//! Custom physics items
//! TODO: Refactor in terms of Rapier2D, *or* implement colliders and remove it.
use bevy::prelude::*;
use crate::WorldSize;
use bevy::prelude::*;
#[derive(Component)]
pub(crate) struct Position(pub(crate) bevy::math::Vec2);