mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-08 02:00:02 +08:00
16 lines
477 B
Rust
16 lines
477 B
Rust
use memflow::prelude::v1::*;
|
|
|
|
use super::SchemaSystemTypeScope;
|
|
|
|
use crate::source2::UtlVector;
|
|
|
|
#[repr(C)]
|
|
pub struct SchemaSystem {
|
|
pad_0000: [u8; 0x188], // 0x0000
|
|
pub type_scopes: UtlVector<Pointer64<SchemaSystemTypeScope>>, // 0x0188
|
|
pad_0198: [u8; 0xE0], // 0x0198
|
|
pub num_registrations: i32, // 0x0278
|
|
}
|
|
|
|
unsafe impl Pod for SchemaSystem {}
|