pub trait ParamFileDescriptor {
    type Row: Sized;

    const ID: usize;
}
Expand description

A type that represents a reference to a PARAM file within a FROMSOFTWARE game.

#[derive(Debug)]
#[repr(C)]
pub struct NetworkAreaParam {
    /// セルサイズX
    cell_size_x: f32,
    /// セルサイズY
    cell_size_y: f32,
    /// セルサイズZ
    cell_size_z: f32,
    /// セルオフセットX
    cell_offset_x: f32,
    /// セルオフセットY
    cell_offset_y: f32,
   /// セルオフセットZ
    cell_offset_z: f32,
}

impl me3_game_support_fromsoft::sprj::ParamFileDescriptor for NetworkAreaParam {
    const ID: usize = 49;
    type Row = Self;
}

Required Associated Types

Required Associated Constants

Implementors