bevy_fighter/movement/command_movement/dashes/
stepdash.rs

1pub use crate::prelude::*;
2
3pub struct StepDash {
4    pub speed: f32,
5    pub recovery_frames: u8,
6  }
7  
8  impl StepDash {
9    pub fn new(speed: f32, recovery_frames: u8) -> Self {
10      StepDash {speed,recovery_frames}
11    }
12  }