Drop never-used import

Thanks, VSCode. I really like when you import things I'm not actually
trying to use. SMH my head.
This commit is contained in:
2025-07-29 13:17:01 -05:00
parent 2dd3b2ff61
commit 04f192b62a

View File

@@ -2,7 +2,7 @@ use std::time::Duration;
/// This is the module containing all the rock-related things
/// not... not the whole game.
use bevy::{math::VectorSpace, prelude::*};
use bevy::prelude::*;
use crate::{GameAssets, Position, Rotation, Velocity};