From 9370462fe10011f27769e5e86a5a2629d6c6f96f Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 6 Oct 2024 00:26:35 +0200 Subject: [PATCH] Remove unused import --- src/systems/random_walk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systems/random_walk.rs b/src/systems/random_walk.rs index 89719a3..c38fa78 100644 --- a/src/systems/random_walk.rs +++ b/src/systems/random_walk.rs @@ -2,7 +2,7 @@ use crate::{ components::common::{Position, RandomizedVelocity}, ANT_SPEED, MAX_POSITION, MIN_POSITION, RANDOM_WALK_CONE, }; -use bevy::{math::VectorSpace, prelude::*}; +use bevy::prelude::*; /// Randomizes the ``RandomizedVelocity`` components of entities that have them. #[allow(clippy::needless_pass_by_value)] // I can't specify &Res