old code remove

This commit is contained in:
nquidox 2026-04-11 18:09:50 +03:00
parent 4da000f1c8
commit 562b340469

View file

@ -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;