mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-11-17 22:20:02 +08:00
11 lines
211 B
Rust
11 lines
211 B
Rust
use memflow::prelude::v1::*;
|
|
|
|
#[repr(C)]
|
|
pub struct InterfaceReg {
|
|
pub create_fn: Address,
|
|
pub name: Pointer64<ReprCString>,
|
|
pub next: Pointer64<InterfaceReg>,
|
|
}
|
|
|
|
unsafe impl Pod for InterfaceReg {}
|