pub struct S2Object {
pub id: u32,
pub typ: u32,
pub x: f32,
pub z: f32,
pub yaw: f32,
pub health: f32,
pub health_max: f32,
pub day_timer: u32,
}Expand description
Object record (source e_save_map.bb lines 137–148).
Fields§
§id: u32§typ: u32§x: f32§z: f32§yaw: f32§health: f32§health_max: f32§day_timer: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for S2Object
impl RefUnwindSafe for S2Object
impl Send for S2Object
impl Sync for S2Object
impl Unpin for S2Object
impl UnsafeUnpin for S2Object
impl UnwindSafe for S2Object
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more