mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-08 05:10:02 +08:00
Game update (14090)
This commit is contained in:
@@ -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 {}
|
||||
|
Reference in New Issue
Block a user