use bevy::prelude::*; #[derive(Component)] pub struct Velocity { pub v: Vec3, } #[derive(Component)] pub struct Rotation { pub r: f32, // radiants per second } #[derive(Component)] pub struct Thrust { pub t: f32, }