Files
cs2-dumper/src/source2/schema_system/schema_static_field_data.rs
2024-06-13 22:51:05 +10:00

13 lines
309 B
Rust

use memflow::prelude::v1::*;
use super::SchemaType;
#[derive(Pod)]
#[repr(C)]
pub struct SchemaStaticFieldData {
pub name: Pointer64<ReprCString>, // 0x0000
pub type_: Pointer64<SchemaType>, // 0x0008
pub instance: Pointer64<()>, // 0x0010
pad_0018: [u8; 0x10], // 0x0018
}