From 5dfe11d31f5d4dc1295a8254effec2911a0ff389 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Tue, 29 Jul 2025 11:59:36 -0500 Subject: [PATCH] Remove unused color import --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e3a51fb..20137e6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ use std::time::Duration; use crate::config::{BACKGROUND_COLOR, PLAYER_SHIP_COLOR, SHIP_ROTATION, SHIP_THRUST, WINDOW_SIZE}; -use bevy::{color::palettes::css::GRAY, prelude::*}; +use bevy::prelude::*; use bevy_inspector_egui::prelude::ReflectInspectorOptions; use bevy_inspector_egui::InspectorOptions;