Game update (14090)

This commit is contained in:
a2x
2025-07-29 18:11:56 +10:00
parent 778d3f2e4b
commit 7f60c80c21
93 changed files with 81586 additions and 66642 deletions

View File

@@ -2,10 +2,18 @@ use memflow::prelude::v1::*;
use super::SchemaClassInfoData;
#[derive(Pod)]
#[repr(C)]
pub struct SchemaBaseClassInfoData {
pub offset: u32, // 0x0000
pad_0004: [u8; 4], // 0x0004
pub prev: Pointer64<SchemaClassInfoData>, // 0x0008
pad_0000: [u8; 0x18], // 0x0000
pub prev: Pointer64<SchemaBaseClass>, // 0x0018
}
unsafe impl Pod for SchemaBaseClassInfoData {}
#[repr(C)]
pub struct SchemaBaseClass {
pad_0000: [u8; 0x10], // 0x0000
pub name: Pointer64<ReprCString>, // 0x0010
}
unsafe impl Pod for SchemaBaseClass {}