mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-08 05:10:02 +08:00
Refactor and move Linux code to separate branch
This commit is contained in:
15
src/source2/schema_system/schema_system.rs
Normal file
15
src/source2/schema_system/schema_system.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use memflow::prelude::v1::*;
|
||||
|
||||
use super::SchemaSystemTypeScope;
|
||||
|
||||
use crate::source2::UtlVector;
|
||||
|
||||
#[repr(C)]
|
||||
pub struct SchemaSystem {
|
||||
pad_0000: [u8; 0x190],
|
||||
pub type_scopes: UtlVector<Pointer64<SchemaSystemTypeScope>>,
|
||||
pad_01a0: [u8; 0x120],
|
||||
pub num_registrations: u32,
|
||||
}
|
||||
|
||||
unsafe impl Pod for SchemaSystem {}
|
Reference in New Issue
Block a user