From 04f192b62a5b7187e9e46beb1618fa7c7979b3f6 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Tue, 29 Jul 2025 13:17:01 -0500 Subject: [PATCH] Drop never-used import Thanks, VSCode. I really like when you import things I'm not actually trying to use. SMH my head. --- src/asteroids.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asteroids.rs b/src/asteroids.rs index 9c7c30e..da3b1a3 100644 --- a/src/asteroids.rs +++ b/src/asteroids.rs @@ -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};