cs2-dumper/src/source2/tier1/interface.rs
2024-04-06 12:47:06 +10:00

11 lines
295 B
Rust

use memflow::prelude::v1::*;
/// Represents a node in the linked list of exposed interfaces.
#[derive(Pod)]
#[repr(C)]
pub struct InterfaceReg {
pub create_fn: Pointer64<()>, // 0x0000
pub name: Pointer64<ReprCString>, // 0x0008
pub next: Pointer64<InterfaceReg>, // 0x0010
}