reorder elements

This commit is contained in:
Quaternions 2023-09-08 11:38:34 -07:00
parent 230469496e
commit 5391b635fb

View File

@ -10,11 +10,11 @@ pub struct PhysicsState {
pub time: TIME,
pub strafe_tick_period: TIME,
pub tick: u32,
pub gravity: glam::Vec3,
pub friction: f32,
pub mv: f32,
pub grounded: bool,
pub walkspeed: f32,
pub friction: f32,
pub gravity: glam::Vec3,
pub grounded: bool,
pub jump_trying: bool,
}