Game update (14135) (2)

This commit is contained in:
a2x
2026-02-11 08:43:22 +10:00
parent 3dd9d263da
commit d8c20afb69
70 changed files with 288 additions and 288 deletions

View File

@@ -14,16 +14,16 @@ pub struct SchemaClassInfoData {
pub size: i32, // 0x0018
pub field_count: i16, // 0x001C
pub static_metadata_count: i16, // 0x001E
pad_0: [u8; 0x2], // 0x0020
pub alignment: u8, // 0x0022
pad_0: [u8; 0x2], // 0x0020
pub alignment: u8, // 0x0022
pub has_base_class: u8, // 0x0023
pub total_class_size: i16, // 0x0024
pub derived_class_size: i16, // 0x0026
pub fields: Pointer64<[SchemaClassFieldData]>, // 0x0028
pad_1: [u8; 0x8], // 0x0030
pad_1: [u8; 0x8], // 0x0030
pub base_classes: Pointer64<SchemaBaseClassInfoData>, // 0x0038
pub static_metadata: Pointer64<[SchemaMetadataEntryData]>, // 0x0040
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0050
pub r#type: Pointer64<SchemaType>, // 0x0058
pad_2: [u8; 0x10], // 0x0060
pad_2: [u8; 0x10], // 0x0060
}

View File

@@ -12,14 +12,14 @@ pub struct SchemaEnumInfoData {
pub name: Pointer64<ReprCString>, // 0x0008
pub module_name: Pointer64<ReprCString>, // 0x0010
pub size: u8, // 0x0018
pub alignment: u8, // 0x0019
pub flags: u8, // 0x001A
pad_0: [u8; 0x1], // 0x001B
pub enumerator_count: u16, // 0x001C
pub alignment: u8, // 0x0019
pub flags: u8, // 0x001A
pad_0: [u8; 0x1], // 0x001B
pub enumerator_count: u16, // 0x001C
pub static_metadata_count: u16, // 0x001E
pub enumerators: Pointer64<[SchemaEnumeratorInfoData]>, // 0x0020
pub enumerators: Pointer64<[SchemaEnumeratorInfoData]>, // 0x0020
pub static_metadata: Pointer64<SchemaMetadataEntryData>, // 0x0028
pub type_scope: Pointer64<SchemaSystemTypeScope>, // 0x0030
pub min_enumerator_value: i64, // 0x0038
pub max_enumerator_value: i64, // 0x0040
pub min_enumerator_value: i64, // 0x0038
pub max_enumerator_value: i64, // 0x0040
}