mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-05 00:25:36 +08:00
14 lines
331 B
Rust
14 lines
331 B
Rust
/*
|
|
* Created using https://github.com/a2x/cs2-dumper
|
|
* Thu, 14 Dec 2023 11:58:27 +0000
|
|
*/
|
|
|
|
#![allow(non_snake_case, non_upper_case_globals)]
|
|
|
|
pub mod CAnimScriptBase {
|
|
pub const m_bIsValid: usize = 0x8; // bool
|
|
}
|
|
|
|
pub mod EmptyTestScript { // CAnimScriptBase
|
|
pub const m_hTest: usize = 0x10; // CAnimScriptParam<float>
|
|
} |