mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-11-05 14:30:07 +08:00
12 lines
296 B
Rust
12 lines
296 B
Rust
use memflow::prelude::v1::*;
|
|
|
|
use super::SchemaClassInfoData;
|
|
|
|
#[derive(Pod)]
|
|
#[repr(C)]
|
|
pub struct SchemaBaseClassInfoData {
|
|
pub offset: u32, // 0x0000
|
|
pad_0004: [u8; 0x4], // 0x0004
|
|
pub prev: Pointer64<SchemaClassInfoData>, // 0x0008
|
|
}
|