macro_rules! impl_param_file_descriptor {
    ($ty:ident, $id:expr) => { ... };
}
Expand description

A helper macro to simplify defining PARAM files for structures that are only referenced within a single PARAM file.

use me3_game_support_fromsoft::impl_param_file_descriptor;

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_param_file_descriptor!(NetworkAreaParam, 49);