From 562b340469c31605d785cd66db3203ac98a853b4 Mon Sep 17 00:00:00 2001 From: nquidox Date: Sat, 11 Apr 2026 18:09:50 +0300 Subject: [PATCH] old code remove --- src/states/level/components_cannon.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/states/level/components_cannon.rs b/src/states/level/components_cannon.rs index fc40ee8..6113c20 100644 --- a/src/states/level/components_cannon.rs +++ b/src/states/level/components_cannon.rs @@ -27,12 +27,6 @@ impl CannonState { } pub fn cycle_next(&mut self) { - // self.next_type = match self.next_type { - // BallType::First => BallType::Second, - // BallType::Second => BallType::Third, - // BallType::Third => BallType::Forth, - // BallType::Forth => BallType::First, - // }; let cur = self.current_type; self.current_type = self.next_type; self.next_type = cur;