mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-04 21:15:36 +08:00
Compare commits
No commits in common. "main" and "0.1.0" have entirely different histories.
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/.idea
|
||||
/.vscode
|
||||
/.vs
|
||||
/target
|
||||
Cargo.lock
|
||||
|
17
Cargo.toml
17
Cargo.toml
@ -1,27 +1,26 @@
|
||||
[package]
|
||||
name = "cs2-dumper"
|
||||
version = "0.1.2"
|
||||
version = "0.1.0"
|
||||
authors = ["a2x"]
|
||||
edition = "2024"
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/a2x/cs2-dumper"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
bitflags = { version = "2.5", features = ["serde"] }
|
||||
clap = { version = "4.5", features = ["cargo"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
heck = "0.5"
|
||||
log = "0.4"
|
||||
memflow = "0.2"
|
||||
pelite = "0.10"
|
||||
phf = { version = "0.11", features = ["macros"] }
|
||||
memflow-native = { git = "https://github.com/memflow/memflow-native" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
simplelog = "0.12"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
memflow-native = { git = "https://github.com/memflow/memflow-native" }
|
||||
skidscan = "2.0"
|
||||
skidscan-macros = "0.1"
|
||||
thiserror = "1.0"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 1
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 a2x
|
||||
Copyright (c) 2023 a2x
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
46
README.md
46
README.md
@ -1,53 +1,37 @@
|
||||
# cs2-dumper
|
||||
|
||||
An external offset/interface dumper for Counter-Strike 2, with support for both Windows & Linux. Powered
|
||||
by [memflow](https://github.com/memflow/memflow).
|
||||
An external offset/interface dumper for Counter-Strike 2, with support for both Windows & Linux.
|
||||
|
||||
The native Linux version is available in the [linux](https://github.com/a2x/cs2-dumper/tree/linux) branch (currently
|
||||
outdated).
|
||||
|
||||
For a work-in-progress offline version, check out the [cs2-analyzer](https://github.com/a2x/cs2-analyzer) repository or
|
||||
view its included web demo [here](https://a2x.github.io/cs2-analyzer).
|
||||
Powered by [memflow](https://github.com/memflow/memflow).
|
||||
|
||||
## Getting Started
|
||||
|
||||
You can download the latest release from [Releases](https://github.com/a2x/cs2-dumper/releases) or compile it yourself.
|
||||
Note that compiling it yourself requires your Rust compiler version to be at least 1.74.0 or newer.
|
||||
Note that compiling it yourself requires your Rust compiler version to be at least 1.74.0 or newer, and the nightly
|
||||
toolchain must be installed.
|
||||
|
||||
## Usage
|
||||
|
||||
1. Ensure the game is running (Being in the main menu should suffice).
|
||||
2. Run the `cs2-dumper` executable.
|
||||
1. Ensure the game process is running (Being in the main menu should suffice).
|
||||
2. Run the `cs2-dumper` executable (Note that some memflow connectors require elevated privileges).
|
||||
|
||||
_Note:_ If you run the executable without specifying an optional memflow connector name, it will automatically use the
|
||||
[memflow-native](https://github.com/memflow/memflow-native) OS layer to read the memory of the game process. If you
|
||||
wish to use an existing memflow connector instead, such as **pcileech** or **kvm**, you can pass the `connector` and
|
||||
optional `connector-args` arguments to the program. These connectors can be installed and managed using
|
||||
the [memflowup](https://github.com/memflow/memflowup) tool.
|
||||
When running the executable without providing an optional memflow connector name, it will default to using the
|
||||
memflow-native cross-platform OS layer to read the game's memory. However, any existing memflow connectors should work
|
||||
out of the box.
|
||||
Just pass the `connector` and optional `connector-args` arguments to the program.
|
||||
|
||||
E.g (for pcileech). `cs2-dumper -c pcileech -a :device=FPGA -vv`
|
||||
|
||||
Certain connectors, such as the [kvm](https://github.com/memflow/memflow-kvm) connector on Linux or
|
||||
the [pcileech](https://github.com/memflow/memflow-pcileech) / [winio](https://github.com/a2x/memflow-winio)
|
||||
connectors on Windows, require elevated privileges to work. So either run the `cs2-dumper` executable with `sudo` on
|
||||
Linux or as an administrator on Windows.
|
||||
E.g. `cs2-dumper.exe -c pcileech -a device=fpga -vvv`
|
||||
|
||||
### Available Arguments
|
||||
|
||||
- `-c, --connector <connector>`: The name of the memflow connector to use.
|
||||
- `-a, --connector-args <connector-args>`: Additional arguments to pass to the memflow connector.
|
||||
- `-f, --file-types <file-types>`: The types of files to generate. Default: `cs`, `hpp`, `json`, `rs`.
|
||||
- `-i, --indent-size <indent-size>`: The number of spaces to use per indentation level. Default: `4`.
|
||||
- `-o, --output <output>`: The output directory to write the generated files to. Default: `output`.
|
||||
- `-p, --process-name <process-name>`: The name of the game process. Default: `cs2.exe`.
|
||||
- `-v...`: Increase logging verbosity. Can be specified multiple times.
|
||||
- `-c, --connector <connector>`: The name of the memflow connector to use.
|
||||
- `-a, --connector-args <connector-args>`: Additional arguments to supply to the connector.
|
||||
- `-o, --output <output>`: The output directory to write the generated files to. Default: `output`.
|
||||
- `-i, --indent-size <indent-size>`: The number of spaces to use per indentation level. Default: `4`.
|
||||
- `-h, --help`: Print help.
|
||||
- `-V, --version`: Print version.
|
||||
|
||||
## Running Tests
|
||||
|
||||
To run the few basic provided tests, use the following command: `cargo test -- --nocapture`.
|
||||
|
||||
## License
|
||||
|
||||
Licensed under the MIT license ([LICENSE](./LICENSE)).
|
||||
|
300
config_linux.json
Normal file
300
config_linux.json
Normal file
@ -0,0 +1,300 @@
|
||||
{
|
||||
"executable": "cs2",
|
||||
"signatures": [
|
||||
{
|
||||
"libclient.so": [
|
||||
{
|
||||
"name": "dwCSGOInput",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 55 48 89 E5 41 56 41 55 49 89 FD 41 54 49 89 F4",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwEntityList",
|
||||
"pattern": "4C 89 25 ? ? ? ? 48 89 05 ? ? ? ? 49 8B 5D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem",
|
||||
"pattern": "48 89 3D ? ? ? ? E9 ? ? ? ? 55",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem_getHighestEntityIndex",
|
||||
"pattern": "8B 87 ? ? ? ? C3 66 0F 1F 84 00 ? ? ? ? 8B 97",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameRules",
|
||||
"pattern": "48 89 3D ? ? ? ? 8B 3B",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlobalVars",
|
||||
"pattern": "48 89 35 ? ? ? ? 48 89 46",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlowManager",
|
||||
"pattern": "48 8B 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8D 05 ? ? ? ? 48 C7 47",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerController",
|
||||
"pattern": "48 8B 15 ? ? ? ? 31 C0 48 85 D2 74 ? 8B B2",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerPawn",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? C7 47 ? ? ? ? ? C7 47 ? ? ? ? ? C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 312
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPlantedC4",
|
||||
"pattern": "48 8B 05 ? ? ? ? 4C 89 24 D8 49 8B 44 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPrediction",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? C7 47 ? ? ? ? ? C7 47 ? ? ? ? ? C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity",
|
||||
"pattern": "48 8B 05 ? ? ? ? 48 8B 40 ? E9 ? ? ? ? 48 8B 05 ? ? ? ? 48 8B 40 ? EB ? 0F 1F 00 55 48 89 E5 41 57 66 41 0F 7E DF",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity_sensitivity",
|
||||
"pattern": "FF 53 ? 48 8D 4D AC",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewAngles",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 55 48 89 E5 41 56 41 55 49 89 FD 41 54 49 89 F4",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 21408
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewMatrix",
|
||||
"pattern": "4C 8D 05 ? ? ? ? 48 8B 38 48 8D 0D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewRender",
|
||||
"pattern": "48 8D 05 ? ? ? ? 48 89 38 48 85 FF",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libengine2.so": [
|
||||
{
|
||||
"name": "dwBuildNumber",
|
||||
"pattern": "89 15 ? ? ? ? 48 83 C3",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"len": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient",
|
||||
"pattern": "48 89 1D ? ? ? ? 49 8B 04 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_deltaTick",
|
||||
"pattern": "89 83 ? ? ? ? B8 ? ? ? ? 5B",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getLocalPlayer",
|
||||
"pattern": "48 8B 87 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 55 48 89 E5",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 4
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 4856
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getMaxClients",
|
||||
"pattern": "48 8B 87 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 89 B7 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 8B 87",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_signOnState",
|
||||
"pattern": "8B 97 ? ? ? ? 31 C0 45 31 ED",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowHeight",
|
||||
"pattern": "89 05 ? ? ? ? F3 0F 59 C1",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 11
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowWidth",
|
||||
"pattern": "89 05 ? ? ? ? F3 0F 59 C1",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libinputsystem.so": [
|
||||
{
|
||||
"name": "dwInputSystem",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 8B 87",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"libmatchmaking.so": [
|
||||
{
|
||||
"name": "dwGameTypes",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8B 07",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameTypes_mapName",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 0F 1F 84 00 ? ? ? ? 48 8B 07",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 288
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
292
config_win.json
Normal file
292
config_win.json
Normal file
@ -0,0 +1,292 @@
|
||||
{
|
||||
"executable": "cs2.exe",
|
||||
"signatures": [
|
||||
{
|
||||
"client.dll": [
|
||||
{
|
||||
"name": "dwCSGOInput",
|
||||
"pattern": "48 89 05 ? ? ? ? 48 8D 05 ? ? ? ? 48 89 0D ? ? ? ? 48 89 05 ? ? ? ? 48 8D 05",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwEntityList",
|
||||
"pattern": "48 89 35 ? ? ? ? 48 85 F6",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem",
|
||||
"pattern": "48 8B 1D ? ? ? ? 48 89 1D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem_getHighestEntityIndex",
|
||||
"pattern": "8B 81 ? ? ? ? 89 02 48 8B C2 C3 CC CC CC CC 48 89 5C 24 ? 48 89 6C 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameRules",
|
||||
"pattern": "48 89 0D ? ? ? ? 8B 0D ? ? ? ? FF 15",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlobalVars",
|
||||
"pattern": "48 89 0D ? ? ? ? 48 89 41",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGlowManager",
|
||||
"pattern": "48 8B 05 ? ? ? ? C3 CC CC CC CC CC CC CC CC 8B 41",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerController",
|
||||
"pattern": "48 8B 05 ? ? ? ? 48 85 C0 74 ? 8B 88",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerPawn",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 CC CC CC CC CC CC CC CC 48 83 EC ? 8B 0D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 312
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPlantedC4",
|
||||
"pattern": "48 8B 15 ? ? ? ? FF C0 48 8D 4C 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwPrediction",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 CC CC CC CC CC CC CC CC 48 83 EC ? 8B 0D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity",
|
||||
"pattern": "48 8B 05 ? ? ? ? 48 8B 40 ? F3 41 0F 59 F4",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity_sensitivity",
|
||||
"pattern": "FF 50 ? 4C 8B C6 48 8D 55 ? 48 8B CF E8 ? ? ? ? 84 C0 0F 85 ? ? ? ? 4C 8D 45 ? 8B D3 48 8B CF E8 ? ? ? ? E9 ? ? ? ? F3 0F 10 06",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewAngles",
|
||||
"pattern": "48 89 05 ? ? ? ? 48 8D 05 ? ? ? ? 48 89 0D ? ? ? ? 48 89 05 ? ? ? ? 48 8D 05",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 21392
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewMatrix",
|
||||
"pattern": "48 8D 05 ? ? ? ? 48 8B D3 4C 8D 05",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwViewRender",
|
||||
"pattern": "48 89 05 ? ? ? ? 48 8B C8 48 85 C0",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"engine2.dll": [
|
||||
{
|
||||
"name": "dwBuildNumber",
|
||||
"pattern": "89 05 ? ? ? ? 48 8D 0D ? ? ? ? FF 15 ? ? ? ? E9",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"len": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient",
|
||||
"pattern": "48 89 3D ? ? ? ? 48 8D 15",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_deltaTick",
|
||||
"pattern": "89 83 ? ? ? ? 40 B7",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getLocalPlayer",
|
||||
"pattern": "48 83 C0 ? 48 8D 04 40 8B 0C C1 48 8B C2 89 0A C3 C7 02",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 4
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 230
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getMaxClients",
|
||||
"pattern": "8B 81 ? ? ? ? C3 CC CC CC CC CC CC CC CC CC 8B 81 ? ? ? ? FF C0",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 2,
|
||||
"end": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_signOnState",
|
||||
"pattern": "44 8B 81 ? ? ? ? 48 8D 0D",
|
||||
"operations": [
|
||||
{
|
||||
"type": "slice",
|
||||
"start": 3,
|
||||
"end": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowHeight",
|
||||
"pattern": "8B 05 ? ? ? ? 89 03",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwWindowWidth",
|
||||
"pattern": "8B 05 ? ? ? ? 89 07",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip",
|
||||
"offset": 2,
|
||||
"length": 6
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"inputsystem.dll": [
|
||||
{
|
||||
"name": "dwInputSystem",
|
||||
"pattern": "48 89 05 ? ? ? ? 48 8D 05",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"matchmaking.dll": [
|
||||
{
|
||||
"name": "dwGameTypes",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 CC CC CC CC CC CC CC CC 48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dwGameTypes_mapName",
|
||||
"pattern": "48 8D 05 ? ? ? ? C3 CC CC CC CC CC CC CC CC 48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24",
|
||||
"operations": [
|
||||
{
|
||||
"type": "rip"
|
||||
},
|
||||
{
|
||||
"type": "add",
|
||||
"value": 288
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
13:06:03 [INFO] found 16 buttons
|
||||
13:06:03 [INFO] found 130 interfaces across 33 modules
|
||||
13:06:04 [INFO] found 33 offsets across 5 modules
|
||||
13:06:04 [INFO] found 2468 classes and 368 enums across 17 modules
|
||||
13:06:04 [INFO] analysis completed in 1.02s
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,24 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper {
|
||||
// Module: client.dll
|
||||
public static class Buttons {
|
||||
public const nint attack = 0x186C850;
|
||||
public const nint attack2 = 0x186C8E0;
|
||||
public const nint back = 0x186CB20;
|
||||
public const nint duck = 0x186CDF0;
|
||||
public const nint forward = 0x186CA90;
|
||||
public const nint jump = 0x186CD60;
|
||||
public const nint left = 0x186CBB0;
|
||||
public const nint lookatweapon = 0x1A92F10;
|
||||
public const nint reload = 0x186C7C0;
|
||||
public const nint right = 0x186CC40;
|
||||
public const nint showscores = 0x1A92DF0;
|
||||
public const nint sprint = 0x186C730;
|
||||
public const nint turnleft = 0x186C970;
|
||||
public const nint turnright = 0x186CA00;
|
||||
public const nint use = 0x186CCD0;
|
||||
public const nint zoom = 0x1A92E80;
|
||||
}
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
// Module: client.dll
|
||||
namespace buttons {
|
||||
constexpr std::ptrdiff_t attack = 0x186C850;
|
||||
constexpr std::ptrdiff_t attack2 = 0x186C8E0;
|
||||
constexpr std::ptrdiff_t back = 0x186CB20;
|
||||
constexpr std::ptrdiff_t duck = 0x186CDF0;
|
||||
constexpr std::ptrdiff_t forward = 0x186CA90;
|
||||
constexpr std::ptrdiff_t jump = 0x186CD60;
|
||||
constexpr std::ptrdiff_t left = 0x186CBB0;
|
||||
constexpr std::ptrdiff_t lookatweapon = 0x1A92F10;
|
||||
constexpr std::ptrdiff_t reload = 0x186C7C0;
|
||||
constexpr std::ptrdiff_t right = 0x186CC40;
|
||||
constexpr std::ptrdiff_t showscores = 0x1A92DF0;
|
||||
constexpr std::ptrdiff_t sprint = 0x186C730;
|
||||
constexpr std::ptrdiff_t turnleft = 0x186C970;
|
||||
constexpr std::ptrdiff_t turnright = 0x186CA00;
|
||||
constexpr std::ptrdiff_t use = 0x186CCD0;
|
||||
constexpr std::ptrdiff_t zoom = 0x1A92E80;
|
||||
}
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
{
|
||||
"client.dll": {
|
||||
"attack": 25610320,
|
||||
"attack2": 25610464,
|
||||
"back": 25611040,
|
||||
"duck": 25611760,
|
||||
"forward": 25610896,
|
||||
"jump": 25611616,
|
||||
"left": 25611184,
|
||||
"lookatweapon": 27864848,
|
||||
"reload": 25610176,
|
||||
"right": 25611328,
|
||||
"showscores": 27864560,
|
||||
"sprint": 25610032,
|
||||
"turnleft": 25610608,
|
||||
"turnright": 25610752,
|
||||
"use": 25611472,
|
||||
"zoom": 27864704
|
||||
}
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
// Module: client.dll
|
||||
pub mod buttons {
|
||||
pub const attack: usize = 0x186C850;
|
||||
pub const attack2: usize = 0x186C8E0;
|
||||
pub const back: usize = 0x186CB20;
|
||||
pub const duck: usize = 0x186CDF0;
|
||||
pub const forward: usize = 0x186CA90;
|
||||
pub const jump: usize = 0x186CD60;
|
||||
pub const left: usize = 0x186CBB0;
|
||||
pub const lookatweapon: usize = 0x1A92F10;
|
||||
pub const reload: usize = 0x186C7C0;
|
||||
pub const right: usize = 0x186CC40;
|
||||
pub const showscores: usize = 0x1A92DF0;
|
||||
pub const sprint: usize = 0x186C730;
|
||||
pub const turnleft: usize = 0x186C970;
|
||||
pub const turnright: usize = 0x186CA00;
|
||||
pub const r#use: usize = 0x186CCD0;
|
||||
pub const zoom: usize = 0x1A92E80;
|
||||
}
|
||||
}
|
6851
output/client_dll.cs
6851
output/client_dll.cs
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
14548
output/client_dll.json
14548
output/client_dll.json
File diff suppressed because it is too large
Load Diff
6862
output/client_dll.rs
6862
output/client_dll.rs
File diff suppressed because it is too large
Load Diff
@ -1,311 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 4
|
||||
public static class Engine2Dll {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum EntityDormancyType_t : uint {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
ENTITY_DORMANT = 0x1,
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum EntityIOTargetType_t : uint {
|
||||
ENTITY_IO_TARGET_INVALID = unchecked((uint)-1),
|
||||
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum SpawnDebugOverrideState_t : uint {
|
||||
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 5
|
||||
public enum SpawnDebugRestrictionOverrideState_t : uint {
|
||||
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
public static class EventSimpleLoopFrameUpdate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
public static class EventPostAdvanceTick_t {
|
||||
public const nint m_nCurrentTick = 0x30; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x38; // int32
|
||||
public const nint m_nTotalTicks = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CEntityIOOutput {
|
||||
public const nint m_Value = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventClientSceneSystemThreadStateChange_t {
|
||||
public const nint m_bThreadsActive = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
public static class EventClientOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float32
|
||||
public const nint m_flRealTime = 0x2C; // float32
|
||||
public const nint m_flRenderFrameTimeUnbounded = 0x30; // float32
|
||||
public const nint m_bRenderOnly = 0x34; // bool
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class CEntityComponentHelper {
|
||||
public const nint m_flags = 0x8; // uint32
|
||||
public const nint m_pInfo = 0x10; // EntComponentInfo_t*
|
||||
public const nint m_nPriority = 0x18; // int32
|
||||
public const nint m_pNext = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class GameTime_t {
|
||||
public const nint m_Value = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
public static class EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CNetworkVarChainer {
|
||||
public const nint m_PathIndex = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
public static class EventClientPostOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float64
|
||||
public const nint m_flRenderFrameTime = 0x30; // float32
|
||||
public const nint m_flRenderFrameTimeUnbounded = 0x34; // float32
|
||||
public const nint m_bRenderOnly = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class GameTick_t {
|
||||
public const nint m_Value = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
public static class EventClientPollInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventPreDataUpdate_t {
|
||||
public const nint m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
public static class EventClientProcessGameInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventFrameBoundary_t {
|
||||
public const nint m_flFrameTime = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventAppShutdown_t {
|
||||
public const nint m_nDummy0 = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventServerSimulate_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
public static class EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventProfileStorageAvailable_t {
|
||||
public const nint m_nSplitScreenSlot = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventPostDataUpdate_t {
|
||||
public const nint m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventClientProcessNetworking_t {
|
||||
public const nint m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
public static class EventAdvanceTick_t {
|
||||
public const nint m_nCurrentTick = 0x30; // int32
|
||||
public const nint m_nCurrentTickThisFrame = 0x34; // int32
|
||||
public const nint m_nTotalTicksThisFrame = 0x38; // int32
|
||||
public const nint m_nTotalTicks = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
public static class EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
public static class EventClientPreOutput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRenderTime = 0x28; // float64
|
||||
public const nint m_flRenderFrameTime = 0x30; // float64
|
||||
public const nint m_flRenderFrameTimeUnbounded = 0x38; // float64
|
||||
public const nint m_flRealTime = 0x40; // float32
|
||||
public const nint m_bRenderOnly = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class EventClientFrameSimulate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flFrameTime = 0x2C; // float32
|
||||
public const nint m_bScheduleSendTickPacket = 0x30; // bool
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
public static class EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
public static class EventSetTime_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_nClientOutputFrames = 0x28; // int32
|
||||
public const nint m_flRealTime = 0x30; // float64
|
||||
public const nint m_flRenderTime = 0x38; // float64
|
||||
public const nint m_flRenderFrameTime = 0x40; // float64
|
||||
public const nint m_flRenderFrameTimeUnbounded = 0x48; // float64
|
||||
public const nint m_flRenderFrameTimeUnscaled = 0x50; // float64
|
||||
public const nint m_flTickRemainder = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
public static class EventSimulate_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_bFirstTick = 0x28; // bool
|
||||
public const nint m_bLastTick = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
public static class CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
public static class EntComponentInfo_t {
|
||||
public const nint m_pName = 0x0; // char*
|
||||
public const nint m_pCPPClassname = 0x8; // char*
|
||||
public const nint m_pNetworkDataReferencedDescription = 0x10; // char*
|
||||
public const nint m_pNetworkDataReferencedPtrPropDescription = 0x18; // char*
|
||||
public const nint m_nRuntimeIndex = 0x20; // int32
|
||||
public const nint m_nFlags = 0x24; // uint32
|
||||
public const nint m_pBaseClassComponentHelper = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class EngineLoopState_t {
|
||||
public const nint m_nPlatWindowWidth = 0x18; // int32
|
||||
public const nint m_nPlatWindowHeight = 0x1C; // int32
|
||||
public const nint m_nRenderWidth = 0x20; // int32
|
||||
public const nint m_nRenderHeight = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class EventClientPollNetworking_t {
|
||||
public const nint m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
public static class EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class EventClientProcessInput_t {
|
||||
public const nint m_LoopState = 0x0; // EngineLoopState_t
|
||||
public const nint m_flRealTime = 0x28; // float32
|
||||
public const nint m_flTickInterval = 0x2C; // float32
|
||||
public const nint m_flTickStartTime = 0x30; // float64
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
public static class EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
}
|
@ -1,317 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 4
|
||||
namespace engine2_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class EntityDormancyType_t : uint32_t {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
ENTITY_DORMANT = 0x1,
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class EntityIOTargetType_t : uint32_t {
|
||||
ENTITY_IO_TARGET_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class SpawnDebugOverrideState_t : uint32_t {
|
||||
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 5
|
||||
enum class SpawnDebugRestrictionOverrideState_t : uint32_t {
|
||||
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||
};
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
namespace EventSimpleLoopFrameUpdate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
namespace EventPostAdvanceTick_t {
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CEntityIOOutput {
|
||||
constexpr std::ptrdiff_t m_Value = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventClientSceneSystemThreadStateChange_t {
|
||||
constexpr std::ptrdiff_t m_bThreadsActive = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
namespace EventClientOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x30; // float32
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x34; // bool
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace CEntityComponentHelper {
|
||||
constexpr std::ptrdiff_t m_flags = 0x8; // uint32
|
||||
constexpr std::ptrdiff_t m_pInfo = 0x10; // EntComponentInfo_t*
|
||||
constexpr std::ptrdiff_t m_nPriority = 0x18; // int32
|
||||
constexpr std::ptrdiff_t m_pNext = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace GameTime_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
namespace EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CNetworkVarChainer {
|
||||
constexpr std::ptrdiff_t m_PathIndex = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
namespace EventClientPostOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTime = 0x30; // float32
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x34; // float32
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace GameTick_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
namespace EventClientPollInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventPreDataUpdate_t {
|
||||
constexpr std::ptrdiff_t m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
namespace EventClientProcessGameInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventFrameBoundary_t {
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventAppShutdown_t {
|
||||
constexpr std::ptrdiff_t m_nDummy0 = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventServerSimulate_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
namespace EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventProfileStorageAvailable_t {
|
||||
constexpr std::ptrdiff_t m_nSplitScreenSlot = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventPostDataUpdate_t {
|
||||
constexpr std::ptrdiff_t m_nCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventClientProcessNetworking_t {
|
||||
constexpr std::ptrdiff_t m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
namespace EventAdvanceTick_t {
|
||||
constexpr std::ptrdiff_t m_nCurrentTick = 0x30; // int32
|
||||
constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; // int32
|
||||
constexpr std::ptrdiff_t m_nTotalTicks = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
namespace EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
namespace EventClientPreOutput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x28; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTime = 0x30; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x38; // float64
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x40; // float32
|
||||
constexpr std::ptrdiff_t m_bRenderOnly = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace EventClientFrameSimulate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flFrameTime = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_bScheduleSendTickPacket = 0x30; // bool
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
namespace EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
namespace EventSetTime_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_nClientOutputFrames = 0x28; // int32
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x30; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderTime = 0x38; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTime = 0x40; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x48; // float64
|
||||
constexpr std::ptrdiff_t m_flRenderFrameTimeUnscaled = 0x50; // float64
|
||||
constexpr std::ptrdiff_t m_flTickRemainder = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
namespace EventSimulate_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_bFirstTick = 0x28; // bool
|
||||
constexpr std::ptrdiff_t m_bLastTick = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
namespace CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
namespace EntComponentInfo_t {
|
||||
constexpr std::ptrdiff_t m_pName = 0x0; // char*
|
||||
constexpr std::ptrdiff_t m_pCPPClassname = 0x8; // char*
|
||||
constexpr std::ptrdiff_t m_pNetworkDataReferencedDescription = 0x10; // char*
|
||||
constexpr std::ptrdiff_t m_pNetworkDataReferencedPtrPropDescription = 0x18; // char*
|
||||
constexpr std::ptrdiff_t m_nRuntimeIndex = 0x20; // int32
|
||||
constexpr std::ptrdiff_t m_nFlags = 0x24; // uint32
|
||||
constexpr std::ptrdiff_t m_pBaseClassComponentHelper = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace EngineLoopState_t {
|
||||
constexpr std::ptrdiff_t m_nPlatWindowWidth = 0x18; // int32
|
||||
constexpr std::ptrdiff_t m_nPlatWindowHeight = 0x1C; // int32
|
||||
constexpr std::ptrdiff_t m_nRenderWidth = 0x20; // int32
|
||||
constexpr std::ptrdiff_t m_nRenderHeight = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace EventClientPollNetworking_t {
|
||||
constexpr std::ptrdiff_t m_nTickCount = 0x0; // int32
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
namespace EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace EventClientProcessInput_t {
|
||||
constexpr std::ptrdiff_t m_LoopState = 0x0; // EngineLoopState_t
|
||||
constexpr std::ptrdiff_t m_flRealTime = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flTickInterval = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_flTickStartTime = 0x30; // float64
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
namespace EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,392 +0,0 @@
|
||||
{
|
||||
"engine2.dll": {
|
||||
"classes": {
|
||||
"CEmptyEntityInstance": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"CEntityComponentHelper": {
|
||||
"fields": {
|
||||
"m_flags": 8,
|
||||
"m_nPriority": 24,
|
||||
"m_pInfo": 16,
|
||||
"m_pNext": 32
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"CEntityIOOutput": {
|
||||
"fields": {
|
||||
"m_Value": 24
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"CNetworkVarChainer": {
|
||||
"fields": {
|
||||
"m_PathIndex": 32
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"CVariantDefaultAllocator": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EngineLoopState_t": {
|
||||
"fields": {
|
||||
"m_nPlatWindowHeight": 28,
|
||||
"m_nPlatWindowWidth": 24,
|
||||
"m_nRenderHeight": 36,
|
||||
"m_nRenderWidth": 32
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EntComponentInfo_t": {
|
||||
"fields": {
|
||||
"m_nFlags": 36,
|
||||
"m_nRuntimeIndex": 32,
|
||||
"m_pBaseClassComponentHelper": 96,
|
||||
"m_pCPPClassname": 8,
|
||||
"m_pName": 0,
|
||||
"m_pNetworkDataReferencedDescription": 16,
|
||||
"m_pNetworkDataReferencedPtrPropDescription": 24
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EntInput_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EntOutput_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventAdvanceTick_t": {
|
||||
"fields": {
|
||||
"m_nCurrentTick": 48,
|
||||
"m_nCurrentTickThisFrame": 52,
|
||||
"m_nTotalTicks": 60,
|
||||
"m_nTotalTicksThisFrame": 56
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventAppShutdown_t": {
|
||||
"fields": {
|
||||
"m_nDummy0": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientAdvanceNonRenderedFrame_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventAdvanceTick_t"
|
||||
},
|
||||
"EventClientFrameSimulate_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_bScheduleSendTickPacket": 48,
|
||||
"m_flFrameTime": 44,
|
||||
"m_flRealTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientOutput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_bRenderOnly": 52,
|
||||
"m_flRealTime": 44,
|
||||
"m_flRenderFrameTimeUnbounded": 48,
|
||||
"m_flRenderTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientPauseSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientPollInput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_flRealTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientPollNetworking_t": {
|
||||
"fields": {
|
||||
"m_nTickCount": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientPostAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventClientPostOutput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_bRenderOnly": 56,
|
||||
"m_flRenderFrameTime": 48,
|
||||
"m_flRenderFrameTimeUnbounded": 52,
|
||||
"m_flRenderTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientPostSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientPreOutput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_bRenderOnly": 68,
|
||||
"m_flRealTime": 64,
|
||||
"m_flRenderFrameTime": 48,
|
||||
"m_flRenderFrameTimeUnbounded": 56,
|
||||
"m_flRenderTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientPreSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventClientProcessGameInput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_flFrameTime": 44,
|
||||
"m_flRealTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientProcessInput_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_flRealTime": 40,
|
||||
"m_flTickInterval": 44,
|
||||
"m_flTickStartTime": 48
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientProcessNetworking_t": {
|
||||
"fields": {
|
||||
"m_nTickCount": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientSceneSystemThreadStateChange_t": {
|
||||
"fields": {
|
||||
"m_bThreadsActive": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventClientSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventFrameBoundary_t": {
|
||||
"fields": {
|
||||
"m_flFrameTime": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventModInitialized_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventPostAdvanceTick_t": {
|
||||
"fields": {
|
||||
"m_nCurrentTick": 48,
|
||||
"m_nCurrentTickThisFrame": 52,
|
||||
"m_nTotalTicks": 60,
|
||||
"m_nTotalTicksThisFrame": 56
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventPostDataUpdate_t": {
|
||||
"fields": {
|
||||
"m_nCount": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventPreDataUpdate_t": {
|
||||
"fields": {
|
||||
"m_nCount": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventProfileStorageAvailable_t": {
|
||||
"fields": {
|
||||
"m_nSplitScreenSlot": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventServerAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventAdvanceTick_t"
|
||||
},
|
||||
"EventServerBeginAsyncPostTickWork_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventServerEndAsyncPostTickWork_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventServerPollNetworking_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerPostAdvanceTick_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventPostAdvanceTick_t"
|
||||
},
|
||||
"EventServerPostSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerProcessNetworking_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventServerSimulate_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": "EventSimulate_t"
|
||||
},
|
||||
"EventSetTime_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_flRealTime": 48,
|
||||
"m_flRenderFrameTime": 64,
|
||||
"m_flRenderFrameTimeUnbounded": 72,
|
||||
"m_flRenderFrameTimeUnscaled": 80,
|
||||
"m_flRenderTime": 56,
|
||||
"m_flTickRemainder": 88,
|
||||
"m_nClientOutputFrames": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventSimpleLoopFrameUpdate_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_flFrameTime": 44,
|
||||
"m_flRealTime": 40
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventSimulate_t": {
|
||||
"fields": {
|
||||
"m_LoopState": 0,
|
||||
"m_bFirstTick": 40,
|
||||
"m_bLastTick": 41
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EventSplitScreenStateChanged_t": {
|
||||
"fields": {},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"GameTick_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"GameTime_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"EntityDormancyType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"ENTITY_DORMANT": 1,
|
||||
"ENTITY_NOT_DORMANT": 0,
|
||||
"ENTITY_SUSPENDED": 2
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"EntityIOTargetType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"ENTITY_IO_TARGET_EHANDLE": 6,
|
||||
"ENTITY_IO_TARGET_ENTITYNAME": 2,
|
||||
"ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME": 7,
|
||||
"ENTITY_IO_TARGET_INVALID": -1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SpawnDebugOverrideState_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED": 2,
|
||||
"SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED": 1,
|
||||
"SPAWN_DEBUG_OVERRIDE_NONE": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"SpawnDebugRestrictionOverrideState_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS": 1,
|
||||
"SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS": 8,
|
||||
"SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS": 4,
|
||||
"SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS": 2,
|
||||
"SPAWN_DEBUG_RESTRICT_NONE": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,319 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: engine2.dll
|
||||
// Class count: 48
|
||||
// Enum count: 4
|
||||
pub mod engine2_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum EntityDormancyType_t {
|
||||
ENTITY_NOT_DORMANT = 0x0,
|
||||
ENTITY_DORMANT = 0x1,
|
||||
ENTITY_SUSPENDED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
#[repr(u32)]
|
||||
pub enum EntityIOTargetType_t {
|
||||
ENTITY_IO_TARGET_INVALID = u32::MAX,
|
||||
ENTITY_IO_TARGET_ENTITYNAME = 0x2,
|
||||
ENTITY_IO_TARGET_EHANDLE = 0x6,
|
||||
ENTITY_IO_TARGET_ENTITYNAME_OR_CLASSNAME = 0x7
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum SpawnDebugOverrideState_t {
|
||||
SPAWN_DEBUG_OVERRIDE_NONE = 0x0,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_ENABLED = 0x1,
|
||||
SPAWN_DEBUG_OVERRIDE_FORCE_DISABLED = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 5
|
||||
#[repr(u32)]
|
||||
pub enum SpawnDebugRestrictionOverrideState_t {
|
||||
SPAWN_DEBUG_RESTRICT_NONE = 0x0,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_MANAGER_DISTANCE_REQS = 0x1,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_DISTANCE_LOS_REQS = 0x2,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TEMPLATE_COOLDOWN_LIMITS = 0x4,
|
||||
SPAWN_DEBUG_RESTRICT_IGNORE_TARGET_COOLDOWN_LIMITS = 0x8
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventClientPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
pub mod EventSimpleLoopFrameUpdate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
pub mod EventPostAdvanceTick_t {
|
||||
pub const m_nCurrentTick: usize = 0x30; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x38; // int32
|
||||
pub const m_nTotalTicks: usize = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod CEntityIOOutput {
|
||||
pub const m_Value: usize = 0x18; // CVariantBase<CVariantDefaultAllocator>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventClientSceneSystemThreadStateChange_t {
|
||||
pub const m_bThreadsActive: usize = 0x0; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
pub mod EventClientOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float32
|
||||
pub const m_flRealTime: usize = 0x2C; // float32
|
||||
pub const m_flRenderFrameTimeUnbounded: usize = 0x30; // float32
|
||||
pub const m_bRenderOnly: usize = 0x34; // bool
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventServerPostSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod CEntityComponentHelper {
|
||||
pub const m_flags: usize = 0x8; // uint32
|
||||
pub const m_pInfo: usize = 0x10; // EntComponentInfo_t*
|
||||
pub const m_nPriority: usize = 0x18; // int32
|
||||
pub const m_pNext: usize = 0x20; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod GameTime_t {
|
||||
pub const m_Value: usize = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EventServerEndAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
pub mod EventClientAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EntInput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod CNetworkVarChainer {
|
||||
pub const m_PathIndex: usize = 0x20; // ChangeAccessorFieldPathIndex_t
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventClientSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
pub mod EventClientPostOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float64
|
||||
pub const m_flRenderFrameTime: usize = 0x30; // float32
|
||||
pub const m_flRenderFrameTimeUnbounded: usize = 0x34; // float32
|
||||
pub const m_bRenderOnly: usize = 0x38; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod GameTick_t {
|
||||
pub const m_Value: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
pub mod EventClientPollInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventPreDataUpdate_t {
|
||||
pub const m_nCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
pub mod EventClientProcessGameInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventFrameBoundary_t {
|
||||
pub const m_flFrameTime: usize = 0x0; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventAppShutdown_t {
|
||||
pub const m_nDummy0: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventServerSimulate_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
pub mod EventServerPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventProfileStorageAvailable_t {
|
||||
pub const m_nSplitScreenSlot: usize = 0x0; // CSplitScreenSlot
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventPostDataUpdate_t {
|
||||
pub const m_nCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventClientPreSimulate_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventClientPauseSimulate_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventClientProcessNetworking_t {
|
||||
pub const m_nTickCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 4
|
||||
pub mod EventAdvanceTick_t {
|
||||
pub const m_nCurrentTick: usize = 0x30; // int32
|
||||
pub const m_nCurrentTickThisFrame: usize = 0x34; // int32
|
||||
pub const m_nTotalTicksThisFrame: usize = 0x38; // int32
|
||||
pub const m_nTotalTicks: usize = 0x3C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EventSplitScreenStateChanged_t {
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
pub mod EventClientPostAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod CVariantDefaultAllocator {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EventModInitialized_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
pub mod EventClientPreOutput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRenderTime: usize = 0x28; // float64
|
||||
pub const m_flRenderFrameTime: usize = 0x30; // float64
|
||||
pub const m_flRenderFrameTimeUnbounded: usize = 0x38; // float64
|
||||
pub const m_flRealTime: usize = 0x40; // float32
|
||||
pub const m_bRenderOnly: usize = 0x44; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod EventClientFrameSimulate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flFrameTime: usize = 0x2C; // float32
|
||||
pub const m_bScheduleSendTickPacket: usize = 0x30; // bool
|
||||
}
|
||||
// Parent: EventAdvanceTick_t
|
||||
// Field count: 0
|
||||
pub mod EventServerAdvanceTick_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 8
|
||||
pub mod EventSetTime_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_nClientOutputFrames: usize = 0x28; // int32
|
||||
pub const m_flRealTime: usize = 0x30; // float64
|
||||
pub const m_flRenderTime: usize = 0x38; // float64
|
||||
pub const m_flRenderFrameTime: usize = 0x40; // float64
|
||||
pub const m_flRenderFrameTimeUnbounded: usize = 0x48; // float64
|
||||
pub const m_flRenderFrameTimeUnscaled: usize = 0x50; // float64
|
||||
pub const m_flTickRemainder: usize = 0x58; // float64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EntOutput_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
pub mod EventSimulate_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_bFirstTick: usize = 0x28; // bool
|
||||
pub const m_bLastTick: usize = 0x29; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod EventClientAdvanceNonRenderedFrame_t {
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventServerProcessNetworking_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
pub mod CEmptyEntityInstance {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
pub mod EntComponentInfo_t {
|
||||
pub const m_pName: usize = 0x0; // char*
|
||||
pub const m_pCPPClassname: usize = 0x8; // char*
|
||||
pub const m_pNetworkDataReferencedDescription: usize = 0x10; // char*
|
||||
pub const m_pNetworkDataReferencedPtrPropDescription: usize = 0x18; // char*
|
||||
pub const m_nRuntimeIndex: usize = 0x20; // int32
|
||||
pub const m_nFlags: usize = 0x24; // uint32
|
||||
pub const m_pBaseClassComponentHelper: usize = 0x60; // CEntityComponentHelper*
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod EngineLoopState_t {
|
||||
pub const m_nPlatWindowWidth: usize = 0x18; // int32
|
||||
pub const m_nPlatWindowHeight: usize = 0x1C; // int32
|
||||
pub const m_nRenderWidth: usize = 0x20; // int32
|
||||
pub const m_nRenderHeight: usize = 0x24; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod EventClientPollNetworking_t {
|
||||
pub const m_nTickCount: usize = 0x0; // int32
|
||||
}
|
||||
// Parent: EventPostAdvanceTick_t
|
||||
// Field count: 0
|
||||
pub mod EventServerBeginAsyncPostTickWork_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod EventClientProcessInput_t {
|
||||
pub const m_LoopState: usize = 0x0; // EngineLoopState_t
|
||||
pub const m_flRealTime: usize = 0x28; // float32
|
||||
pub const m_flTickInterval: usize = 0x2C; // float32
|
||||
pub const m_flTickStartTime: usize = 0x30; // float64
|
||||
}
|
||||
// Parent: EventSimulate_t
|
||||
// Field count: 0
|
||||
pub mod EventServerPollNetworking_t {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
public static class HostDll {
|
||||
// Parent: CAnimScriptBase
|
||||
// Field count: 1
|
||||
public static class EmptyTestScript {
|
||||
public const nint m_hTest = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class CAnimScriptBase {
|
||||
public const nint m_bIsValid = 0x8; // bool
|
||||
}
|
||||
}
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
namespace host_dll {
|
||||
// Parent: CAnimScriptBase
|
||||
// Field count: 1
|
||||
namespace EmptyTestScript {
|
||||
constexpr std::ptrdiff_t m_hTest = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace CAnimScriptBase {
|
||||
constexpr std::ptrdiff_t m_bIsValid = 0x8; // bool
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
{
|
||||
"host.dll": {
|
||||
"classes": {
|
||||
"CAnimScriptBase": {
|
||||
"fields": {
|
||||
"m_bIsValid": 8
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"EmptyTestScript": {
|
||||
"fields": {
|
||||
"m_hTest": 16
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": "CAnimScriptBase"
|
||||
}
|
||||
},
|
||||
"enums": {}
|
||||
}
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: host.dll
|
||||
// Class count: 2
|
||||
// Enum count: 0
|
||||
pub mod host_dll {
|
||||
// Parent: CAnimScriptBase
|
||||
// Field count: 1
|
||||
pub mod EmptyTestScript {
|
||||
pub const m_hTest: usize = 0x10; // CAnimScriptParam<float32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod CAnimScriptBase {
|
||||
pub const m_bIsValid: usize = 0x8; // bool
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"build_number": 14074,
|
||||
"timestamp": "2025-04-02T01:38:06.172164600+00:00"
|
||||
}
|
@ -1,235 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Interfaces {
|
||||
// Module: animationsystem.dll
|
||||
public static class AnimationsystemDll {
|
||||
public const nint AnimationSystemUtils_001 = 0x60FE08;
|
||||
public const nint AnimationSystem_001 = 0x607D30;
|
||||
}
|
||||
// Module: client.dll
|
||||
public static class ClientDll {
|
||||
public const nint ClientToolsInfo_001 = 0x186BE40;
|
||||
public const nint EmptyWorldService001_Client = 0x1828090;
|
||||
public const nint GameClientExports001 = 0x1868AF8;
|
||||
public const nint LegacyGameUI001 = 0x18896A0;
|
||||
public const nint Source2Client002 = 0x1A827A0;
|
||||
public const nint Source2ClientConfig001 = 0x1A1B370;
|
||||
public const nint Source2ClientPrediction001 = 0x1873ED0;
|
||||
public const nint Source2ClientUI001 = 0x1887A70;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
public static class Engine2Dll {
|
||||
public const nint BenchmarkService001 = 0x546D30;
|
||||
public const nint BugService001 = 0x5DFCC0;
|
||||
public const nint ClientServerEngineLoopService_001 = 0x547A50;
|
||||
public const nint EngineGameUI001 = 0x544B90;
|
||||
public const nint EngineServiceMgr001 = 0x620BA0;
|
||||
public const nint GameEventSystemClientV001 = 0x620EC0;
|
||||
public const nint GameEventSystemServerV001 = 0x621000;
|
||||
public const nint GameResourceServiceClientV001 = 0x546E30;
|
||||
public const nint GameResourceServiceServerV001 = 0x546E90;
|
||||
public const nint GameUIService_001 = 0x5DFFC0;
|
||||
public const nint HostStateMgr001 = 0x547940;
|
||||
public const nint INETSUPPORT_001 = 0x540060;
|
||||
public const nint InputService_001 = 0x5E02D0;
|
||||
public const nint KeyValueCache001 = 0x5479F0;
|
||||
public const nint MapListService_001 = 0x61F320;
|
||||
public const nint NetworkClientService_001 = 0x61F4B0;
|
||||
public const nint NetworkP2PService_001 = 0x547140;
|
||||
public const nint NetworkServerService_001 = 0x61F840;
|
||||
public const nint NetworkService_001 = 0x547290;
|
||||
public const nint RenderService_001 = 0x61FAA0;
|
||||
public const nint ScreenshotService001 = 0x61FD40;
|
||||
public const nint SimpleEngineLoopService_001 = 0x547B60;
|
||||
public const nint SoundService_001 = 0x5472D0;
|
||||
public const nint Source2EngineToClient001 = 0x544210;
|
||||
public const nint Source2EngineToClientStringTable001 = 0x544270;
|
||||
public const nint Source2EngineToServer001 = 0x544308;
|
||||
public const nint Source2EngineToServerStringTable001 = 0x544330;
|
||||
public const nint SplitScreenService_001 = 0x5475B0;
|
||||
public const nint StatsService_001 = 0x620170;
|
||||
public const nint ToolService_001 = 0x547770;
|
||||
public const nint VENGINE_GAMEUIFUNCS_VERSION005 = 0x544C20;
|
||||
public const nint VProfService_001 = 0x5477B0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
public static class FilesystemStdioDll {
|
||||
public const nint VAsyncFileSystem2_001 = 0x20C590;
|
||||
public const nint VFileSystem017 = 0x211840;
|
||||
}
|
||||
// Module: host.dll
|
||||
public static class HostDll {
|
||||
public const nint DebugDrawQueueManager001 = 0x136FE0;
|
||||
public const nint GameModelInfo001 = 0x137020;
|
||||
public const nint GameSystem2HostHook = 0x137060;
|
||||
public const nint HostUtils001 = 0x137090;
|
||||
public const nint PredictionDiffManager001 = 0x1372E0;
|
||||
public const nint SaveRestoreDataVersion001 = 0x137410;
|
||||
public const nint SinglePlayerSharedMemory001 = 0x137440;
|
||||
public const nint Source2Host001 = 0x1374B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
public static class ImemanagerDll {
|
||||
public const nint IMEManager001 = 0x2EA50;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
public static class InputsystemDll {
|
||||
public const nint InputStackSystemVersion001 = 0x36B70;
|
||||
public const nint InputSystemVersion001 = 0x387E0;
|
||||
}
|
||||
// Module: localize.dll
|
||||
public static class LocalizeDll {
|
||||
public const nint Localize_001 = 0x3AAD0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
public static class MatchmakingDll {
|
||||
public const nint GameTypes001 = 0x1A3190;
|
||||
public const nint MATCHFRAMEWORK_001 = 0x1AB360;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
public static class Materialsystem2Dll {
|
||||
public const nint FontManager_001 = 0x114330;
|
||||
public const nint MaterialUtils_001 = 0x10F4C0;
|
||||
public const nint PostProcessingSystem_001 = 0x10F3D0;
|
||||
public const nint TextLayout_001 = 0x10F450;
|
||||
public const nint VMaterialSystem2_001 = 0x113910;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
public static class MeshsystemDll {
|
||||
public const nint MeshSystem001 = 0x19D600;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
public static class NavsystemDll {
|
||||
public const nint NavSystem001 = 0xFB730;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
public static class NetworksystemDll {
|
||||
public const nint FlattenedSerializersVersion001 = 0x244570;
|
||||
public const nint NetworkMessagesVersion001 = 0x2765E0;
|
||||
public const nint NetworkSystemVersion001 = 0x26E300;
|
||||
public const nint SerializedEntitiesVersion001 = 0x26E3F0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
public static class PanoramaDll {
|
||||
public const nint PanoramaUIEngine001 = 0x4E9250;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
public static class PanoramaTextPangoDll {
|
||||
public const nint PanoramaTextServices001 = 0x2B38E0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
public static class PanoramauiclientDll {
|
||||
public const nint PanoramaUIClient001 = 0x28E840;
|
||||
}
|
||||
// Module: particles.dll
|
||||
public static class ParticlesDll {
|
||||
public const nint ParticleSystemMgr003 = 0x629C70;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
public static class PulseSystemDll {
|
||||
public const nint IPulseSystem_001 = 0x17D990;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
public static class Rendersystemdx11Dll {
|
||||
public const nint RenderDeviceMgr001 = 0x3EE1F0;
|
||||
public const nint RenderUtils_001 = 0x3EEA58;
|
||||
public const nint VRenderDeviceMgrBackdoor001 = 0x3EE290;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
public static class ResourcesystemDll {
|
||||
public const nint ResourceSystem013 = 0x72A40;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
public static class ScenefilecacheDll {
|
||||
public const nint ResponseRulesCache001 = 0x720F0;
|
||||
public const nint SceneFileCache002 = 0x72260;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
public static class ScenesystemDll {
|
||||
public const nint RenderingPipelines_001 = 0x5CEB10;
|
||||
public const nint SceneSystem_002 = 0x7ADFF0;
|
||||
public const nint SceneUtils_001 = 0x5CF360;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
public static class SchemasystemDll {
|
||||
public const nint SchemaSystem_001 = 0x616E0;
|
||||
}
|
||||
// Module: server.dll
|
||||
public static class ServerDll {
|
||||
public const nint EmptyWorldService001_Server = 0x1364D50;
|
||||
public const nint EntitySubclassUtilsV001 = 0x13153E0;
|
||||
public const nint NavGameTest001 = 0x1403E08;
|
||||
public const nint ServerToolsInfo_001 = 0x13B9738;
|
||||
public const nint Source2GameClients001 = 0x13B3600;
|
||||
public const nint Source2GameDirector001 = 0x14E73A0;
|
||||
public const nint Source2GameEntities001 = 0x13B9660;
|
||||
public const nint Source2Server001 = 0x13B94D0;
|
||||
public const nint Source2ServerConfig001 = 0x15B1CD8;
|
||||
public const nint customnavsystem001 = 0x12F9B58;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
public static class SoundsystemDll {
|
||||
public const nint SoundOpSystem001 = 0x3A1C50;
|
||||
public const nint SoundOpSystemEdit001 = 0x3A1B20;
|
||||
public const nint SoundSystem001 = 0x3A15F0;
|
||||
public const nint VMixEditTool001 = 0x48289C6A;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
public static class SteamaudioDll {
|
||||
public const nint SteamAudio001 = 0x2139F0;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
public static class Steamclient64Dll {
|
||||
public static readonly nint CLIENTENGINE_INTERFACE_VERSION005 = unchecked((nint)0xFFFFFFFF8BB038DA);
|
||||
public const nint IVALIDATE001 = 0x15246E8;
|
||||
public const nint SteamClient006 = 0x1521E10;
|
||||
public const nint SteamClient007 = 0x1521E18;
|
||||
public const nint SteamClient008 = 0x1521E20;
|
||||
public const nint SteamClient009 = 0x1521E28;
|
||||
public const nint SteamClient010 = 0x1521E30;
|
||||
public const nint SteamClient011 = 0x1521E38;
|
||||
public const nint SteamClient012 = 0x1521E40;
|
||||
public const nint SteamClient013 = 0x1521E48;
|
||||
public const nint SteamClient014 = 0x1521E50;
|
||||
public const nint SteamClient015 = 0x1521E58;
|
||||
public const nint SteamClient016 = 0x1521E60;
|
||||
public const nint SteamClient017 = 0x1521E68;
|
||||
public const nint SteamClient018 = 0x1521E70;
|
||||
public const nint SteamClient019 = 0x1521E78;
|
||||
public const nint SteamClient020 = 0x1521E80;
|
||||
public const nint SteamClient021 = 0x1521E88;
|
||||
public const nint SteamClient022 = 0x1521E90;
|
||||
public const nint p2pvoice002 = 0x14E297F;
|
||||
public const nint p2pvoicesingleton002 = 0x14FF0E0;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
public static class Tier0Dll {
|
||||
public const nint TestScriptMgr001 = 0x37FA70;
|
||||
public const nint VEngineCvar007 = 0x38E4B0;
|
||||
public const nint VProcessUtils002 = 0x37F980;
|
||||
public const nint VStringTokenSystem001 = 0x3A6F00;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
public static class V8systemDll {
|
||||
public const nint Source2V8System001 = 0x2C480;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
public static class Vphysics2Dll {
|
||||
public const nint VPhysics2_Handle_Interface_001 = 0x391F50;
|
||||
public const nint VPhysics2_Interface_001 = 0x391F90;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
public static class VscriptDll {
|
||||
public const nint VScriptManager010 = 0x128600;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
public static class VstdlibS64Dll {
|
||||
public const nint IVALIDATE001 = 0x6A990;
|
||||
public const nint VEngineCvar002 = 0x69070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
public static class WorldrendererDll {
|
||||
public const nint WorldRendererMgr001 = 0x161D80;
|
||||
}
|
||||
}
|
@ -1,241 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace interfaces {
|
||||
// Module: animationsystem.dll
|
||||
namespace animationsystem_dll {
|
||||
constexpr std::ptrdiff_t AnimationSystemUtils_001 = 0x60FE08;
|
||||
constexpr std::ptrdiff_t AnimationSystem_001 = 0x607D30;
|
||||
}
|
||||
// Module: client.dll
|
||||
namespace client_dll {
|
||||
constexpr std::ptrdiff_t ClientToolsInfo_001 = 0x186BE40;
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Client = 0x1828090;
|
||||
constexpr std::ptrdiff_t GameClientExports001 = 0x1868AF8;
|
||||
constexpr std::ptrdiff_t LegacyGameUI001 = 0x18896A0;
|
||||
constexpr std::ptrdiff_t Source2Client002 = 0x1A827A0;
|
||||
constexpr std::ptrdiff_t Source2ClientConfig001 = 0x1A1B370;
|
||||
constexpr std::ptrdiff_t Source2ClientPrediction001 = 0x1873ED0;
|
||||
constexpr std::ptrdiff_t Source2ClientUI001 = 0x1887A70;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
namespace engine2_dll {
|
||||
constexpr std::ptrdiff_t BenchmarkService001 = 0x546D30;
|
||||
constexpr std::ptrdiff_t BugService001 = 0x5DFCC0;
|
||||
constexpr std::ptrdiff_t ClientServerEngineLoopService_001 = 0x547A50;
|
||||
constexpr std::ptrdiff_t EngineGameUI001 = 0x544B90;
|
||||
constexpr std::ptrdiff_t EngineServiceMgr001 = 0x620BA0;
|
||||
constexpr std::ptrdiff_t GameEventSystemClientV001 = 0x620EC0;
|
||||
constexpr std::ptrdiff_t GameEventSystemServerV001 = 0x621000;
|
||||
constexpr std::ptrdiff_t GameResourceServiceClientV001 = 0x546E30;
|
||||
constexpr std::ptrdiff_t GameResourceServiceServerV001 = 0x546E90;
|
||||
constexpr std::ptrdiff_t GameUIService_001 = 0x5DFFC0;
|
||||
constexpr std::ptrdiff_t HostStateMgr001 = 0x547940;
|
||||
constexpr std::ptrdiff_t INETSUPPORT_001 = 0x540060;
|
||||
constexpr std::ptrdiff_t InputService_001 = 0x5E02D0;
|
||||
constexpr std::ptrdiff_t KeyValueCache001 = 0x5479F0;
|
||||
constexpr std::ptrdiff_t MapListService_001 = 0x61F320;
|
||||
constexpr std::ptrdiff_t NetworkClientService_001 = 0x61F4B0;
|
||||
constexpr std::ptrdiff_t NetworkP2PService_001 = 0x547140;
|
||||
constexpr std::ptrdiff_t NetworkServerService_001 = 0x61F840;
|
||||
constexpr std::ptrdiff_t NetworkService_001 = 0x547290;
|
||||
constexpr std::ptrdiff_t RenderService_001 = 0x61FAA0;
|
||||
constexpr std::ptrdiff_t ScreenshotService001 = 0x61FD40;
|
||||
constexpr std::ptrdiff_t SimpleEngineLoopService_001 = 0x547B60;
|
||||
constexpr std::ptrdiff_t SoundService_001 = 0x5472D0;
|
||||
constexpr std::ptrdiff_t Source2EngineToClient001 = 0x544210;
|
||||
constexpr std::ptrdiff_t Source2EngineToClientStringTable001 = 0x544270;
|
||||
constexpr std::ptrdiff_t Source2EngineToServer001 = 0x544308;
|
||||
constexpr std::ptrdiff_t Source2EngineToServerStringTable001 = 0x544330;
|
||||
constexpr std::ptrdiff_t SplitScreenService_001 = 0x5475B0;
|
||||
constexpr std::ptrdiff_t StatsService_001 = 0x620170;
|
||||
constexpr std::ptrdiff_t ToolService_001 = 0x547770;
|
||||
constexpr std::ptrdiff_t VENGINE_GAMEUIFUNCS_VERSION005 = 0x544C20;
|
||||
constexpr std::ptrdiff_t VProfService_001 = 0x5477B0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
namespace filesystem_stdio_dll {
|
||||
constexpr std::ptrdiff_t VAsyncFileSystem2_001 = 0x20C590;
|
||||
constexpr std::ptrdiff_t VFileSystem017 = 0x211840;
|
||||
}
|
||||
// Module: host.dll
|
||||
namespace host_dll {
|
||||
constexpr std::ptrdiff_t DebugDrawQueueManager001 = 0x136FE0;
|
||||
constexpr std::ptrdiff_t GameModelInfo001 = 0x137020;
|
||||
constexpr std::ptrdiff_t GameSystem2HostHook = 0x137060;
|
||||
constexpr std::ptrdiff_t HostUtils001 = 0x137090;
|
||||
constexpr std::ptrdiff_t PredictionDiffManager001 = 0x1372E0;
|
||||
constexpr std::ptrdiff_t SaveRestoreDataVersion001 = 0x137410;
|
||||
constexpr std::ptrdiff_t SinglePlayerSharedMemory001 = 0x137440;
|
||||
constexpr std::ptrdiff_t Source2Host001 = 0x1374B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
namespace imemanager_dll {
|
||||
constexpr std::ptrdiff_t IMEManager001 = 0x2EA50;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
namespace inputsystem_dll {
|
||||
constexpr std::ptrdiff_t InputStackSystemVersion001 = 0x36B70;
|
||||
constexpr std::ptrdiff_t InputSystemVersion001 = 0x387E0;
|
||||
}
|
||||
// Module: localize.dll
|
||||
namespace localize_dll {
|
||||
constexpr std::ptrdiff_t Localize_001 = 0x3AAD0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
namespace matchmaking_dll {
|
||||
constexpr std::ptrdiff_t GameTypes001 = 0x1A3190;
|
||||
constexpr std::ptrdiff_t MATCHFRAMEWORK_001 = 0x1AB360;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
namespace materialsystem2_dll {
|
||||
constexpr std::ptrdiff_t FontManager_001 = 0x114330;
|
||||
constexpr std::ptrdiff_t MaterialUtils_001 = 0x10F4C0;
|
||||
constexpr std::ptrdiff_t PostProcessingSystem_001 = 0x10F3D0;
|
||||
constexpr std::ptrdiff_t TextLayout_001 = 0x10F450;
|
||||
constexpr std::ptrdiff_t VMaterialSystem2_001 = 0x113910;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
namespace meshsystem_dll {
|
||||
constexpr std::ptrdiff_t MeshSystem001 = 0x19D600;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
namespace navsystem_dll {
|
||||
constexpr std::ptrdiff_t NavSystem001 = 0xFB730;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
namespace networksystem_dll {
|
||||
constexpr std::ptrdiff_t FlattenedSerializersVersion001 = 0x244570;
|
||||
constexpr std::ptrdiff_t NetworkMessagesVersion001 = 0x2765E0;
|
||||
constexpr std::ptrdiff_t NetworkSystemVersion001 = 0x26E300;
|
||||
constexpr std::ptrdiff_t SerializedEntitiesVersion001 = 0x26E3F0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
namespace panorama_dll {
|
||||
constexpr std::ptrdiff_t PanoramaUIEngine001 = 0x4E9250;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
namespace panorama_text_pango_dll {
|
||||
constexpr std::ptrdiff_t PanoramaTextServices001 = 0x2B38E0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
namespace panoramauiclient_dll {
|
||||
constexpr std::ptrdiff_t PanoramaUIClient001 = 0x28E840;
|
||||
}
|
||||
// Module: particles.dll
|
||||
namespace particles_dll {
|
||||
constexpr std::ptrdiff_t ParticleSystemMgr003 = 0x629C70;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
namespace pulse_system_dll {
|
||||
constexpr std::ptrdiff_t IPulseSystem_001 = 0x17D990;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
namespace rendersystemdx11_dll {
|
||||
constexpr std::ptrdiff_t RenderDeviceMgr001 = 0x3EE1F0;
|
||||
constexpr std::ptrdiff_t RenderUtils_001 = 0x3EEA58;
|
||||
constexpr std::ptrdiff_t VRenderDeviceMgrBackdoor001 = 0x3EE290;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
namespace resourcesystem_dll {
|
||||
constexpr std::ptrdiff_t ResourceSystem013 = 0x72A40;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
namespace scenefilecache_dll {
|
||||
constexpr std::ptrdiff_t ResponseRulesCache001 = 0x720F0;
|
||||
constexpr std::ptrdiff_t SceneFileCache002 = 0x72260;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
namespace scenesystem_dll {
|
||||
constexpr std::ptrdiff_t RenderingPipelines_001 = 0x5CEB10;
|
||||
constexpr std::ptrdiff_t SceneSystem_002 = 0x7ADFF0;
|
||||
constexpr std::ptrdiff_t SceneUtils_001 = 0x5CF360;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
namespace schemasystem_dll {
|
||||
constexpr std::ptrdiff_t SchemaSystem_001 = 0x616E0;
|
||||
}
|
||||
// Module: server.dll
|
||||
namespace server_dll {
|
||||
constexpr std::ptrdiff_t EmptyWorldService001_Server = 0x1364D50;
|
||||
constexpr std::ptrdiff_t EntitySubclassUtilsV001 = 0x13153E0;
|
||||
constexpr std::ptrdiff_t NavGameTest001 = 0x1403E08;
|
||||
constexpr std::ptrdiff_t ServerToolsInfo_001 = 0x13B9738;
|
||||
constexpr std::ptrdiff_t Source2GameClients001 = 0x13B3600;
|
||||
constexpr std::ptrdiff_t Source2GameDirector001 = 0x14E73A0;
|
||||
constexpr std::ptrdiff_t Source2GameEntities001 = 0x13B9660;
|
||||
constexpr std::ptrdiff_t Source2Server001 = 0x13B94D0;
|
||||
constexpr std::ptrdiff_t Source2ServerConfig001 = 0x15B1CD8;
|
||||
constexpr std::ptrdiff_t customnavsystem001 = 0x12F9B58;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
namespace soundsystem_dll {
|
||||
constexpr std::ptrdiff_t SoundOpSystem001 = 0x3A1C50;
|
||||
constexpr std::ptrdiff_t SoundOpSystemEdit001 = 0x3A1B20;
|
||||
constexpr std::ptrdiff_t SoundSystem001 = 0x3A15F0;
|
||||
constexpr std::ptrdiff_t VMixEditTool001 = 0x48289C6A;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
namespace steamaudio_dll {
|
||||
constexpr std::ptrdiff_t SteamAudio001 = 0x2139F0;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
namespace steamclient64_dll {
|
||||
constexpr std::ptrdiff_t CLIENTENGINE_INTERFACE_VERSION005 = 0xFFFFFFFF8BB038DA;
|
||||
constexpr std::ptrdiff_t IVALIDATE001 = 0x15246E8;
|
||||
constexpr std::ptrdiff_t SteamClient006 = 0x1521E10;
|
||||
constexpr std::ptrdiff_t SteamClient007 = 0x1521E18;
|
||||
constexpr std::ptrdiff_t SteamClient008 = 0x1521E20;
|
||||
constexpr std::ptrdiff_t SteamClient009 = 0x1521E28;
|
||||
constexpr std::ptrdiff_t SteamClient010 = 0x1521E30;
|
||||
constexpr std::ptrdiff_t SteamClient011 = 0x1521E38;
|
||||
constexpr std::ptrdiff_t SteamClient012 = 0x1521E40;
|
||||
constexpr std::ptrdiff_t SteamClient013 = 0x1521E48;
|
||||
constexpr std::ptrdiff_t SteamClient014 = 0x1521E50;
|
||||
constexpr std::ptrdiff_t SteamClient015 = 0x1521E58;
|
||||
constexpr std::ptrdiff_t SteamClient016 = 0x1521E60;
|
||||
constexpr std::ptrdiff_t SteamClient017 = 0x1521E68;
|
||||
constexpr std::ptrdiff_t SteamClient018 = 0x1521E70;
|
||||
constexpr std::ptrdiff_t SteamClient019 = 0x1521E78;
|
||||
constexpr std::ptrdiff_t SteamClient020 = 0x1521E80;
|
||||
constexpr std::ptrdiff_t SteamClient021 = 0x1521E88;
|
||||
constexpr std::ptrdiff_t SteamClient022 = 0x1521E90;
|
||||
constexpr std::ptrdiff_t p2pvoice002 = 0x14E297F;
|
||||
constexpr std::ptrdiff_t p2pvoicesingleton002 = 0x14FF0E0;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
namespace tier0_dll {
|
||||
constexpr std::ptrdiff_t TestScriptMgr001 = 0x37FA70;
|
||||
constexpr std::ptrdiff_t VEngineCvar007 = 0x38E4B0;
|
||||
constexpr std::ptrdiff_t VProcessUtils002 = 0x37F980;
|
||||
constexpr std::ptrdiff_t VStringTokenSystem001 = 0x3A6F00;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
namespace v8system_dll {
|
||||
constexpr std::ptrdiff_t Source2V8System001 = 0x2C480;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
namespace vphysics2_dll {
|
||||
constexpr std::ptrdiff_t VPhysics2_Handle_Interface_001 = 0x391F50;
|
||||
constexpr std::ptrdiff_t VPhysics2_Interface_001 = 0x391F90;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
namespace vscript_dll {
|
||||
constexpr std::ptrdiff_t VScriptManager010 = 0x128600;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
namespace vstdlib_s64_dll {
|
||||
constexpr std::ptrdiff_t IVALIDATE001 = 0x6A990;
|
||||
constexpr std::ptrdiff_t VEngineCvar002 = 0x69070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
namespace worldrenderer_dll {
|
||||
constexpr std::ptrdiff_t WorldRendererMgr001 = 0x161D80;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,199 +0,0 @@
|
||||
{
|
||||
"animationsystem.dll": {
|
||||
"AnimationSystemUtils_001": 6356488,
|
||||
"AnimationSystem_001": 6323504
|
||||
},
|
||||
"client.dll": {
|
||||
"ClientToolsInfo_001": 25607744,
|
||||
"EmptyWorldService001_Client": 25329808,
|
||||
"GameClientExports001": 25594616,
|
||||
"LegacyGameUI001": 25728672,
|
||||
"Source2Client002": 27797408,
|
||||
"Source2ClientConfig001": 27374448,
|
||||
"Source2ClientPrediction001": 25640656,
|
||||
"Source2ClientUI001": 25721456
|
||||
},
|
||||
"engine2.dll": {
|
||||
"BenchmarkService001": 5532976,
|
||||
"BugService001": 6159552,
|
||||
"ClientServerEngineLoopService_001": 5536336,
|
||||
"EngineGameUI001": 5524368,
|
||||
"EngineServiceMgr001": 6425504,
|
||||
"GameEventSystemClientV001": 6426304,
|
||||
"GameEventSystemServerV001": 6426624,
|
||||
"GameResourceServiceClientV001": 5533232,
|
||||
"GameResourceServiceServerV001": 5533328,
|
||||
"GameUIService_001": 6160320,
|
||||
"HostStateMgr001": 5536064,
|
||||
"INETSUPPORT_001": 5505120,
|
||||
"InputService_001": 6161104,
|
||||
"KeyValueCache001": 5536240,
|
||||
"MapListService_001": 6419232,
|
||||
"NetworkClientService_001": 6419632,
|
||||
"NetworkP2PService_001": 5534016,
|
||||
"NetworkServerService_001": 6420544,
|
||||
"NetworkService_001": 5534352,
|
||||
"RenderService_001": 6421152,
|
||||
"ScreenshotService001": 6421824,
|
||||
"SimpleEngineLoopService_001": 5536608,
|
||||
"SoundService_001": 5534416,
|
||||
"Source2EngineToClient001": 5521936,
|
||||
"Source2EngineToClientStringTable001": 5522032,
|
||||
"Source2EngineToServer001": 5522184,
|
||||
"Source2EngineToServerStringTable001": 5522224,
|
||||
"SplitScreenService_001": 5535152,
|
||||
"StatsService_001": 6422896,
|
||||
"ToolService_001": 5535600,
|
||||
"VENGINE_GAMEUIFUNCS_VERSION005": 5524512,
|
||||
"VProfService_001": 5535664
|
||||
},
|
||||
"filesystem_stdio.dll": {
|
||||
"VAsyncFileSystem2_001": 2147728,
|
||||
"VFileSystem017": 2168896
|
||||
},
|
||||
"host.dll": {
|
||||
"DebugDrawQueueManager001": 1273824,
|
||||
"GameModelInfo001": 1273888,
|
||||
"GameSystem2HostHook": 1273952,
|
||||
"HostUtils001": 1274000,
|
||||
"PredictionDiffManager001": 1274592,
|
||||
"SaveRestoreDataVersion001": 1274896,
|
||||
"SinglePlayerSharedMemory001": 1274944,
|
||||
"Source2Host001": 1275056
|
||||
},
|
||||
"imemanager.dll": {
|
||||
"IMEManager001": 191056
|
||||
},
|
||||
"inputsystem.dll": {
|
||||
"InputStackSystemVersion001": 224112,
|
||||
"InputSystemVersion001": 231392
|
||||
},
|
||||
"localize.dll": {
|
||||
"Localize_001": 240336
|
||||
},
|
||||
"matchmaking.dll": {
|
||||
"GameTypes001": 1716624,
|
||||
"MATCHFRAMEWORK_001": 1749856
|
||||
},
|
||||
"materialsystem2.dll": {
|
||||
"FontManager_001": 1131312,
|
||||
"MaterialUtils_001": 1111232,
|
||||
"PostProcessingSystem_001": 1110992,
|
||||
"TextLayout_001": 1111120,
|
||||
"VMaterialSystem2_001": 1128720
|
||||
},
|
||||
"meshsystem.dll": {
|
||||
"MeshSystem001": 1693184
|
||||
},
|
||||
"navsystem.dll": {
|
||||
"NavSystem001": 1029936
|
||||
},
|
||||
"networksystem.dll": {
|
||||
"FlattenedSerializersVersion001": 2377072,
|
||||
"NetworkMessagesVersion001": 2581984,
|
||||
"NetworkSystemVersion001": 2548480,
|
||||
"SerializedEntitiesVersion001": 2548720
|
||||
},
|
||||
"panorama.dll": {
|
||||
"PanoramaUIEngine001": 5149264
|
||||
},
|
||||
"panorama_text_pango.dll": {
|
||||
"PanoramaTextServices001": 2832608
|
||||
},
|
||||
"panoramauiclient.dll": {
|
||||
"PanoramaUIClient001": 2680896
|
||||
},
|
||||
"particles.dll": {
|
||||
"ParticleSystemMgr003": 6462576
|
||||
},
|
||||
"pulse_system.dll": {
|
||||
"IPulseSystem_001": 1563024
|
||||
},
|
||||
"rendersystemdx11.dll": {
|
||||
"RenderDeviceMgr001": 4121072,
|
||||
"RenderUtils_001": 4123224,
|
||||
"VRenderDeviceMgrBackdoor001": 4121232
|
||||
},
|
||||
"resourcesystem.dll": {
|
||||
"ResourceSystem013": 469568
|
||||
},
|
||||
"scenefilecache.dll": {
|
||||
"ResponseRulesCache001": 467184,
|
||||
"SceneFileCache002": 467552
|
||||
},
|
||||
"scenesystem.dll": {
|
||||
"RenderingPipelines_001": 6089488,
|
||||
"SceneSystem_002": 8052720,
|
||||
"SceneUtils_001": 6091616
|
||||
},
|
||||
"schemasystem.dll": {
|
||||
"SchemaSystem_001": 399072
|
||||
},
|
||||
"server.dll": {
|
||||
"EmptyWorldService001_Server": 20335952,
|
||||
"EntitySubclassUtilsV001": 20009952,
|
||||
"NavGameTest001": 20987400,
|
||||
"ServerToolsInfo_001": 20682552,
|
||||
"Source2GameClients001": 20657664,
|
||||
"Source2GameDirector001": 21918624,
|
||||
"Source2GameEntities001": 20682336,
|
||||
"Source2Server001": 20681936,
|
||||
"Source2ServerConfig001": 22748376,
|
||||
"customnavsystem001": 19897176
|
||||
},
|
||||
"soundsystem.dll": {
|
||||
"SoundOpSystem001": 3808336,
|
||||
"SoundOpSystemEdit001": 3808032,
|
||||
"SoundSystem001": 3806704,
|
||||
"VMixEditTool001": 1210621034
|
||||
},
|
||||
"steamaudio.dll": {
|
||||
"SteamAudio001": 2177520
|
||||
},
|
||||
"steamclient64.dll": {
|
||||
"CLIENTENGINE_INTERFACE_VERSION005": 18446744071758166234,
|
||||
"IVALIDATE001": 22169320,
|
||||
"SteamClient006": 22158864,
|
||||
"SteamClient007": 22158872,
|
||||
"SteamClient008": 22158880,
|
||||
"SteamClient009": 22158888,
|
||||
"SteamClient010": 22158896,
|
||||
"SteamClient011": 22158904,
|
||||
"SteamClient012": 22158912,
|
||||
"SteamClient013": 22158920,
|
||||
"SteamClient014": 22158928,
|
||||
"SteamClient015": 22158936,
|
||||
"SteamClient016": 22158944,
|
||||
"SteamClient017": 22158952,
|
||||
"SteamClient018": 22158960,
|
||||
"SteamClient019": 22158968,
|
||||
"SteamClient020": 22158976,
|
||||
"SteamClient021": 22158984,
|
||||
"SteamClient022": 22158992,
|
||||
"p2pvoice002": 21899647,
|
||||
"p2pvoicesingleton002": 22016224
|
||||
},
|
||||
"tier0.dll": {
|
||||
"TestScriptMgr001": 3668592,
|
||||
"VEngineCvar007": 3728560,
|
||||
"VProcessUtils002": 3668352,
|
||||
"VStringTokenSystem001": 3829504
|
||||
},
|
||||
"v8system.dll": {
|
||||
"Source2V8System001": 181376
|
||||
},
|
||||
"vphysics2.dll": {
|
||||
"VPhysics2_Handle_Interface_001": 3743568,
|
||||
"VPhysics2_Interface_001": 3743632
|
||||
},
|
||||
"vscript.dll": {
|
||||
"VScriptManager010": 1213952
|
||||
},
|
||||
"vstdlib_s64.dll": {
|
||||
"IVALIDATE001": 436624,
|
||||
"VEngineCvar002": 430192
|
||||
},
|
||||
"worldrenderer.dll": {
|
||||
"WorldRendererMgr001": 1449344
|
||||
}
|
||||
}
|
@ -1,239 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod interfaces {
|
||||
// Module: animationsystem.dll
|
||||
pub mod animationsystem_dll {
|
||||
pub const AnimationSystemUtils_001: usize = 0x60FE08;
|
||||
pub const AnimationSystem_001: usize = 0x607D30;
|
||||
}
|
||||
// Module: client.dll
|
||||
pub mod client_dll {
|
||||
pub const ClientToolsInfo_001: usize = 0x186BE40;
|
||||
pub const EmptyWorldService001_Client: usize = 0x1828090;
|
||||
pub const GameClientExports001: usize = 0x1868AF8;
|
||||
pub const LegacyGameUI001: usize = 0x18896A0;
|
||||
pub const Source2Client002: usize = 0x1A827A0;
|
||||
pub const Source2ClientConfig001: usize = 0x1A1B370;
|
||||
pub const Source2ClientPrediction001: usize = 0x1873ED0;
|
||||
pub const Source2ClientUI001: usize = 0x1887A70;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
pub mod engine2_dll {
|
||||
pub const BenchmarkService001: usize = 0x546D30;
|
||||
pub const BugService001: usize = 0x5DFCC0;
|
||||
pub const ClientServerEngineLoopService_001: usize = 0x547A50;
|
||||
pub const EngineGameUI001: usize = 0x544B90;
|
||||
pub const EngineServiceMgr001: usize = 0x620BA0;
|
||||
pub const GameEventSystemClientV001: usize = 0x620EC0;
|
||||
pub const GameEventSystemServerV001: usize = 0x621000;
|
||||
pub const GameResourceServiceClientV001: usize = 0x546E30;
|
||||
pub const GameResourceServiceServerV001: usize = 0x546E90;
|
||||
pub const GameUIService_001: usize = 0x5DFFC0;
|
||||
pub const HostStateMgr001: usize = 0x547940;
|
||||
pub const INETSUPPORT_001: usize = 0x540060;
|
||||
pub const InputService_001: usize = 0x5E02D0;
|
||||
pub const KeyValueCache001: usize = 0x5479F0;
|
||||
pub const MapListService_001: usize = 0x61F320;
|
||||
pub const NetworkClientService_001: usize = 0x61F4B0;
|
||||
pub const NetworkP2PService_001: usize = 0x547140;
|
||||
pub const NetworkServerService_001: usize = 0x61F840;
|
||||
pub const NetworkService_001: usize = 0x547290;
|
||||
pub const RenderService_001: usize = 0x61FAA0;
|
||||
pub const ScreenshotService001: usize = 0x61FD40;
|
||||
pub const SimpleEngineLoopService_001: usize = 0x547B60;
|
||||
pub const SoundService_001: usize = 0x5472D0;
|
||||
pub const Source2EngineToClient001: usize = 0x544210;
|
||||
pub const Source2EngineToClientStringTable001: usize = 0x544270;
|
||||
pub const Source2EngineToServer001: usize = 0x544308;
|
||||
pub const Source2EngineToServerStringTable001: usize = 0x544330;
|
||||
pub const SplitScreenService_001: usize = 0x5475B0;
|
||||
pub const StatsService_001: usize = 0x620170;
|
||||
pub const ToolService_001: usize = 0x547770;
|
||||
pub const VENGINE_GAMEUIFUNCS_VERSION005: usize = 0x544C20;
|
||||
pub const VProfService_001: usize = 0x5477B0;
|
||||
}
|
||||
// Module: filesystem_stdio.dll
|
||||
pub mod filesystem_stdio_dll {
|
||||
pub const VAsyncFileSystem2_001: usize = 0x20C590;
|
||||
pub const VFileSystem017: usize = 0x211840;
|
||||
}
|
||||
// Module: host.dll
|
||||
pub mod host_dll {
|
||||
pub const DebugDrawQueueManager001: usize = 0x136FE0;
|
||||
pub const GameModelInfo001: usize = 0x137020;
|
||||
pub const GameSystem2HostHook: usize = 0x137060;
|
||||
pub const HostUtils001: usize = 0x137090;
|
||||
pub const PredictionDiffManager001: usize = 0x1372E0;
|
||||
pub const SaveRestoreDataVersion001: usize = 0x137410;
|
||||
pub const SinglePlayerSharedMemory001: usize = 0x137440;
|
||||
pub const Source2Host001: usize = 0x1374B0;
|
||||
}
|
||||
// Module: imemanager.dll
|
||||
pub mod imemanager_dll {
|
||||
pub const IMEManager001: usize = 0x2EA50;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
pub mod inputsystem_dll {
|
||||
pub const InputStackSystemVersion001: usize = 0x36B70;
|
||||
pub const InputSystemVersion001: usize = 0x387E0;
|
||||
}
|
||||
// Module: localize.dll
|
||||
pub mod localize_dll {
|
||||
pub const Localize_001: usize = 0x3AAD0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
pub mod matchmaking_dll {
|
||||
pub const GameTypes001: usize = 0x1A3190;
|
||||
pub const MATCHFRAMEWORK_001: usize = 0x1AB360;
|
||||
}
|
||||
// Module: materialsystem2.dll
|
||||
pub mod materialsystem2_dll {
|
||||
pub const FontManager_001: usize = 0x114330;
|
||||
pub const MaterialUtils_001: usize = 0x10F4C0;
|
||||
pub const PostProcessingSystem_001: usize = 0x10F3D0;
|
||||
pub const TextLayout_001: usize = 0x10F450;
|
||||
pub const VMaterialSystem2_001: usize = 0x113910;
|
||||
}
|
||||
// Module: meshsystem.dll
|
||||
pub mod meshsystem_dll {
|
||||
pub const MeshSystem001: usize = 0x19D600;
|
||||
}
|
||||
// Module: navsystem.dll
|
||||
pub mod navsystem_dll {
|
||||
pub const NavSystem001: usize = 0xFB730;
|
||||
}
|
||||
// Module: networksystem.dll
|
||||
pub mod networksystem_dll {
|
||||
pub const FlattenedSerializersVersion001: usize = 0x244570;
|
||||
pub const NetworkMessagesVersion001: usize = 0x2765E0;
|
||||
pub const NetworkSystemVersion001: usize = 0x26E300;
|
||||
pub const SerializedEntitiesVersion001: usize = 0x26E3F0;
|
||||
}
|
||||
// Module: panorama.dll
|
||||
pub mod panorama_dll {
|
||||
pub const PanoramaUIEngine001: usize = 0x4E9250;
|
||||
}
|
||||
// Module: panorama_text_pango.dll
|
||||
pub mod panorama_text_pango_dll {
|
||||
pub const PanoramaTextServices001: usize = 0x2B38E0;
|
||||
}
|
||||
// Module: panoramauiclient.dll
|
||||
pub mod panoramauiclient_dll {
|
||||
pub const PanoramaUIClient001: usize = 0x28E840;
|
||||
}
|
||||
// Module: particles.dll
|
||||
pub mod particles_dll {
|
||||
pub const ParticleSystemMgr003: usize = 0x629C70;
|
||||
}
|
||||
// Module: pulse_system.dll
|
||||
pub mod pulse_system_dll {
|
||||
pub const IPulseSystem_001: usize = 0x17D990;
|
||||
}
|
||||
// Module: rendersystemdx11.dll
|
||||
pub mod rendersystemdx11_dll {
|
||||
pub const RenderDeviceMgr001: usize = 0x3EE1F0;
|
||||
pub const RenderUtils_001: usize = 0x3EEA58;
|
||||
pub const VRenderDeviceMgrBackdoor001: usize = 0x3EE290;
|
||||
}
|
||||
// Module: resourcesystem.dll
|
||||
pub mod resourcesystem_dll {
|
||||
pub const ResourceSystem013: usize = 0x72A40;
|
||||
}
|
||||
// Module: scenefilecache.dll
|
||||
pub mod scenefilecache_dll {
|
||||
pub const ResponseRulesCache001: usize = 0x720F0;
|
||||
pub const SceneFileCache002: usize = 0x72260;
|
||||
}
|
||||
// Module: scenesystem.dll
|
||||
pub mod scenesystem_dll {
|
||||
pub const RenderingPipelines_001: usize = 0x5CEB10;
|
||||
pub const SceneSystem_002: usize = 0x7ADFF0;
|
||||
pub const SceneUtils_001: usize = 0x5CF360;
|
||||
}
|
||||
// Module: schemasystem.dll
|
||||
pub mod schemasystem_dll {
|
||||
pub const SchemaSystem_001: usize = 0x616E0;
|
||||
}
|
||||
// Module: server.dll
|
||||
pub mod server_dll {
|
||||
pub const EmptyWorldService001_Server: usize = 0x1364D50;
|
||||
pub const EntitySubclassUtilsV001: usize = 0x13153E0;
|
||||
pub const NavGameTest001: usize = 0x1403E08;
|
||||
pub const ServerToolsInfo_001: usize = 0x13B9738;
|
||||
pub const Source2GameClients001: usize = 0x13B3600;
|
||||
pub const Source2GameDirector001: usize = 0x14E73A0;
|
||||
pub const Source2GameEntities001: usize = 0x13B9660;
|
||||
pub const Source2Server001: usize = 0x13B94D0;
|
||||
pub const Source2ServerConfig001: usize = 0x15B1CD8;
|
||||
pub const customnavsystem001: usize = 0x12F9B58;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
pub mod soundsystem_dll {
|
||||
pub const SoundOpSystem001: usize = 0x3A1C50;
|
||||
pub const SoundOpSystemEdit001: usize = 0x3A1B20;
|
||||
pub const SoundSystem001: usize = 0x3A15F0;
|
||||
pub const VMixEditTool001: usize = 0x48289C6A;
|
||||
}
|
||||
// Module: steamaudio.dll
|
||||
pub mod steamaudio_dll {
|
||||
pub const SteamAudio001: usize = 0x2139F0;
|
||||
}
|
||||
// Module: steamclient64.dll
|
||||
pub mod steamclient64_dll {
|
||||
pub const CLIENTENGINE_INTERFACE_VERSION005: usize = 0xFFFFFFFF8BB038DA;
|
||||
pub const IVALIDATE001: usize = 0x15246E8;
|
||||
pub const SteamClient006: usize = 0x1521E10;
|
||||
pub const SteamClient007: usize = 0x1521E18;
|
||||
pub const SteamClient008: usize = 0x1521E20;
|
||||
pub const SteamClient009: usize = 0x1521E28;
|
||||
pub const SteamClient010: usize = 0x1521E30;
|
||||
pub const SteamClient011: usize = 0x1521E38;
|
||||
pub const SteamClient012: usize = 0x1521E40;
|
||||
pub const SteamClient013: usize = 0x1521E48;
|
||||
pub const SteamClient014: usize = 0x1521E50;
|
||||
pub const SteamClient015: usize = 0x1521E58;
|
||||
pub const SteamClient016: usize = 0x1521E60;
|
||||
pub const SteamClient017: usize = 0x1521E68;
|
||||
pub const SteamClient018: usize = 0x1521E70;
|
||||
pub const SteamClient019: usize = 0x1521E78;
|
||||
pub const SteamClient020: usize = 0x1521E80;
|
||||
pub const SteamClient021: usize = 0x1521E88;
|
||||
pub const SteamClient022: usize = 0x1521E90;
|
||||
pub const p2pvoice002: usize = 0x14E297F;
|
||||
pub const p2pvoicesingleton002: usize = 0x14FF0E0;
|
||||
}
|
||||
// Module: tier0.dll
|
||||
pub mod tier0_dll {
|
||||
pub const TestScriptMgr001: usize = 0x37FA70;
|
||||
pub const VEngineCvar007: usize = 0x38E4B0;
|
||||
pub const VProcessUtils002: usize = 0x37F980;
|
||||
pub const VStringTokenSystem001: usize = 0x3A6F00;
|
||||
}
|
||||
// Module: v8system.dll
|
||||
pub mod v8system_dll {
|
||||
pub const Source2V8System001: usize = 0x2C480;
|
||||
}
|
||||
// Module: vphysics2.dll
|
||||
pub mod vphysics2_dll {
|
||||
pub const VPhysics2_Handle_Interface_001: usize = 0x391F50;
|
||||
pub const VPhysics2_Interface_001: usize = 0x391F90;
|
||||
}
|
||||
// Module: vscript.dll
|
||||
pub mod vscript_dll {
|
||||
pub const VScriptManager010: usize = 0x128600;
|
||||
}
|
||||
// Module: vstdlib_s64.dll
|
||||
pub mod vstdlib_s64_dll {
|
||||
pub const IVALIDATE001: usize = 0x6A990;
|
||||
pub const VEngineCvar002: usize = 0x69070;
|
||||
}
|
||||
// Module: worldrenderer.dll
|
||||
pub mod worldrenderer_dll {
|
||||
pub const WorldRendererMgr001: usize = 0x161D80;
|
||||
}
|
||||
}
|
||||
}
|
24
output/linux/buttons.cs
Normal file
24
output/linux/buttons.cs
Normal file
@ -0,0 +1,24 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
namespace CS2Dumper {
|
||||
// Module: libclient.so
|
||||
public static class Buttons {
|
||||
public const nint Attack = 0x3736050;
|
||||
public const nint Attack2 = 0x3735FB0;
|
||||
public const nint Back = 0x3735C30;
|
||||
public const nint Duck = 0x3735790;
|
||||
public const nint Forward = 0x3735CD0;
|
||||
public const nint Jump = 0x3735830;
|
||||
public const nint Left = 0x3735B90;
|
||||
public const nint Lookatweapon = 0x3749C50;
|
||||
public const nint Reload = 0x37360F0;
|
||||
public const nint Right = 0x3735AF0;
|
||||
public const nint Showscores = 0x3749D90;
|
||||
public const nint Sprint = 0x3736190;
|
||||
public const nint Turnleft = 0x3735F10;
|
||||
public const nint Turnright = 0x3735E70;
|
||||
public const nint Use = 0x37358D0;
|
||||
public const nint Zoom = 0x3749CF0;
|
||||
}
|
||||
}
|
28
output/linux/buttons.hpp
Normal file
28
output/linux/buttons.hpp
Normal file
@ -0,0 +1,28 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
// Module: libclient.so
|
||||
namespace buttons {
|
||||
constexpr std::ptrdiff_t attack = 0x3736050;
|
||||
constexpr std::ptrdiff_t attack2 = 0x3735FB0;
|
||||
constexpr std::ptrdiff_t back = 0x3735C30;
|
||||
constexpr std::ptrdiff_t duck = 0x3735790;
|
||||
constexpr std::ptrdiff_t forward = 0x3735CD0;
|
||||
constexpr std::ptrdiff_t jump = 0x3735830;
|
||||
constexpr std::ptrdiff_t left = 0x3735B90;
|
||||
constexpr std::ptrdiff_t lookatweapon = 0x3749C50;
|
||||
constexpr std::ptrdiff_t reload = 0x37360F0;
|
||||
constexpr std::ptrdiff_t right = 0x3735AF0;
|
||||
constexpr std::ptrdiff_t showscores = 0x3749D90;
|
||||
constexpr std::ptrdiff_t sprint = 0x3736190;
|
||||
constexpr std::ptrdiff_t turnleft = 0x3735F10;
|
||||
constexpr std::ptrdiff_t turnright = 0x3735E70;
|
||||
constexpr std::ptrdiff_t use = 0x37358D0;
|
||||
constexpr std::ptrdiff_t zoom = 0x3749CF0;
|
||||
}
|
||||
}
|
68
output/linux/buttons.json
Normal file
68
output/linux/buttons.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"buttons": [
|
||||
{
|
||||
"name": "attack",
|
||||
"value": 57892944
|
||||
},
|
||||
{
|
||||
"name": "attack2",
|
||||
"value": 57892784
|
||||
},
|
||||
{
|
||||
"name": "back",
|
||||
"value": 57891888
|
||||
},
|
||||
{
|
||||
"name": "duck",
|
||||
"value": 57890704
|
||||
},
|
||||
{
|
||||
"name": "forward",
|
||||
"value": 57892048
|
||||
},
|
||||
{
|
||||
"name": "jump",
|
||||
"value": 57890864
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"value": 57891728
|
||||
},
|
||||
{
|
||||
"name": "lookatweapon",
|
||||
"value": 57973840
|
||||
},
|
||||
{
|
||||
"name": "reload",
|
||||
"value": 57893104
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"value": 57891568
|
||||
},
|
||||
{
|
||||
"name": "showscores",
|
||||
"value": 57974160
|
||||
},
|
||||
{
|
||||
"name": "sprint",
|
||||
"value": 57893264
|
||||
},
|
||||
{
|
||||
"name": "turnleft",
|
||||
"value": 57892624
|
||||
},
|
||||
{
|
||||
"name": "turnright",
|
||||
"value": 57892464
|
||||
},
|
||||
{
|
||||
"name": "use",
|
||||
"value": 57891024
|
||||
},
|
||||
{
|
||||
"name": "zoom",
|
||||
"value": 57974000
|
||||
}
|
||||
]
|
||||
}
|
24
output/linux/buttons.rs
Normal file
24
output/linux/buttons.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
pub mod cs2_dumper {
|
||||
// Module: libclient.so
|
||||
pub mod buttons {
|
||||
pub const ATTACK: usize = 0x3736050;
|
||||
pub const ATTACK2: usize = 0x3735FB0;
|
||||
pub const BACK: usize = 0x3735C30;
|
||||
pub const DUCK: usize = 0x3735790;
|
||||
pub const FORWARD: usize = 0x3735CD0;
|
||||
pub const JUMP: usize = 0x3735830;
|
||||
pub const LEFT: usize = 0x3735B90;
|
||||
pub const LOOKATWEAPON: usize = 0x3749C50;
|
||||
pub const RELOAD: usize = 0x37360F0;
|
||||
pub const RIGHT: usize = 0x3735AF0;
|
||||
pub const SHOWSCORES: usize = 0x3749D90;
|
||||
pub const SPRINT: usize = 0x3736190;
|
||||
pub const TURNLEFT: usize = 0x3735F10;
|
||||
pub const TURNRIGHT: usize = 0x3735E70;
|
||||
pub const USE: usize = 0x37358D0;
|
||||
pub const ZOOM: usize = 0x3749CF0;
|
||||
}
|
||||
}
|
220
output/linux/interfaces.cs
Normal file
220
output/linux/interfaces.cs
Normal file
@ -0,0 +1,220 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
namespace CS2Dumper.Interfaces {
|
||||
// Module: libanimationsystem.so
|
||||
public static class Libanimationsystem {
|
||||
public const nint AnimationSystemUtils001 = 0x18CA60;
|
||||
public const nint AnimationSystem001 = 0x18C850;
|
||||
}
|
||||
// Module: libclient.so
|
||||
public static class Libclient {
|
||||
public const nint ClientToolsInfo001 = 0xD54880;
|
||||
public const nint EmptyWorldService001Client = 0xA47F30;
|
||||
public const nint GameClientExports001 = 0xD544D0;
|
||||
public const nint LegacyGameUi001 = 0xF200B0;
|
||||
public const nint Source2Client002 = 0xD54540;
|
||||
public const nint Source2ClientConfig001 = 0xA2BB50;
|
||||
public const nint Source2ClientPrediction001 = 0xDE3A80;
|
||||
public const nint Source2ClientUi001 = 0xEDEAC0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
public static class Libengine2 {
|
||||
public const nint BenchmarkService001 = 0x1E5FA0;
|
||||
public const nint BugService001 = 0x1E21A0;
|
||||
public const nint ClientServerEngineLoopService001 = 0x1B3AF0;
|
||||
public const nint EngineGameUi001 = 0x375580;
|
||||
public const nint EngineServiceMgr001 = 0x1A3A60;
|
||||
public const nint GameEventSystemClientV001 = 0x1A8AD0;
|
||||
public const nint GameEventSystemServerV001 = 0x1A8AE0;
|
||||
public const nint GameResourceServiceClientV001 = 0x1E78D0;
|
||||
public const nint GameResourceServiceServerV001 = 0x1E78E0;
|
||||
public const nint GameUiService001 = 0x1EF410;
|
||||
public const nint HostStateMgr001 = 0x1AE650;
|
||||
public const nint Inetsupport001 = 0x33F2A0;
|
||||
public const nint InputService001 = 0x1F39E0;
|
||||
public const nint KeyValueCache001 = 0x1B0FA0;
|
||||
public const nint MapListService001 = 0x2079E0;
|
||||
public const nint NetworkClientService001 = 0x22E320;
|
||||
public const nint NetworkP2pService001 = 0x244940;
|
||||
public const nint NetworkServerService001 = 0x20BA90;
|
||||
public const nint NetworkService001 = 0x20B1B0;
|
||||
public const nint RenderService001 = 0x249D00;
|
||||
public const nint ScreenshotService001 = 0x24C8F0;
|
||||
public const nint SimpleEngineLoopService001 = 0x1C87B0;
|
||||
public const nint SoundService001 = 0x250F10;
|
||||
public const nint Source2EngineToClient001 = 0x2C6EE0;
|
||||
public const nint Source2EngineToClientStringTable001 = 0x29E6D0;
|
||||
public const nint Source2EngineToServer001 = 0x2ED890;
|
||||
public const nint Source2EngineToServerStringTable001 = 0x2D0000;
|
||||
public const nint SplitScreenService001 = 0x258290;
|
||||
public const nint StatsService001 = 0x25B9E0;
|
||||
public const nint ToolService001 = 0x260C60;
|
||||
public const nint VengineGameuifuncsVersion005 = 0x375000;
|
||||
public const nint VProfService001 = 0x262410;
|
||||
}
|
||||
// Module: libfilesystem_stdio.so
|
||||
public static class LibfilesystemStdio {
|
||||
public const nint VAsyncFileSystem2001 = 0x80180;
|
||||
public const nint VFileSystem017 = 0x80170;
|
||||
}
|
||||
// Module: libhost.so
|
||||
public static class Libhost {
|
||||
public const nint DebugDrawQueueManager001 = 0xC2C70;
|
||||
public const nint GameModelInfo001 = 0xBD8F0;
|
||||
public const nint GameSystem2HostHook = 0xBE030;
|
||||
public const nint HostUtils001 = 0xBE4B0;
|
||||
public const nint PredictionDiffManager001 = 0xBF440;
|
||||
public const nint SaveRestoreDataVersion001 = 0xC17B0;
|
||||
public const nint SinglePlayerSharedMemory001 = 0xC1A70;
|
||||
public const nint Source2Host001 = 0xC21D0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
public static class Libinputsystem {
|
||||
public const nint InputStackSystemVersion001 = 0x11840;
|
||||
public const nint InputSystemVersion001 = 0x12D30;
|
||||
}
|
||||
// Module: liblocalize.so
|
||||
public static class Liblocalize {
|
||||
public const nint Localize001 = 0x1DB00;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
public static class Libmatchmaking {
|
||||
public const nint GameTypes001 = 0x12FF60;
|
||||
public const nint Matchframework001 = 0x204440;
|
||||
}
|
||||
// Module: libmaterialsystem2.so
|
||||
public static class Libmaterialsystem2 {
|
||||
public const nint FontManager001 = 0x7A340;
|
||||
public const nint MaterialUtils001 = 0x64B80;
|
||||
public const nint PostProcessingSystem001 = 0x89C70;
|
||||
public const nint TextLayout001 = 0x87200;
|
||||
public const nint VMaterialSystem2001 = 0x2C7A0;
|
||||
}
|
||||
// Module: libmeshsystem.so
|
||||
public static class Libmeshsystem {
|
||||
public const nint MeshSystem001 = 0x94810;
|
||||
}
|
||||
// Module: libnetworksystem.so
|
||||
public static class Libnetworksystem {
|
||||
public const nint FlattenedSerializersVersion001 = 0x159460;
|
||||
public const nint NetworkMessagesVersion001 = 0x180B90;
|
||||
public const nint NetworkSystemVersion001 = 0x1A9CE0;
|
||||
public const nint SerializedEntitiesVersion001 = 0x1C2750;
|
||||
}
|
||||
// Module: libpanorama.so
|
||||
public static class Libpanorama {
|
||||
public const nint PanoramaUiEngine001 = 0x220F80;
|
||||
}
|
||||
// Module: libpanorama_text_pango.so
|
||||
public static class LibpanoramaTextPango {
|
||||
public const nint PanoramaTextServices001 = 0xBC4C0;
|
||||
}
|
||||
// Module: libpanoramauiclient.so
|
||||
public static class Libpanoramauiclient {
|
||||
public const nint PanoramaUiClient001 = 0x10AAC0;
|
||||
}
|
||||
// Module: libparticles.so
|
||||
public static class Libparticles {
|
||||
public const nint ParticleSystemMgr003 = 0x1EBE60;
|
||||
}
|
||||
// Module: libpulse_system.so
|
||||
public static class LibpulseSystem {
|
||||
public const nint IPulseSystem001 = 0x357B0;
|
||||
}
|
||||
// Module: librendersystemvulkan.so
|
||||
public static class Librendersystemvulkan {
|
||||
public const nint RenderDeviceMgr001 = 0x185100;
|
||||
public const nint RenderUtils001 = 0x1019A0;
|
||||
}
|
||||
// Module: libresourcesystem.so
|
||||
public static class Libresourcesystem {
|
||||
public const nint ResourceSystem013 = 0x30A90;
|
||||
}
|
||||
// Module: libscenefilecache.so
|
||||
public static class Libscenefilecache {
|
||||
public const nint ResponseRulesCache001 = 0x88E40;
|
||||
public const nint SceneFileCache002 = 0x85B10;
|
||||
}
|
||||
// Module: libscenesystem.so
|
||||
public static class Libscenesystem {
|
||||
public const nint RenderingPipelines001 = 0x120E20;
|
||||
public const nint SceneSystem002 = 0x164300;
|
||||
public const nint SceneUtils001 = 0x1E0A70;
|
||||
}
|
||||
// Module: libschemasystem.so
|
||||
public static class Libschemasystem {
|
||||
public const nint SchemaSystem001 = 0x211F0;
|
||||
}
|
||||
// Module: libserver.so
|
||||
public static class Libserver {
|
||||
public const nint EmptyWorldService001Server = 0xB83320;
|
||||
public const nint EntitySubclassUtilsV001 = 0x8611F0;
|
||||
public const nint NavGameTest001 = 0x1094010;
|
||||
public const nint ServerToolsInfo001 = 0xE72080;
|
||||
public const nint Source2GameClients001 = 0xE72010;
|
||||
public const nint Source2GameDirector001 = 0x6C41A0;
|
||||
public const nint Source2GameEntities001 = 0xE72000;
|
||||
public const nint Source2Server001 = 0xE71CF0;
|
||||
public const nint Source2ServerConfig001 = 0xB0EED0;
|
||||
public const nint Customnavsystem001 = 0x7F8230;
|
||||
}
|
||||
// Module: libsoundsystem.so
|
||||
public static class Libsoundsystem {
|
||||
public const nint SoundOpSystem001 = 0x155E80;
|
||||
public const nint SoundOpSystemEdit001 = 0xAD350;
|
||||
public const nint SoundSystem001 = 0x1C4920;
|
||||
public const nint VMixEditTool001 = 0x1F4340;
|
||||
}
|
||||
// Module: libsteamaudio.so
|
||||
public static class Libsteamaudio {
|
||||
public const nint SteamAudio001 = 0x31590;
|
||||
}
|
||||
// Module: libtier0.so
|
||||
public static class Libtier0 {
|
||||
public const nint TestScriptMgr001 = 0x1BE8F0;
|
||||
public const nint VEngineCvar007 = 0xF1370;
|
||||
public const nint VProcessUtils002 = 0x19C370;
|
||||
public const nint VStringTokenSystem001 = 0x1EA8D0;
|
||||
}
|
||||
// Module: libv8system.so
|
||||
public static class Libv8system {
|
||||
public const nint Source2V8System001 = 0x1B630;
|
||||
}
|
||||
// Module: libvphysics2.so
|
||||
public static class Libvphysics2 {
|
||||
public const nint VPhysics2HandleInterface001 = 0xC1FD0;
|
||||
public const nint VPhysics2Interface001 = 0xC1BC0;
|
||||
}
|
||||
// Module: libvscript.so
|
||||
public static class Libvscript {
|
||||
public const nint VScriptManager010 = 0x26230;
|
||||
}
|
||||
// Module: libworldrenderer.so
|
||||
public static class Libworldrenderer {
|
||||
public const nint WorldRendererMgr001 = 0x982B0;
|
||||
}
|
||||
// Module: steamclient.so
|
||||
public static class Steamclient {
|
||||
public const nint ClientengineInterfaceVersion005 = 0x11260D0;
|
||||
public const nint Ivalidate001 = 0x1122650;
|
||||
public const nint SteamClient006 = 0xDDA7A0;
|
||||
public const nint SteamClient007 = 0xDDA7B0;
|
||||
public const nint SteamClient008 = 0xDDA7C0;
|
||||
public const nint SteamClient009 = 0xDDA7D0;
|
||||
public const nint SteamClient010 = 0xDDA7E0;
|
||||
public const nint SteamClient011 = 0xDDA7F0;
|
||||
public const nint SteamClient012 = 0xDDA800;
|
||||
public const nint SteamClient013 = 0xDDA810;
|
||||
public const nint SteamClient014 = 0xDDA820;
|
||||
public const nint SteamClient015 = 0xDDA830;
|
||||
public const nint SteamClient016 = 0xDDA860;
|
||||
public const nint SteamClient017 = 0xDDA890;
|
||||
public const nint SteamClient018 = 0xDDA8C0;
|
||||
public const nint SteamClient019 = 0xDDA8F0;
|
||||
public const nint SteamClient020 = 0xDDA920;
|
||||
public const nint SteamClient021 = 0xDDA950;
|
||||
public const nint P2pvoice002 = 0x174B380;
|
||||
public const nint P2pvoicesingleton002 = 0x17443B0;
|
||||
}
|
||||
}
|
226
output/linux/interfaces.hpp
Normal file
226
output/linux/interfaces.hpp
Normal file
@ -0,0 +1,226 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace interfaces {
|
||||
// Module: libanimationsystem.so
|
||||
namespace libanimationsystem {
|
||||
constexpr std::ptrdiff_t animation_system_utils_001 = 0x18CA60;
|
||||
constexpr std::ptrdiff_t animation_system_001 = 0x18C850;
|
||||
}
|
||||
// Module: libclient.so
|
||||
namespace libclient {
|
||||
constexpr std::ptrdiff_t client_tools_info_001 = 0xD54880;
|
||||
constexpr std::ptrdiff_t empty_world_service001_client = 0xA47F30;
|
||||
constexpr std::ptrdiff_t game_client_exports001 = 0xD544D0;
|
||||
constexpr std::ptrdiff_t legacy_game_ui001 = 0xF200B0;
|
||||
constexpr std::ptrdiff_t source2_client002 = 0xD54540;
|
||||
constexpr std::ptrdiff_t source2_client_config001 = 0xA2BB50;
|
||||
constexpr std::ptrdiff_t source2_client_prediction001 = 0xDE3A80;
|
||||
constexpr std::ptrdiff_t source2_client_ui001 = 0xEDEAC0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
namespace libengine2 {
|
||||
constexpr std::ptrdiff_t benchmark_service001 = 0x1E5FA0;
|
||||
constexpr std::ptrdiff_t bug_service001 = 0x1E21A0;
|
||||
constexpr std::ptrdiff_t client_server_engine_loop_service_001 = 0x1B3AF0;
|
||||
constexpr std::ptrdiff_t engine_game_ui001 = 0x375580;
|
||||
constexpr std::ptrdiff_t engine_service_mgr001 = 0x1A3A60;
|
||||
constexpr std::ptrdiff_t game_event_system_client_v001 = 0x1A8AD0;
|
||||
constexpr std::ptrdiff_t game_event_system_server_v001 = 0x1A8AE0;
|
||||
constexpr std::ptrdiff_t game_resource_service_client_v001 = 0x1E78D0;
|
||||
constexpr std::ptrdiff_t game_resource_service_server_v001 = 0x1E78E0;
|
||||
constexpr std::ptrdiff_t game_ui_service_001 = 0x1EF410;
|
||||
constexpr std::ptrdiff_t host_state_mgr001 = 0x1AE650;
|
||||
constexpr std::ptrdiff_t inetsupport_001 = 0x33F2A0;
|
||||
constexpr std::ptrdiff_t input_service_001 = 0x1F39E0;
|
||||
constexpr std::ptrdiff_t key_value_cache001 = 0x1B0FA0;
|
||||
constexpr std::ptrdiff_t map_list_service_001 = 0x2079E0;
|
||||
constexpr std::ptrdiff_t network_client_service_001 = 0x22E320;
|
||||
constexpr std::ptrdiff_t network_p2p_service_001 = 0x244940;
|
||||
constexpr std::ptrdiff_t network_server_service_001 = 0x20BA90;
|
||||
constexpr std::ptrdiff_t network_service_001 = 0x20B1B0;
|
||||
constexpr std::ptrdiff_t render_service_001 = 0x249D00;
|
||||
constexpr std::ptrdiff_t screenshot_service001 = 0x24C8F0;
|
||||
constexpr std::ptrdiff_t simple_engine_loop_service_001 = 0x1C87B0;
|
||||
constexpr std::ptrdiff_t sound_service_001 = 0x250F10;
|
||||
constexpr std::ptrdiff_t source2_engine_to_client001 = 0x2C6EE0;
|
||||
constexpr std::ptrdiff_t source2_engine_to_client_string_table001 = 0x29E6D0;
|
||||
constexpr std::ptrdiff_t source2_engine_to_server001 = 0x2ED890;
|
||||
constexpr std::ptrdiff_t source2_engine_to_server_string_table001 = 0x2D0000;
|
||||
constexpr std::ptrdiff_t split_screen_service_001 = 0x258290;
|
||||
constexpr std::ptrdiff_t stats_service_001 = 0x25B9E0;
|
||||
constexpr std::ptrdiff_t tool_service_001 = 0x260C60;
|
||||
constexpr std::ptrdiff_t vengine_gameuifuncs_version005 = 0x375000;
|
||||
constexpr std::ptrdiff_t v_prof_service_001 = 0x262410;
|
||||
}
|
||||
// Module: libfilesystem_stdio.so
|
||||
namespace libfilesystem_stdio {
|
||||
constexpr std::ptrdiff_t v_async_file_system2_001 = 0x80180;
|
||||
constexpr std::ptrdiff_t v_file_system017 = 0x80170;
|
||||
}
|
||||
// Module: libhost.so
|
||||
namespace libhost {
|
||||
constexpr std::ptrdiff_t debug_draw_queue_manager001 = 0xC2C70;
|
||||
constexpr std::ptrdiff_t game_model_info001 = 0xBD8F0;
|
||||
constexpr std::ptrdiff_t game_system2_host_hook = 0xBE030;
|
||||
constexpr std::ptrdiff_t host_utils001 = 0xBE4B0;
|
||||
constexpr std::ptrdiff_t prediction_diff_manager001 = 0xBF440;
|
||||
constexpr std::ptrdiff_t save_restore_data_version001 = 0xC17B0;
|
||||
constexpr std::ptrdiff_t single_player_shared_memory001 = 0xC1A70;
|
||||
constexpr std::ptrdiff_t source2_host001 = 0xC21D0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
namespace libinputsystem {
|
||||
constexpr std::ptrdiff_t input_stack_system_version001 = 0x11840;
|
||||
constexpr std::ptrdiff_t input_system_version001 = 0x12D30;
|
||||
}
|
||||
// Module: liblocalize.so
|
||||
namespace liblocalize {
|
||||
constexpr std::ptrdiff_t localize_001 = 0x1DB00;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
namespace libmatchmaking {
|
||||
constexpr std::ptrdiff_t game_types001 = 0x12FF60;
|
||||
constexpr std::ptrdiff_t matchframework_001 = 0x204440;
|
||||
}
|
||||
// Module: libmaterialsystem2.so
|
||||
namespace libmaterialsystem2 {
|
||||
constexpr std::ptrdiff_t font_manager_001 = 0x7A340;
|
||||
constexpr std::ptrdiff_t material_utils_001 = 0x64B80;
|
||||
constexpr std::ptrdiff_t post_processing_system_001 = 0x89C70;
|
||||
constexpr std::ptrdiff_t text_layout_001 = 0x87200;
|
||||
constexpr std::ptrdiff_t v_material_system2_001 = 0x2C7A0;
|
||||
}
|
||||
// Module: libmeshsystem.so
|
||||
namespace libmeshsystem {
|
||||
constexpr std::ptrdiff_t mesh_system001 = 0x94810;
|
||||
}
|
||||
// Module: libnetworksystem.so
|
||||
namespace libnetworksystem {
|
||||
constexpr std::ptrdiff_t flattened_serializers_version001 = 0x159460;
|
||||
constexpr std::ptrdiff_t network_messages_version001 = 0x180B90;
|
||||
constexpr std::ptrdiff_t network_system_version001 = 0x1A9CE0;
|
||||
constexpr std::ptrdiff_t serialized_entities_version001 = 0x1C2750;
|
||||
}
|
||||
// Module: libpanorama.so
|
||||
namespace libpanorama {
|
||||
constexpr std::ptrdiff_t panorama_ui_engine001 = 0x220F80;
|
||||
}
|
||||
// Module: libpanorama_text_pango.so
|
||||
namespace libpanorama_text_pango {
|
||||
constexpr std::ptrdiff_t panorama_text_services001 = 0xBC4C0;
|
||||
}
|
||||
// Module: libpanoramauiclient.so
|
||||
namespace libpanoramauiclient {
|
||||
constexpr std::ptrdiff_t panorama_ui_client001 = 0x10AAC0;
|
||||
}
|
||||
// Module: libparticles.so
|
||||
namespace libparticles {
|
||||
constexpr std::ptrdiff_t particle_system_mgr003 = 0x1EBE60;
|
||||
}
|
||||
// Module: libpulse_system.so
|
||||
namespace libpulse_system {
|
||||
constexpr std::ptrdiff_t i_pulse_system_001 = 0x357B0;
|
||||
}
|
||||
// Module: librendersystemvulkan.so
|
||||
namespace librendersystemvulkan {
|
||||
constexpr std::ptrdiff_t render_device_mgr001 = 0x185100;
|
||||
constexpr std::ptrdiff_t render_utils_001 = 0x1019A0;
|
||||
}
|
||||
// Module: libresourcesystem.so
|
||||
namespace libresourcesystem {
|
||||
constexpr std::ptrdiff_t resource_system013 = 0x30A90;
|
||||
}
|
||||
// Module: libscenefilecache.so
|
||||
namespace libscenefilecache {
|
||||
constexpr std::ptrdiff_t response_rules_cache001 = 0x88E40;
|
||||
constexpr std::ptrdiff_t scene_file_cache002 = 0x85B10;
|
||||
}
|
||||
// Module: libscenesystem.so
|
||||
namespace libscenesystem {
|
||||
constexpr std::ptrdiff_t rendering_pipelines_001 = 0x120E20;
|
||||
constexpr std::ptrdiff_t scene_system_002 = 0x164300;
|
||||
constexpr std::ptrdiff_t scene_utils_001 = 0x1E0A70;
|
||||
}
|
||||
// Module: libschemasystem.so
|
||||
namespace libschemasystem {
|
||||
constexpr std::ptrdiff_t schema_system_001 = 0x211F0;
|
||||
}
|
||||
// Module: libserver.so
|
||||
namespace libserver {
|
||||
constexpr std::ptrdiff_t empty_world_service001_server = 0xB83320;
|
||||
constexpr std::ptrdiff_t entity_subclass_utils_v001 = 0x8611F0;
|
||||
constexpr std::ptrdiff_t nav_game_test001 = 0x1094010;
|
||||
constexpr std::ptrdiff_t server_tools_info_001 = 0xE72080;
|
||||
constexpr std::ptrdiff_t source2_game_clients001 = 0xE72010;
|
||||
constexpr std::ptrdiff_t source2_game_director001 = 0x6C41A0;
|
||||
constexpr std::ptrdiff_t source2_game_entities001 = 0xE72000;
|
||||
constexpr std::ptrdiff_t source2_server001 = 0xE71CF0;
|
||||
constexpr std::ptrdiff_t source2_server_config001 = 0xB0EED0;
|
||||
constexpr std::ptrdiff_t customnavsystem001 = 0x7F8230;
|
||||
}
|
||||
// Module: libsoundsystem.so
|
||||
namespace libsoundsystem {
|
||||
constexpr std::ptrdiff_t sound_op_system001 = 0x155E80;
|
||||
constexpr std::ptrdiff_t sound_op_system_edit001 = 0xAD350;
|
||||
constexpr std::ptrdiff_t sound_system001 = 0x1C4920;
|
||||
constexpr std::ptrdiff_t v_mix_edit_tool001 = 0x1F4340;
|
||||
}
|
||||
// Module: libsteamaudio.so
|
||||
namespace libsteamaudio {
|
||||
constexpr std::ptrdiff_t steam_audio001 = 0x31590;
|
||||
}
|
||||
// Module: libtier0.so
|
||||
namespace libtier0 {
|
||||
constexpr std::ptrdiff_t test_script_mgr001 = 0x1BE8F0;
|
||||
constexpr std::ptrdiff_t v_engine_cvar007 = 0xF1370;
|
||||
constexpr std::ptrdiff_t v_process_utils002 = 0x19C370;
|
||||
constexpr std::ptrdiff_t v_string_token_system001 = 0x1EA8D0;
|
||||
}
|
||||
// Module: libv8system.so
|
||||
namespace libv8system {
|
||||
constexpr std::ptrdiff_t source2_v8_system001 = 0x1B630;
|
||||
}
|
||||
// Module: libvphysics2.so
|
||||
namespace libvphysics2 {
|
||||
constexpr std::ptrdiff_t v_physics2_handle_interface_001 = 0xC1FD0;
|
||||
constexpr std::ptrdiff_t v_physics2_interface_001 = 0xC1BC0;
|
||||
}
|
||||
// Module: libvscript.so
|
||||
namespace libvscript {
|
||||
constexpr std::ptrdiff_t v_script_manager010 = 0x26230;
|
||||
}
|
||||
// Module: libworldrenderer.so
|
||||
namespace libworldrenderer {
|
||||
constexpr std::ptrdiff_t world_renderer_mgr001 = 0x982B0;
|
||||
}
|
||||
// Module: steamclient.so
|
||||
namespace steamclient {
|
||||
constexpr std::ptrdiff_t clientengine_interface_version005 = 0x11260D0;
|
||||
constexpr std::ptrdiff_t ivalidate001 = 0x1122650;
|
||||
constexpr std::ptrdiff_t steam_client006 = 0xDDA7A0;
|
||||
constexpr std::ptrdiff_t steam_client007 = 0xDDA7B0;
|
||||
constexpr std::ptrdiff_t steam_client008 = 0xDDA7C0;
|
||||
constexpr std::ptrdiff_t steam_client009 = 0xDDA7D0;
|
||||
constexpr std::ptrdiff_t steam_client010 = 0xDDA7E0;
|
||||
constexpr std::ptrdiff_t steam_client011 = 0xDDA7F0;
|
||||
constexpr std::ptrdiff_t steam_client012 = 0xDDA800;
|
||||
constexpr std::ptrdiff_t steam_client013 = 0xDDA810;
|
||||
constexpr std::ptrdiff_t steam_client014 = 0xDDA820;
|
||||
constexpr std::ptrdiff_t steam_client015 = 0xDDA830;
|
||||
constexpr std::ptrdiff_t steam_client016 = 0xDDA860;
|
||||
constexpr std::ptrdiff_t steam_client017 = 0xDDA890;
|
||||
constexpr std::ptrdiff_t steam_client018 = 0xDDA8C0;
|
||||
constexpr std::ptrdiff_t steam_client019 = 0xDDA8F0;
|
||||
constexpr std::ptrdiff_t steam_client020 = 0xDDA920;
|
||||
constexpr std::ptrdiff_t steam_client021 = 0xDDA950;
|
||||
constexpr std::ptrdiff_t p2pvoice002 = 0x174B380;
|
||||
constexpr std::ptrdiff_t p2pvoicesingleton002 = 0x17443B0;
|
||||
}
|
||||
}
|
||||
}
|
564
output/linux/interfaces.json
Normal file
564
output/linux/interfaces.json
Normal file
@ -0,0 +1,564 @@
|
||||
{
|
||||
"interfaces": {
|
||||
"libanimationsystem.so": [
|
||||
{
|
||||
"name": "AnimationSystemUtils_001",
|
||||
"value": 1624672
|
||||
},
|
||||
{
|
||||
"name": "AnimationSystem_001",
|
||||
"value": 1624144
|
||||
}
|
||||
],
|
||||
"libclient.so": [
|
||||
{
|
||||
"name": "ClientToolsInfo_001",
|
||||
"value": 13977728
|
||||
},
|
||||
{
|
||||
"name": "EmptyWorldService001_Client",
|
||||
"value": 10780464
|
||||
},
|
||||
{
|
||||
"name": "GameClientExports001",
|
||||
"value": 13976784
|
||||
},
|
||||
{
|
||||
"name": "LegacyGameUI001",
|
||||
"value": 15859888
|
||||
},
|
||||
{
|
||||
"name": "Source2Client002",
|
||||
"value": 13976896
|
||||
},
|
||||
{
|
||||
"name": "Source2ClientConfig001",
|
||||
"value": 10664784
|
||||
},
|
||||
{
|
||||
"name": "Source2ClientPrediction001",
|
||||
"value": 14563968
|
||||
},
|
||||
{
|
||||
"name": "Source2ClientUI001",
|
||||
"value": 15592128
|
||||
}
|
||||
],
|
||||
"libengine2.so": [
|
||||
{
|
||||
"name": "BenchmarkService001",
|
||||
"value": 1990560
|
||||
},
|
||||
{
|
||||
"name": "BugService001",
|
||||
"value": 1974688
|
||||
},
|
||||
{
|
||||
"name": "ClientServerEngineLoopService_001",
|
||||
"value": 1784560
|
||||
},
|
||||
{
|
||||
"name": "EngineGameUI001",
|
||||
"value": 3626368
|
||||
},
|
||||
{
|
||||
"name": "EngineServiceMgr001",
|
||||
"value": 1718880
|
||||
},
|
||||
{
|
||||
"name": "GameEventSystemClientV001",
|
||||
"value": 1739472
|
||||
},
|
||||
{
|
||||
"name": "GameEventSystemServerV001",
|
||||
"value": 1739488
|
||||
},
|
||||
{
|
||||
"name": "GameResourceServiceClientV001",
|
||||
"value": 1997008
|
||||
},
|
||||
{
|
||||
"name": "GameResourceServiceServerV001",
|
||||
"value": 1997024
|
||||
},
|
||||
{
|
||||
"name": "GameUIService_001",
|
||||
"value": 2028560
|
||||
},
|
||||
{
|
||||
"name": "HostStateMgr001",
|
||||
"value": 1762896
|
||||
},
|
||||
{
|
||||
"name": "INETSUPPORT_001",
|
||||
"value": 3404448
|
||||
},
|
||||
{
|
||||
"name": "InputService_001",
|
||||
"value": 2046432
|
||||
},
|
||||
{
|
||||
"name": "KeyValueCache001",
|
||||
"value": 1773472
|
||||
},
|
||||
{
|
||||
"name": "MapListService_001",
|
||||
"value": 2128352
|
||||
},
|
||||
{
|
||||
"name": "NetworkClientService_001",
|
||||
"value": 2286368
|
||||
},
|
||||
{
|
||||
"name": "NetworkP2PService_001",
|
||||
"value": 2378048
|
||||
},
|
||||
{
|
||||
"name": "NetworkServerService_001",
|
||||
"value": 2144912
|
||||
},
|
||||
{
|
||||
"name": "NetworkService_001",
|
||||
"value": 2142640
|
||||
},
|
||||
{
|
||||
"name": "RenderService_001",
|
||||
"value": 2399488
|
||||
},
|
||||
{
|
||||
"name": "ScreenshotService001",
|
||||
"value": 2410736
|
||||
},
|
||||
{
|
||||
"name": "SimpleEngineLoopService_001",
|
||||
"value": 1869744
|
||||
},
|
||||
{
|
||||
"name": "SoundService_001",
|
||||
"value": 2428688
|
||||
},
|
||||
{
|
||||
"name": "Source2EngineToClient001",
|
||||
"value": 2911968
|
||||
},
|
||||
{
|
||||
"name": "Source2EngineToClientStringTable001",
|
||||
"value": 2746064
|
||||
},
|
||||
{
|
||||
"name": "Source2EngineToServer001",
|
||||
"value": 3070096
|
||||
},
|
||||
{
|
||||
"name": "Source2EngineToServerStringTable001",
|
||||
"value": 2949120
|
||||
},
|
||||
{
|
||||
"name": "SplitScreenService_001",
|
||||
"value": 2458256
|
||||
},
|
||||
{
|
||||
"name": "StatsService_001",
|
||||
"value": 2472416
|
||||
},
|
||||
{
|
||||
"name": "ToolService_001",
|
||||
"value": 2493536
|
||||
},
|
||||
{
|
||||
"name": "VENGINE_GAMEUIFUNCS_VERSION005",
|
||||
"value": 3624960
|
||||
},
|
||||
{
|
||||
"name": "VProfService_001",
|
||||
"value": 2499600
|
||||
}
|
||||
],
|
||||
"libfilesystem_stdio.so": [
|
||||
{
|
||||
"name": "VAsyncFileSystem2_001",
|
||||
"value": 524672
|
||||
},
|
||||
{
|
||||
"name": "VFileSystem017",
|
||||
"value": 524656
|
||||
}
|
||||
],
|
||||
"libhost.so": [
|
||||
{
|
||||
"name": "DebugDrawQueueManager001",
|
||||
"value": 797808
|
||||
},
|
||||
{
|
||||
"name": "GameModelInfo001",
|
||||
"value": 776432
|
||||
},
|
||||
{
|
||||
"name": "GameSystem2HostHook",
|
||||
"value": 778288
|
||||
},
|
||||
{
|
||||
"name": "HostUtils001",
|
||||
"value": 779440
|
||||
},
|
||||
{
|
||||
"name": "PredictionDiffManager001",
|
||||
"value": 783424
|
||||
},
|
||||
{
|
||||
"name": "SaveRestoreDataVersion001",
|
||||
"value": 792496
|
||||
},
|
||||
{
|
||||
"name": "SinglePlayerSharedMemory001",
|
||||
"value": 793200
|
||||
},
|
||||
{
|
||||
"name": "Source2Host001",
|
||||
"value": 795088
|
||||
}
|
||||
],
|
||||
"libinputsystem.so": [
|
||||
{
|
||||
"name": "InputStackSystemVersion001",
|
||||
"value": 71744
|
||||
},
|
||||
{
|
||||
"name": "InputSystemVersion001",
|
||||
"value": 77104
|
||||
}
|
||||
],
|
||||
"liblocalize.so": [
|
||||
{
|
||||
"name": "Localize_001",
|
||||
"value": 121600
|
||||
}
|
||||
],
|
||||
"libmatchmaking.so": [
|
||||
{
|
||||
"name": "GameTypes001",
|
||||
"value": 1245024
|
||||
},
|
||||
{
|
||||
"name": "MATCHFRAMEWORK_001",
|
||||
"value": 2114624
|
||||
}
|
||||
],
|
||||
"libmaterialsystem2.so": [
|
||||
{
|
||||
"name": "FontManager_001",
|
||||
"value": 500544
|
||||
},
|
||||
{
|
||||
"name": "MaterialUtils_001",
|
||||
"value": 412544
|
||||
},
|
||||
{
|
||||
"name": "PostProcessingSystem_001",
|
||||
"value": 564336
|
||||
},
|
||||
{
|
||||
"name": "TextLayout_001",
|
||||
"value": 553472
|
||||
},
|
||||
{
|
||||
"name": "VMaterialSystem2_001",
|
||||
"value": 182176
|
||||
}
|
||||
],
|
||||
"libmeshsystem.so": [
|
||||
{
|
||||
"name": "MeshSystem001",
|
||||
"value": 608272
|
||||
}
|
||||
],
|
||||
"libnetworksystem.so": [
|
||||
{
|
||||
"name": "FlattenedSerializersVersion001",
|
||||
"value": 1414240
|
||||
},
|
||||
{
|
||||
"name": "NetworkMessagesVersion001",
|
||||
"value": 1575824
|
||||
},
|
||||
{
|
||||
"name": "NetworkSystemVersion001",
|
||||
"value": 1744096
|
||||
},
|
||||
{
|
||||
"name": "SerializedEntitiesVersion001",
|
||||
"value": 1845072
|
||||
}
|
||||
],
|
||||
"libpanorama.so": [
|
||||
{
|
||||
"name": "PanoramaUIEngine001",
|
||||
"value": 2232192
|
||||
}
|
||||
],
|
||||
"libpanorama_text_pango.so": [
|
||||
{
|
||||
"name": "PanoramaTextServices001",
|
||||
"value": 771264
|
||||
}
|
||||
],
|
||||
"libpanoramauiclient.so": [
|
||||
{
|
||||
"name": "PanoramaUIClient001",
|
||||
"value": 1092288
|
||||
}
|
||||
],
|
||||
"libparticles.so": [
|
||||
{
|
||||
"name": "ParticleSystemMgr003",
|
||||
"value": 2014816
|
||||
}
|
||||
],
|
||||
"libpulse_system.so": [
|
||||
{
|
||||
"name": "IPulseSystem_001",
|
||||
"value": 219056
|
||||
}
|
||||
],
|
||||
"librendersystemvulkan.so": [
|
||||
{
|
||||
"name": "RenderDeviceMgr001",
|
||||
"value": 1593600
|
||||
},
|
||||
{
|
||||
"name": "RenderUtils_001",
|
||||
"value": 1055136
|
||||
}
|
||||
],
|
||||
"libresourcesystem.so": [
|
||||
{
|
||||
"name": "ResourceSystem013",
|
||||
"value": 199312
|
||||
}
|
||||
],
|
||||
"libscenefilecache.so": [
|
||||
{
|
||||
"name": "ResponseRulesCache001",
|
||||
"value": 560704
|
||||
},
|
||||
{
|
||||
"name": "SceneFileCache002",
|
||||
"value": 547600
|
||||
}
|
||||
],
|
||||
"libscenesystem.so": [
|
||||
{
|
||||
"name": "RenderingPipelines_001",
|
||||
"value": 1183264
|
||||
},
|
||||
{
|
||||
"name": "SceneSystem_002",
|
||||
"value": 1458944
|
||||
},
|
||||
{
|
||||
"name": "SceneUtils_001",
|
||||
"value": 1968752
|
||||
}
|
||||
],
|
||||
"libschemasystem.so": [
|
||||
{
|
||||
"name": "SchemaSystem_001",
|
||||
"value": 135664
|
||||
}
|
||||
],
|
||||
"libserver.so": [
|
||||
{
|
||||
"name": "EmptyWorldService001_Server",
|
||||
"value": 12071712
|
||||
},
|
||||
{
|
||||
"name": "EntitySubclassUtilsV001",
|
||||
"value": 8786416
|
||||
},
|
||||
{
|
||||
"name": "NavGameTest001",
|
||||
"value": 17383440
|
||||
},
|
||||
{
|
||||
"name": "ServerToolsInfo_001",
|
||||
"value": 15147136
|
||||
},
|
||||
{
|
||||
"name": "Source2GameClients001",
|
||||
"value": 15147024
|
||||
},
|
||||
{
|
||||
"name": "Source2GameDirector001",
|
||||
"value": 7094688
|
||||
},
|
||||
{
|
||||
"name": "Source2GameEntities001",
|
||||
"value": 15147008
|
||||
},
|
||||
{
|
||||
"name": "Source2Server001",
|
||||
"value": 15146224
|
||||
},
|
||||
{
|
||||
"name": "Source2ServerConfig001",
|
||||
"value": 11595472
|
||||
},
|
||||
{
|
||||
"name": "customnavsystem001",
|
||||
"value": 8356400
|
||||
}
|
||||
],
|
||||
"libsoundsystem.so": [
|
||||
{
|
||||
"name": "SoundOpSystem001",
|
||||
"value": 1400448
|
||||
},
|
||||
{
|
||||
"name": "SoundOpSystemEdit001",
|
||||
"value": 709456
|
||||
},
|
||||
{
|
||||
"name": "SoundSystem001",
|
||||
"value": 1853728
|
||||
},
|
||||
{
|
||||
"name": "VMixEditTool001",
|
||||
"value": 2048832
|
||||
}
|
||||
],
|
||||
"libsteamaudio.so": [
|
||||
{
|
||||
"name": "SteamAudio001",
|
||||
"value": 202128
|
||||
}
|
||||
],
|
||||
"libtier0.so": [
|
||||
{
|
||||
"name": "TestScriptMgr001",
|
||||
"value": 1829104
|
||||
},
|
||||
{
|
||||
"name": "VEngineCvar007",
|
||||
"value": 988016
|
||||
},
|
||||
{
|
||||
"name": "VProcessUtils002",
|
||||
"value": 1688432
|
||||
},
|
||||
{
|
||||
"name": "VStringTokenSystem001",
|
||||
"value": 2009296
|
||||
}
|
||||
],
|
||||
"libv8system.so": [
|
||||
{
|
||||
"name": "Source2V8System001",
|
||||
"value": 112176
|
||||
}
|
||||
],
|
||||
"libvphysics2.so": [
|
||||
{
|
||||
"name": "VPhysics2_Handle_Interface_001",
|
||||
"value": 794576
|
||||
},
|
||||
{
|
||||
"name": "VPhysics2_Interface_001",
|
||||
"value": 793536
|
||||
}
|
||||
],
|
||||
"libvscript.so": [
|
||||
{
|
||||
"name": "VScriptManager010",
|
||||
"value": 156208
|
||||
}
|
||||
],
|
||||
"libworldrenderer.so": [
|
||||
{
|
||||
"name": "WorldRendererMgr001",
|
||||
"value": 623280
|
||||
}
|
||||
],
|
||||
"steamclient.so": [
|
||||
{
|
||||
"name": "CLIENTENGINE_INTERFACE_VERSION005",
|
||||
"value": 17981648
|
||||
},
|
||||
{
|
||||
"name": "IVALIDATE001",
|
||||
"value": 17966672
|
||||
},
|
||||
{
|
||||
"name": "SteamClient006",
|
||||
"value": 14526368
|
||||
},
|
||||
{
|
||||
"name": "SteamClient007",
|
||||
"value": 14526384
|
||||
},
|
||||
{
|
||||
"name": "SteamClient008",
|
||||
"value": 14526400
|
||||
},
|
||||
{
|
||||
"name": "SteamClient009",
|
||||
"value": 14526416
|
||||
},
|
||||
{
|
||||
"name": "SteamClient010",
|
||||
"value": 14526432
|
||||
},
|
||||
{
|
||||
"name": "SteamClient011",
|
||||
"value": 14526448
|
||||
},
|
||||
{
|
||||
"name": "SteamClient012",
|
||||
"value": 14526464
|
||||
},
|
||||
{
|
||||
"name": "SteamClient013",
|
||||
"value": 14526480
|
||||
},
|
||||
{
|
||||
"name": "SteamClient014",
|
||||
"value": 14526496
|
||||
},
|
||||
{
|
||||
"name": "SteamClient015",
|
||||
"value": 14526512
|
||||
},
|
||||
{
|
||||
"name": "SteamClient016",
|
||||
"value": 14526560
|
||||
},
|
||||
{
|
||||
"name": "SteamClient017",
|
||||
"value": 14526608
|
||||
},
|
||||
{
|
||||
"name": "SteamClient018",
|
||||
"value": 14526656
|
||||
},
|
||||
{
|
||||
"name": "SteamClient019",
|
||||
"value": 14526704
|
||||
},
|
||||
{
|
||||
"name": "SteamClient020",
|
||||
"value": 14526752
|
||||
},
|
||||
{
|
||||
"name": "SteamClient021",
|
||||
"value": 14526800
|
||||
},
|
||||
{
|
||||
"name": "p2pvoice002",
|
||||
"value": 24425344
|
||||
},
|
||||
{
|
||||
"name": "p2pvoicesingleton002",
|
||||
"value": 24396720
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
222
output/linux/interfaces.rs
Normal file
222
output/linux/interfaces.rs
Normal file
@ -0,0 +1,222 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod interfaces {
|
||||
// Module: libanimationsystem.so
|
||||
pub mod libanimationsystem {
|
||||
pub const ANIMATION_SYSTEM_UTILS_001: usize = 0x18CA60;
|
||||
pub const ANIMATION_SYSTEM_001: usize = 0x18C850;
|
||||
}
|
||||
// Module: libclient.so
|
||||
pub mod libclient {
|
||||
pub const CLIENT_TOOLS_INFO_001: usize = 0xD54880;
|
||||
pub const EMPTY_WORLD_SERVICE001_CLIENT: usize = 0xA47F30;
|
||||
pub const GAME_CLIENT_EXPORTS001: usize = 0xD544D0;
|
||||
pub const LEGACY_GAME_UI001: usize = 0xF200B0;
|
||||
pub const SOURCE2_CLIENT002: usize = 0xD54540;
|
||||
pub const SOURCE2_CLIENT_CONFIG001: usize = 0xA2BB50;
|
||||
pub const SOURCE2_CLIENT_PREDICTION001: usize = 0xDE3A80;
|
||||
pub const SOURCE2_CLIENT_UI001: usize = 0xEDEAC0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
pub mod libengine2 {
|
||||
pub const BENCHMARK_SERVICE001: usize = 0x1E5FA0;
|
||||
pub const BUG_SERVICE001: usize = 0x1E21A0;
|
||||
pub const CLIENT_SERVER_ENGINE_LOOP_SERVICE_001: usize = 0x1B3AF0;
|
||||
pub const ENGINE_GAME_UI001: usize = 0x375580;
|
||||
pub const ENGINE_SERVICE_MGR001: usize = 0x1A3A60;
|
||||
pub const GAME_EVENT_SYSTEM_CLIENT_V001: usize = 0x1A8AD0;
|
||||
pub const GAME_EVENT_SYSTEM_SERVER_V001: usize = 0x1A8AE0;
|
||||
pub const GAME_RESOURCE_SERVICE_CLIENT_V001: usize = 0x1E78D0;
|
||||
pub const GAME_RESOURCE_SERVICE_SERVER_V001: usize = 0x1E78E0;
|
||||
pub const GAME_UI_SERVICE_001: usize = 0x1EF410;
|
||||
pub const HOST_STATE_MGR001: usize = 0x1AE650;
|
||||
pub const INETSUPPORT_001: usize = 0x33F2A0;
|
||||
pub const INPUT_SERVICE_001: usize = 0x1F39E0;
|
||||
pub const KEY_VALUE_CACHE001: usize = 0x1B0FA0;
|
||||
pub const MAP_LIST_SERVICE_001: usize = 0x2079E0;
|
||||
pub const NETWORK_CLIENT_SERVICE_001: usize = 0x22E320;
|
||||
pub const NETWORK_P2P_SERVICE_001: usize = 0x244940;
|
||||
pub const NETWORK_SERVER_SERVICE_001: usize = 0x20BA90;
|
||||
pub const NETWORK_SERVICE_001: usize = 0x20B1B0;
|
||||
pub const RENDER_SERVICE_001: usize = 0x249D00;
|
||||
pub const SCREENSHOT_SERVICE001: usize = 0x24C8F0;
|
||||
pub const SIMPLE_ENGINE_LOOP_SERVICE_001: usize = 0x1C87B0;
|
||||
pub const SOUND_SERVICE_001: usize = 0x250F10;
|
||||
pub const SOURCE2_ENGINE_TO_CLIENT001: usize = 0x2C6EE0;
|
||||
pub const SOURCE2_ENGINE_TO_CLIENT_STRING_TABLE001: usize = 0x29E6D0;
|
||||
pub const SOURCE2_ENGINE_TO_SERVER001: usize = 0x2ED890;
|
||||
pub const SOURCE2_ENGINE_TO_SERVER_STRING_TABLE001: usize = 0x2D0000;
|
||||
pub const SPLIT_SCREEN_SERVICE_001: usize = 0x258290;
|
||||
pub const STATS_SERVICE_001: usize = 0x25B9E0;
|
||||
pub const TOOL_SERVICE_001: usize = 0x260C60;
|
||||
pub const VENGINE_GAMEUIFUNCS_VERSION005: usize = 0x375000;
|
||||
pub const V_PROF_SERVICE_001: usize = 0x262410;
|
||||
}
|
||||
// Module: libfilesystem_stdio.so
|
||||
pub mod libfilesystem_stdio {
|
||||
pub const V_ASYNC_FILE_SYSTEM2_001: usize = 0x80180;
|
||||
pub const V_FILE_SYSTEM017: usize = 0x80170;
|
||||
}
|
||||
// Module: libhost.so
|
||||
pub mod libhost {
|
||||
pub const DEBUG_DRAW_QUEUE_MANAGER001: usize = 0xC2C70;
|
||||
pub const GAME_MODEL_INFO001: usize = 0xBD8F0;
|
||||
pub const GAME_SYSTEM2_HOST_HOOK: usize = 0xBE030;
|
||||
pub const HOST_UTILS001: usize = 0xBE4B0;
|
||||
pub const PREDICTION_DIFF_MANAGER001: usize = 0xBF440;
|
||||
pub const SAVE_RESTORE_DATA_VERSION001: usize = 0xC17B0;
|
||||
pub const SINGLE_PLAYER_SHARED_MEMORY001: usize = 0xC1A70;
|
||||
pub const SOURCE2_HOST001: usize = 0xC21D0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
pub mod libinputsystem {
|
||||
pub const INPUT_STACK_SYSTEM_VERSION001: usize = 0x11840;
|
||||
pub const INPUT_SYSTEM_VERSION001: usize = 0x12D30;
|
||||
}
|
||||
// Module: liblocalize.so
|
||||
pub mod liblocalize {
|
||||
pub const LOCALIZE_001: usize = 0x1DB00;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
pub mod libmatchmaking {
|
||||
pub const GAME_TYPES001: usize = 0x12FF60;
|
||||
pub const MATCHFRAMEWORK_001: usize = 0x204440;
|
||||
}
|
||||
// Module: libmaterialsystem2.so
|
||||
pub mod libmaterialsystem2 {
|
||||
pub const FONT_MANAGER_001: usize = 0x7A340;
|
||||
pub const MATERIAL_UTILS_001: usize = 0x64B80;
|
||||
pub const POST_PROCESSING_SYSTEM_001: usize = 0x89C70;
|
||||
pub const TEXT_LAYOUT_001: usize = 0x87200;
|
||||
pub const V_MATERIAL_SYSTEM2_001: usize = 0x2C7A0;
|
||||
}
|
||||
// Module: libmeshsystem.so
|
||||
pub mod libmeshsystem {
|
||||
pub const MESH_SYSTEM001: usize = 0x94810;
|
||||
}
|
||||
// Module: libnetworksystem.so
|
||||
pub mod libnetworksystem {
|
||||
pub const FLATTENED_SERIALIZERS_VERSION001: usize = 0x159460;
|
||||
pub const NETWORK_MESSAGES_VERSION001: usize = 0x180B90;
|
||||
pub const NETWORK_SYSTEM_VERSION001: usize = 0x1A9CE0;
|
||||
pub const SERIALIZED_ENTITIES_VERSION001: usize = 0x1C2750;
|
||||
}
|
||||
// Module: libpanorama.so
|
||||
pub mod libpanorama {
|
||||
pub const PANORAMA_UI_ENGINE001: usize = 0x220F80;
|
||||
}
|
||||
// Module: libpanorama_text_pango.so
|
||||
pub mod libpanorama_text_pango {
|
||||
pub const PANORAMA_TEXT_SERVICES001: usize = 0xBC4C0;
|
||||
}
|
||||
// Module: libpanoramauiclient.so
|
||||
pub mod libpanoramauiclient {
|
||||
pub const PANORAMA_UI_CLIENT001: usize = 0x10AAC0;
|
||||
}
|
||||
// Module: libparticles.so
|
||||
pub mod libparticles {
|
||||
pub const PARTICLE_SYSTEM_MGR003: usize = 0x1EBE60;
|
||||
}
|
||||
// Module: libpulse_system.so
|
||||
pub mod libpulse_system {
|
||||
pub const I_PULSE_SYSTEM_001: usize = 0x357B0;
|
||||
}
|
||||
// Module: librendersystemvulkan.so
|
||||
pub mod librendersystemvulkan {
|
||||
pub const RENDER_DEVICE_MGR001: usize = 0x185100;
|
||||
pub const RENDER_UTILS_001: usize = 0x1019A0;
|
||||
}
|
||||
// Module: libresourcesystem.so
|
||||
pub mod libresourcesystem {
|
||||
pub const RESOURCE_SYSTEM013: usize = 0x30A90;
|
||||
}
|
||||
// Module: libscenefilecache.so
|
||||
pub mod libscenefilecache {
|
||||
pub const RESPONSE_RULES_CACHE001: usize = 0x88E40;
|
||||
pub const SCENE_FILE_CACHE002: usize = 0x85B10;
|
||||
}
|
||||
// Module: libscenesystem.so
|
||||
pub mod libscenesystem {
|
||||
pub const RENDERING_PIPELINES_001: usize = 0x120E20;
|
||||
pub const SCENE_SYSTEM_002: usize = 0x164300;
|
||||
pub const SCENE_UTILS_001: usize = 0x1E0A70;
|
||||
}
|
||||
// Module: libschemasystem.so
|
||||
pub mod libschemasystem {
|
||||
pub const SCHEMA_SYSTEM_001: usize = 0x211F0;
|
||||
}
|
||||
// Module: libserver.so
|
||||
pub mod libserver {
|
||||
pub const EMPTY_WORLD_SERVICE001_SERVER: usize = 0xB83320;
|
||||
pub const ENTITY_SUBCLASS_UTILS_V001: usize = 0x8611F0;
|
||||
pub const NAV_GAME_TEST001: usize = 0x1094010;
|
||||
pub const SERVER_TOOLS_INFO_001: usize = 0xE72080;
|
||||
pub const SOURCE2_GAME_CLIENTS001: usize = 0xE72010;
|
||||
pub const SOURCE2_GAME_DIRECTOR001: usize = 0x6C41A0;
|
||||
pub const SOURCE2_GAME_ENTITIES001: usize = 0xE72000;
|
||||
pub const SOURCE2_SERVER001: usize = 0xE71CF0;
|
||||
pub const SOURCE2_SERVER_CONFIG001: usize = 0xB0EED0;
|
||||
pub const CUSTOMNAVSYSTEM001: usize = 0x7F8230;
|
||||
}
|
||||
// Module: libsoundsystem.so
|
||||
pub mod libsoundsystem {
|
||||
pub const SOUND_OP_SYSTEM001: usize = 0x155E80;
|
||||
pub const SOUND_OP_SYSTEM_EDIT001: usize = 0xAD350;
|
||||
pub const SOUND_SYSTEM001: usize = 0x1C4920;
|
||||
pub const V_MIX_EDIT_TOOL001: usize = 0x1F4340;
|
||||
}
|
||||
// Module: libsteamaudio.so
|
||||
pub mod libsteamaudio {
|
||||
pub const STEAM_AUDIO001: usize = 0x31590;
|
||||
}
|
||||
// Module: libtier0.so
|
||||
pub mod libtier0 {
|
||||
pub const TEST_SCRIPT_MGR001: usize = 0x1BE8F0;
|
||||
pub const V_ENGINE_CVAR007: usize = 0xF1370;
|
||||
pub const V_PROCESS_UTILS002: usize = 0x19C370;
|
||||
pub const V_STRING_TOKEN_SYSTEM001: usize = 0x1EA8D0;
|
||||
}
|
||||
// Module: libv8system.so
|
||||
pub mod libv8system {
|
||||
pub const SOURCE2_V8_SYSTEM001: usize = 0x1B630;
|
||||
}
|
||||
// Module: libvphysics2.so
|
||||
pub mod libvphysics2 {
|
||||
pub const V_PHYSICS2_HANDLE_INTERFACE_001: usize = 0xC1FD0;
|
||||
pub const V_PHYSICS2_INTERFACE_001: usize = 0xC1BC0;
|
||||
}
|
||||
// Module: libvscript.so
|
||||
pub mod libvscript {
|
||||
pub const V_SCRIPT_MANAGER010: usize = 0x26230;
|
||||
}
|
||||
// Module: libworldrenderer.so
|
||||
pub mod libworldrenderer {
|
||||
pub const WORLD_RENDERER_MGR001: usize = 0x982B0;
|
||||
}
|
||||
// Module: steamclient.so
|
||||
pub mod steamclient {
|
||||
pub const CLIENTENGINE_INTERFACE_VERSION005: usize = 0x11260D0;
|
||||
pub const IVALIDATE001: usize = 0x1122650;
|
||||
pub const STEAM_CLIENT006: usize = 0xDDA7A0;
|
||||
pub const STEAM_CLIENT007: usize = 0xDDA7B0;
|
||||
pub const STEAM_CLIENT008: usize = 0xDDA7C0;
|
||||
pub const STEAM_CLIENT009: usize = 0xDDA7D0;
|
||||
pub const STEAM_CLIENT010: usize = 0xDDA7E0;
|
||||
pub const STEAM_CLIENT011: usize = 0xDDA7F0;
|
||||
pub const STEAM_CLIENT012: usize = 0xDDA800;
|
||||
pub const STEAM_CLIENT013: usize = 0xDDA810;
|
||||
pub const STEAM_CLIENT014: usize = 0xDDA820;
|
||||
pub const STEAM_CLIENT015: usize = 0xDDA830;
|
||||
pub const STEAM_CLIENT016: usize = 0xDDA860;
|
||||
pub const STEAM_CLIENT017: usize = 0xDDA890;
|
||||
pub const STEAM_CLIENT018: usize = 0xDDA8C0;
|
||||
pub const STEAM_CLIENT019: usize = 0xDDA8F0;
|
||||
pub const STEAM_CLIENT020: usize = 0xDDA920;
|
||||
pub const STEAM_CLIENT021: usize = 0xDDA950;
|
||||
pub const P2PVOICE002: usize = 0x174B380;
|
||||
pub const P2PVOICESINGLETON002: usize = 0x17443B0;
|
||||
}
|
||||
}
|
||||
}
|
44
output/linux/offsets.cs
Normal file
44
output/linux/offsets.cs
Normal file
@ -0,0 +1,44 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
namespace CS2Dumper.Offsets {
|
||||
// Module: libclient.so
|
||||
public static class Libclient {
|
||||
public const nint DwCsgoInput = 0x3744680;
|
||||
public const nint DwEntityList = 0x35AB8C8;
|
||||
public const nint DwGameEntitySystem = 0x38619C0;
|
||||
public const nint DwGameEntitySystemGetHighestEntityIndex = 0x1540;
|
||||
public const nint DwGameRules = 0x37373E8;
|
||||
public const nint DwGlobalVars = 0x356C9D0;
|
||||
public const nint DwGlowManager = 0x373BCF0;
|
||||
public const nint DwLocalPlayerController = 0x371C918;
|
||||
public const nint DwLocalPlayerPawn = 0x373CCD8;
|
||||
public const nint DwPlantedC4 = 0x3751538;
|
||||
public const nint DwPrediction = 0x373CBA0;
|
||||
public const nint DwSensitivity = 0x373B208;
|
||||
public const nint DwSensitivitySensitivity = 0x40;
|
||||
public const nint DwViewAngles = 0x3749A20;
|
||||
public const nint DwViewMatrix = 0x373D800;
|
||||
public const nint DwViewRender = 0x373D9B0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
public static class Libengine2 {
|
||||
public const nint DwBuildNumber = 0x6D35F4;
|
||||
public const nint DwNetworkGameClient = 0x6D3F88;
|
||||
public const nint DwNetworkGameClientDeltaTick = 0x278;
|
||||
public const nint DwNetworkGameClientGetLocalPlayer = 0x13C0;
|
||||
public const nint DwNetworkGameClientGetMaxClients = 0x250;
|
||||
public const nint DwNetworkGameClientSignOnState = 0x260;
|
||||
public const nint DwWindowHeight = 0x6DCDC4;
|
||||
public const nint DwWindowWidth = 0x6DCDC0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
public static class Libinputsystem {
|
||||
public const nint DwInputSystem = 0x40160;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
public static class Libmatchmaking {
|
||||
public const nint DwGameTypes = 0x37C9A0;
|
||||
public const nint DwGameTypesMapName = 0x37CAC0;
|
||||
}
|
||||
}
|
50
output/linux/offsets.hpp
Normal file
50
output/linux/offsets.hpp
Normal file
@ -0,0 +1,50 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace offsets {
|
||||
// Module: libclient.so
|
||||
namespace libclient {
|
||||
constexpr std::ptrdiff_t dw_csgo_input = 0x3744680;
|
||||
constexpr std::ptrdiff_t dw_entity_list = 0x35AB8C8;
|
||||
constexpr std::ptrdiff_t dw_game_entity_system = 0x38619C0;
|
||||
constexpr std::ptrdiff_t dw_game_entity_system_get_highest_entity_index = 0x1540;
|
||||
constexpr std::ptrdiff_t dw_game_rules = 0x37373E8;
|
||||
constexpr std::ptrdiff_t dw_global_vars = 0x356C9D0;
|
||||
constexpr std::ptrdiff_t dw_glow_manager = 0x373BCF0;
|
||||
constexpr std::ptrdiff_t dw_local_player_controller = 0x371C918;
|
||||
constexpr std::ptrdiff_t dw_local_player_pawn = 0x373CCD8;
|
||||
constexpr std::ptrdiff_t dw_planted_c4 = 0x3751538;
|
||||
constexpr std::ptrdiff_t dw_prediction = 0x373CBA0;
|
||||
constexpr std::ptrdiff_t dw_sensitivity = 0x373B208;
|
||||
constexpr std::ptrdiff_t dw_sensitivity_sensitivity = 0x40;
|
||||
constexpr std::ptrdiff_t dw_view_angles = 0x3749A20;
|
||||
constexpr std::ptrdiff_t dw_view_matrix = 0x373D800;
|
||||
constexpr std::ptrdiff_t dw_view_render = 0x373D9B0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
namespace libengine2 {
|
||||
constexpr std::ptrdiff_t dw_build_number = 0x6D35F4;
|
||||
constexpr std::ptrdiff_t dw_network_game_client = 0x6D3F88;
|
||||
constexpr std::ptrdiff_t dw_network_game_client_delta_tick = 0x278;
|
||||
constexpr std::ptrdiff_t dw_network_game_client_get_local_player = 0x13C0;
|
||||
constexpr std::ptrdiff_t dw_network_game_client_get_max_clients = 0x250;
|
||||
constexpr std::ptrdiff_t dw_network_game_client_sign_on_state = 0x260;
|
||||
constexpr std::ptrdiff_t dw_window_height = 0x6DCDC4;
|
||||
constexpr std::ptrdiff_t dw_window_width = 0x6DCDC0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
namespace libinputsystem {
|
||||
constexpr std::ptrdiff_t dw_input_system = 0x40160;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
namespace libmatchmaking {
|
||||
constexpr std::ptrdiff_t dw_game_types = 0x37C9A0;
|
||||
constexpr std::ptrdiff_t dw_game_types_map_name = 0x37CAC0;
|
||||
}
|
||||
}
|
||||
}
|
120
output/linux/offsets.json
Normal file
120
output/linux/offsets.json
Normal file
@ -0,0 +1,120 @@
|
||||
{
|
||||
"offsets": {
|
||||
"libclient.so": [
|
||||
{
|
||||
"name": "dwCSGOInput",
|
||||
"value": 57951872
|
||||
},
|
||||
{
|
||||
"name": "dwEntityList",
|
||||
"value": 56277192
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem",
|
||||
"value": 59120064
|
||||
},
|
||||
{
|
||||
"name": "dwGameEntitySystem_getHighestEntityIndex",
|
||||
"value": 5440
|
||||
},
|
||||
{
|
||||
"name": "dwGameRules",
|
||||
"value": 57897960
|
||||
},
|
||||
{
|
||||
"name": "dwGlobalVars",
|
||||
"value": 56019408
|
||||
},
|
||||
{
|
||||
"name": "dwGlowManager",
|
||||
"value": 57916656
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerController",
|
||||
"value": 57788696
|
||||
},
|
||||
{
|
||||
"name": "dwLocalPlayerPawn",
|
||||
"value": 57920728
|
||||
},
|
||||
{
|
||||
"name": "dwPlantedC4",
|
||||
"value": 58004792
|
||||
},
|
||||
{
|
||||
"name": "dwPrediction",
|
||||
"value": 57920416
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity",
|
||||
"value": 57913864
|
||||
},
|
||||
{
|
||||
"name": "dwSensitivity_sensitivity",
|
||||
"value": 64
|
||||
},
|
||||
{
|
||||
"name": "dwViewAngles",
|
||||
"value": 57973280
|
||||
},
|
||||
{
|
||||
"name": "dwViewMatrix",
|
||||
"value": 57923584
|
||||
},
|
||||
{
|
||||
"name": "dwViewRender",
|
||||
"value": 57924016
|
||||
}
|
||||
],
|
||||
"libengine2.so": [
|
||||
{
|
||||
"name": "dwBuildNumber",
|
||||
"value": 7157236
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient",
|
||||
"value": 7159688
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_deltaTick",
|
||||
"value": 632
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getLocalPlayer",
|
||||
"value": 5056
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_getMaxClients",
|
||||
"value": 592
|
||||
},
|
||||
{
|
||||
"name": "dwNetworkGameClient_signOnState",
|
||||
"value": 608
|
||||
},
|
||||
{
|
||||
"name": "dwWindowHeight",
|
||||
"value": 7196100
|
||||
},
|
||||
{
|
||||
"name": "dwWindowWidth",
|
||||
"value": 7196096
|
||||
}
|
||||
],
|
||||
"libinputsystem.so": [
|
||||
{
|
||||
"name": "dwInputSystem",
|
||||
"value": 262496
|
||||
}
|
||||
],
|
||||
"libmatchmaking.so": [
|
||||
{
|
||||
"name": "dwGameTypes",
|
||||
"value": 3656096
|
||||
},
|
||||
{
|
||||
"name": "dwGameTypes_mapName",
|
||||
"value": 3656384
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
46
output/linux/offsets.rs
Normal file
46
output/linux/offsets.rs
Normal file
@ -0,0 +1,46 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-03-28 07:07:08.835893701 UTC
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod offsets {
|
||||
// Module: libclient.so
|
||||
pub mod libclient {
|
||||
pub const DW_CSGO_INPUT: usize = 0x3744680;
|
||||
pub const DW_ENTITY_LIST: usize = 0x35AB8C8;
|
||||
pub const DW_GAME_ENTITY_SYSTEM: usize = 0x38619C0;
|
||||
pub const DW_GAME_ENTITY_SYSTEM_GET_HIGHEST_ENTITY_INDEX: usize = 0x1540;
|
||||
pub const DW_GAME_RULES: usize = 0x37373E8;
|
||||
pub const DW_GLOBAL_VARS: usize = 0x356C9D0;
|
||||
pub const DW_GLOW_MANAGER: usize = 0x373BCF0;
|
||||
pub const DW_LOCAL_PLAYER_CONTROLLER: usize = 0x371C918;
|
||||
pub const DW_LOCAL_PLAYER_PAWN: usize = 0x373CCD8;
|
||||
pub const DW_PLANTED_C4: usize = 0x3751538;
|
||||
pub const DW_PREDICTION: usize = 0x373CBA0;
|
||||
pub const DW_SENSITIVITY: usize = 0x373B208;
|
||||
pub const DW_SENSITIVITY_SENSITIVITY: usize = 0x40;
|
||||
pub const DW_VIEW_ANGLES: usize = 0x3749A20;
|
||||
pub const DW_VIEW_MATRIX: usize = 0x373D800;
|
||||
pub const DW_VIEW_RENDER: usize = 0x373D9B0;
|
||||
}
|
||||
// Module: libengine2.so
|
||||
pub mod libengine2 {
|
||||
pub const DW_BUILD_NUMBER: usize = 0x6D35F4;
|
||||
pub const DW_NETWORK_GAME_CLIENT: usize = 0x6D3F88;
|
||||
pub const DW_NETWORK_GAME_CLIENT_DELTA_TICK: usize = 0x278;
|
||||
pub const DW_NETWORK_GAME_CLIENT_GET_LOCAL_PLAYER: usize = 0x13C0;
|
||||
pub const DW_NETWORK_GAME_CLIENT_GET_MAX_CLIENTS: usize = 0x250;
|
||||
pub const DW_NETWORK_GAME_CLIENT_SIGN_ON_STATE: usize = 0x260;
|
||||
pub const DW_WINDOW_HEIGHT: usize = 0x6DCDC4;
|
||||
pub const DW_WINDOW_WIDTH: usize = 0x6DCDC0;
|
||||
}
|
||||
// Module: libinputsystem.so
|
||||
pub mod libinputsystem {
|
||||
pub const DW_INPUT_SYSTEM: usize = 0x40160;
|
||||
}
|
||||
// Module: libmatchmaking.so
|
||||
pub mod libmatchmaking {
|
||||
pub const DW_GAME_TYPES: usize = 0x37C9A0;
|
||||
pub const DW_GAME_TYPES_MAP_NAME: usize = 0x37CAC0;
|
||||
}
|
||||
}
|
||||
}
|
16919
output/linux/schemas.cs
Normal file
16919
output/linux/schemas.cs
Normal file
File diff suppressed because it is too large
Load Diff
16925
output/linux/schemas.hpp
Normal file
16925
output/linux/schemas.hpp
Normal file
File diff suppressed because it is too large
Load Diff
211540
output/linux/schemas.json
Normal file
211540
output/linux/schemas.json
Normal file
File diff suppressed because it is too large
Load Diff
16921
output/linux/schemas.rs
Normal file
16921
output/linux/schemas.rs
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,206 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 13
|
||||
// Enum count: 5
|
||||
public static class Materialsystem2Dll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum VertJustification_e : uint {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum LayoutPositionType_e : uint {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum ViewFadeMode_t : uint {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
VIEW_FADE_MODULATE = 0x1,
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum BloomBlendMode_t : uint {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
BLOOM_BLEND_SCREEN = 0x1,
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum HorizJustification_e : uint {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParam_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamVector_t {
|
||||
public const nint m_value = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamString_t {
|
||||
public const nint m_value = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingResource_t {
|
||||
public const nint m_bHasTonemapParams = 0x0; // bool
|
||||
public const nint m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
||||
public const nint m_bHasBloomParams = 0x40; // bool
|
||||
public const nint m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
||||
public const nint m_bHasVignetteParams = 0xB4; // bool
|
||||
public const nint m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
||||
public const nint m_bHasLocalContrastParams = 0xDC; // bool
|
||||
public const nint m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||
public const nint m_nColorCorrectionVolumeDim = 0xF4; // int32
|
||||
public const nint m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
||||
public const nint m_bHasColorCorrection = 0x110; // bool
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamInt_t {
|
||||
public const nint m_nValue = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingVignetteParameters_t {
|
||||
public const nint m_flVignetteStrength = 0x0; // float32
|
||||
public const nint m_vCenter = 0x4; // Vector2D
|
||||
public const nint m_flRadius = 0xC; // float32
|
||||
public const nint m_flRoundness = 0x10; // float32
|
||||
public const nint m_flFeather = 0x14; // float32
|
||||
public const nint m_vColorTint = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingLocalContrastParameters_t {
|
||||
public const nint m_flLocalContrastStrength = 0x0; // float32
|
||||
public const nint m_flLocalContrastEdgeStrength = 0x4; // float32
|
||||
public const nint m_flLocalContrastVignetteStart = 0x8; // float32
|
||||
public const nint m_flLocalContrastVignetteEnd = 0xC; // float32
|
||||
public const nint m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingTonemapParameters_t {
|
||||
public const nint m_flExposureBias = 0x0; // float32
|
||||
public const nint m_flShoulderStrength = 0x4; // float32
|
||||
public const nint m_flLinearStrength = 0x8; // float32
|
||||
public const nint m_flLinearAngle = 0xC; // float32
|
||||
public const nint m_flToeStrength = 0x10; // float32
|
||||
public const nint m_flToeNum = 0x14; // float32
|
||||
public const nint m_flToeDenom = 0x18; // float32
|
||||
public const nint m_flWhitePoint = 0x1C; // float32
|
||||
public const nint m_flLuminanceSource = 0x20; // float32
|
||||
public const nint m_flExposureBiasShadows = 0x24; // float32
|
||||
public const nint m_flExposureBiasHighlights = 0x28; // float32
|
||||
public const nint m_flMinShadowLum = 0x2C; // float32
|
||||
public const nint m_flMaxShadowLum = 0x30; // float32
|
||||
public const nint m_flMinHighlightLum = 0x34; // float32
|
||||
public const nint m_flMaxHighlightLum = 0x38; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamBuffer_t {
|
||||
public const nint m_value = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialResourceData_t {
|
||||
public const nint m_materialName = 0x0; // CUtlString
|
||||
public const nint m_shaderName = 0x8; // CUtlString
|
||||
public const nint m_intParams = 0x10; // CUtlVector<MaterialParamInt_t>
|
||||
public const nint m_floatParams = 0x28; // CUtlVector<MaterialParamFloat_t>
|
||||
public const nint m_vectorParams = 0x40; // CUtlVector<MaterialParamVector_t>
|
||||
public const nint m_textureParams = 0x58; // CUtlVector<MaterialParamTexture_t>
|
||||
public const nint m_dynamicParams = 0x70; // CUtlVector<MaterialParamBuffer_t>
|
||||
public const nint m_dynamicTextureParams = 0x88; // CUtlVector<MaterialParamBuffer_t>
|
||||
public const nint m_intAttributes = 0xA0; // CUtlVector<MaterialParamInt_t>
|
||||
public const nint m_floatAttributes = 0xB8; // CUtlVector<MaterialParamFloat_t>
|
||||
public const nint m_vectorAttributes = 0xD0; // CUtlVector<MaterialParamVector_t>
|
||||
public const nint m_textureAttributes = 0xE8; // CUtlVector<MaterialParamTexture_t>
|
||||
public const nint m_stringAttributes = 0x100; // CUtlVector<MaterialParamString_t>
|
||||
public const nint m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PostProcessingBloomParameters_t {
|
||||
public const nint m_blendMode = 0x0; // BloomBlendMode_t
|
||||
public const nint m_flBloomStrength = 0x4; // float32
|
||||
public const nint m_flScreenBloomStrength = 0x8; // float32
|
||||
public const nint m_flBlurBloomStrength = 0xC; // float32
|
||||
public const nint m_flBloomThreshold = 0x10; // float32
|
||||
public const nint m_flBloomThresholdWidth = 0x14; // float32
|
||||
public const nint m_flSkyboxBloomStrength = 0x18; // float32
|
||||
public const nint m_flBloomStartValue = 0x1C; // float32
|
||||
public const nint m_flBlurWeight = 0x20; // float32[5]
|
||||
public const nint m_vBlurTint = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamFloat_t {
|
||||
public const nint m_flValue = 0x8; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class MaterialParamTexture_t {
|
||||
public const nint m_pValue = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
||||
}
|
||||
}
|
||||
}
|
@ -1,212 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 13
|
||||
// Enum count: 5
|
||||
namespace materialsystem2_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class VertJustification_e : uint32_t {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class LayoutPositionType_e : uint32_t {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class ViewFadeMode_t : uint32_t {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
VIEW_FADE_MODULATE = 0x1,
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class BloomBlendMode_t : uint32_t {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
BLOOM_BLEND_SCREEN = 0x1,
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class HorizJustification_e : uint32_t {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParam_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamVector_t {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamString_t {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingResource_t {
|
||||
constexpr std::ptrdiff_t m_bHasTonemapParams = 0x0; // bool
|
||||
constexpr std::ptrdiff_t m_toneMapParams = 0x4; // PostProcessingTonemapParameters_t
|
||||
constexpr std::ptrdiff_t m_bHasBloomParams = 0x40; // bool
|
||||
constexpr std::ptrdiff_t m_bloomParams = 0x44; // PostProcessingBloomParameters_t
|
||||
constexpr std::ptrdiff_t m_bHasVignetteParams = 0xB4; // bool
|
||||
constexpr std::ptrdiff_t m_vignetteParams = 0xB8; // PostProcessingVignetteParameters_t
|
||||
constexpr std::ptrdiff_t m_bHasLocalContrastParams = 0xDC; // bool
|
||||
constexpr std::ptrdiff_t m_localConstrastParams = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||
constexpr std::ptrdiff_t m_nColorCorrectionVolumeDim = 0xF4; // int32
|
||||
constexpr std::ptrdiff_t m_colorCorrectionVolumeData = 0xF8; // CUtlBinaryBlock
|
||||
constexpr std::ptrdiff_t m_bHasColorCorrection = 0x110; // bool
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamInt_t {
|
||||
constexpr std::ptrdiff_t m_nValue = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingVignetteParameters_t {
|
||||
constexpr std::ptrdiff_t m_flVignetteStrength = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_vCenter = 0x4; // Vector2D
|
||||
constexpr std::ptrdiff_t m_flRadius = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_flRoundness = 0x10; // float32
|
||||
constexpr std::ptrdiff_t m_flFeather = 0x14; // float32
|
||||
constexpr std::ptrdiff_t m_vColorTint = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingLocalContrastParameters_t {
|
||||
constexpr std::ptrdiff_t m_flLocalContrastStrength = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_flLocalContrastEdgeStrength = 0x4; // float32
|
||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteStart = 0x8; // float32
|
||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteEnd = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_flLocalContrastVignetteBlur = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingTonemapParameters_t {
|
||||
constexpr std::ptrdiff_t m_flExposureBias = 0x0; // float32
|
||||
constexpr std::ptrdiff_t m_flShoulderStrength = 0x4; // float32
|
||||
constexpr std::ptrdiff_t m_flLinearStrength = 0x8; // float32
|
||||
constexpr std::ptrdiff_t m_flLinearAngle = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_flToeStrength = 0x10; // float32
|
||||
constexpr std::ptrdiff_t m_flToeNum = 0x14; // float32
|
||||
constexpr std::ptrdiff_t m_flToeDenom = 0x18; // float32
|
||||
constexpr std::ptrdiff_t m_flWhitePoint = 0x1C; // float32
|
||||
constexpr std::ptrdiff_t m_flLuminanceSource = 0x20; // float32
|
||||
constexpr std::ptrdiff_t m_flExposureBiasShadows = 0x24; // float32
|
||||
constexpr std::ptrdiff_t m_flExposureBiasHighlights = 0x28; // float32
|
||||
constexpr std::ptrdiff_t m_flMinShadowLum = 0x2C; // float32
|
||||
constexpr std::ptrdiff_t m_flMaxShadowLum = 0x30; // float32
|
||||
constexpr std::ptrdiff_t m_flMinHighlightLum = 0x34; // float32
|
||||
constexpr std::ptrdiff_t m_flMaxHighlightLum = 0x38; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamBuffer_t {
|
||||
constexpr std::ptrdiff_t m_value = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialResourceData_t {
|
||||
constexpr std::ptrdiff_t m_materialName = 0x0; // CUtlString
|
||||
constexpr std::ptrdiff_t m_shaderName = 0x8; // CUtlString
|
||||
constexpr std::ptrdiff_t m_intParams = 0x10; // CUtlVector<MaterialParamInt_t>
|
||||
constexpr std::ptrdiff_t m_floatParams = 0x28; // CUtlVector<MaterialParamFloat_t>
|
||||
constexpr std::ptrdiff_t m_vectorParams = 0x40; // CUtlVector<MaterialParamVector_t>
|
||||
constexpr std::ptrdiff_t m_textureParams = 0x58; // CUtlVector<MaterialParamTexture_t>
|
||||
constexpr std::ptrdiff_t m_dynamicParams = 0x70; // CUtlVector<MaterialParamBuffer_t>
|
||||
constexpr std::ptrdiff_t m_dynamicTextureParams = 0x88; // CUtlVector<MaterialParamBuffer_t>
|
||||
constexpr std::ptrdiff_t m_intAttributes = 0xA0; // CUtlVector<MaterialParamInt_t>
|
||||
constexpr std::ptrdiff_t m_floatAttributes = 0xB8; // CUtlVector<MaterialParamFloat_t>
|
||||
constexpr std::ptrdiff_t m_vectorAttributes = 0xD0; // CUtlVector<MaterialParamVector_t>
|
||||
constexpr std::ptrdiff_t m_textureAttributes = 0xE8; // CUtlVector<MaterialParamTexture_t>
|
||||
constexpr std::ptrdiff_t m_stringAttributes = 0x100; // CUtlVector<MaterialParamString_t>
|
||||
constexpr std::ptrdiff_t m_renderAttributesUsed = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace PostProcessingBloomParameters_t {
|
||||
constexpr std::ptrdiff_t m_blendMode = 0x0; // BloomBlendMode_t
|
||||
constexpr std::ptrdiff_t m_flBloomStrength = 0x4; // float32
|
||||
constexpr std::ptrdiff_t m_flScreenBloomStrength = 0x8; // float32
|
||||
constexpr std::ptrdiff_t m_flBlurBloomStrength = 0xC; // float32
|
||||
constexpr std::ptrdiff_t m_flBloomThreshold = 0x10; // float32
|
||||
constexpr std::ptrdiff_t m_flBloomThresholdWidth = 0x14; // float32
|
||||
constexpr std::ptrdiff_t m_flSkyboxBloomStrength = 0x18; // float32
|
||||
constexpr std::ptrdiff_t m_flBloomStartValue = 0x1C; // float32
|
||||
constexpr std::ptrdiff_t m_flBlurWeight = 0x20; // float32[5]
|
||||
constexpr std::ptrdiff_t m_vBlurTint = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamFloat_t {
|
||||
constexpr std::ptrdiff_t m_flValue = 0x8; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace MaterialParamTexture_t {
|
||||
constexpr std::ptrdiff_t m_pValue = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,266 +0,0 @@
|
||||
{
|
||||
"materialsystem2.dll": {
|
||||
"classes": {
|
||||
"MaterialParamBuffer_t": {
|
||||
"fields": {
|
||||
"m_value": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamFloat_t": {
|
||||
"fields": {
|
||||
"m_flValue": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamInt_t": {
|
||||
"fields": {
|
||||
"m_nValue": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamString_t": {
|
||||
"fields": {
|
||||
"m_value": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamTexture_t": {
|
||||
"fields": {
|
||||
"m_pValue": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParamVector_t": {
|
||||
"fields": {
|
||||
"m_value": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "MaterialParam_t"
|
||||
},
|
||||
"MaterialParam_t": {
|
||||
"fields": {
|
||||
"m_name": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"MaterialResourceData_t": {
|
||||
"fields": {
|
||||
"m_dynamicParams": 112,
|
||||
"m_dynamicTextureParams": 136,
|
||||
"m_floatAttributes": 184,
|
||||
"m_floatParams": 40,
|
||||
"m_intAttributes": 160,
|
||||
"m_intParams": 16,
|
||||
"m_materialName": 0,
|
||||
"m_renderAttributesUsed": 280,
|
||||
"m_shaderName": 8,
|
||||
"m_stringAttributes": 256,
|
||||
"m_textureAttributes": 232,
|
||||
"m_textureParams": 88,
|
||||
"m_vectorAttributes": 208,
|
||||
"m_vectorParams": 64
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingBloomParameters_t": {
|
||||
"fields": {
|
||||
"m_blendMode": 0,
|
||||
"m_flBloomStartValue": 28,
|
||||
"m_flBloomStrength": 4,
|
||||
"m_flBloomThreshold": 16,
|
||||
"m_flBloomThresholdWidth": 20,
|
||||
"m_flBlurBloomStrength": 12,
|
||||
"m_flBlurWeight": 32,
|
||||
"m_flScreenBloomStrength": 8,
|
||||
"m_flSkyboxBloomStrength": 24,
|
||||
"m_vBlurTint": 52
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingLocalContrastParameters_t": {
|
||||
"fields": {
|
||||
"m_flLocalContrastEdgeStrength": 4,
|
||||
"m_flLocalContrastStrength": 0,
|
||||
"m_flLocalContrastVignetteBlur": 16,
|
||||
"m_flLocalContrastVignetteEnd": 12,
|
||||
"m_flLocalContrastVignetteStart": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingResource_t": {
|
||||
"fields": {
|
||||
"m_bHasBloomParams": 64,
|
||||
"m_bHasColorCorrection": 272,
|
||||
"m_bHasLocalContrastParams": 220,
|
||||
"m_bHasTonemapParams": 0,
|
||||
"m_bHasVignetteParams": 180,
|
||||
"m_bloomParams": 68,
|
||||
"m_colorCorrectionVolumeData": 248,
|
||||
"m_localConstrastParams": 224,
|
||||
"m_nColorCorrectionVolumeDim": 244,
|
||||
"m_toneMapParams": 4,
|
||||
"m_vignetteParams": 184
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingTonemapParameters_t": {
|
||||
"fields": {
|
||||
"m_flExposureBias": 0,
|
||||
"m_flExposureBiasHighlights": 40,
|
||||
"m_flExposureBiasShadows": 36,
|
||||
"m_flLinearAngle": 12,
|
||||
"m_flLinearStrength": 8,
|
||||
"m_flLuminanceSource": 32,
|
||||
"m_flMaxHighlightLum": 56,
|
||||
"m_flMaxShadowLum": 48,
|
||||
"m_flMinHighlightLum": 52,
|
||||
"m_flMinShadowLum": 44,
|
||||
"m_flShoulderStrength": 4,
|
||||
"m_flToeDenom": 24,
|
||||
"m_flToeNum": 20,
|
||||
"m_flToeStrength": 16,
|
||||
"m_flWhitePoint": 28
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PostProcessingVignetteParameters_t": {
|
||||
"fields": {
|
||||
"m_flFeather": 20,
|
||||
"m_flRadius": 12,
|
||||
"m_flRoundness": 16,
|
||||
"m_flVignetteStrength": 0,
|
||||
"m_vCenter": 4,
|
||||
"m_vColorTint": 24
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"BloomBlendMode_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"BLOOM_BLEND_ADD": 0,
|
||||
"BLOOM_BLEND_BLUR": 2,
|
||||
"BLOOM_BLEND_SCREEN": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"HorizJustification_e": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"HORIZ_JUSTIFICATION_CENTER": 1,
|
||||
"HORIZ_JUSTIFICATION_LEFT": 0,
|
||||
"HORIZ_JUSTIFICATION_NONE": 3,
|
||||
"HORIZ_JUSTIFICATION_RIGHT": 2
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"LayoutPositionType_e": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"LAYOUTPOSITIONTYPE_FRACTIONAL": 1,
|
||||
"LAYOUTPOSITIONTYPE_NONE": 2,
|
||||
"LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"VertJustification_e": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"VERT_JUSTIFICATION_BOTTOM": 2,
|
||||
"VERT_JUSTIFICATION_CENTER": 1,
|
||||
"VERT_JUSTIFICATION_NONE": 3,
|
||||
"VERT_JUSTIFICATION_TOP": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"ViewFadeMode_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"VIEW_FADE_CONSTANT_COLOR": 0,
|
||||
"VIEW_FADE_MOD2X": 2,
|
||||
"VIEW_FADE_MODULATE": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,215 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: materialsystem2.dll
|
||||
// Class count: 13
|
||||
// Enum count: 5
|
||||
pub mod materialsystem2_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
#[repr(u32)]
|
||||
pub enum VertJustification_e {
|
||||
VERT_JUSTIFICATION_TOP = 0x0,
|
||||
VERT_JUSTIFICATION_CENTER = 0x1,
|
||||
VERT_JUSTIFICATION_BOTTOM = 0x2,
|
||||
VERT_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum LayoutPositionType_e {
|
||||
LAYOUTPOSITIONTYPE_VIEWPORT_RELATIVE = 0x0,
|
||||
LAYOUTPOSITIONTYPE_FRACTIONAL = 0x1,
|
||||
LAYOUTPOSITIONTYPE_NONE = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum ViewFadeMode_t {
|
||||
VIEW_FADE_CONSTANT_COLOR = 0x0,
|
||||
VIEW_FADE_MODULATE = 0x1,
|
||||
VIEW_FADE_MOD2X = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum BloomBlendMode_t {
|
||||
BLOOM_BLEND_ADD = 0x0,
|
||||
BLOOM_BLEND_SCREEN = 0x1,
|
||||
BLOOM_BLEND_BLUR = 0x2
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
#[repr(u32)]
|
||||
pub enum HorizJustification_e {
|
||||
HORIZ_JUSTIFICATION_LEFT = 0x0,
|
||||
HORIZ_JUSTIFICATION_CENTER = 0x1,
|
||||
HORIZ_JUSTIFICATION_RIGHT = 0x2,
|
||||
HORIZ_JUSTIFICATION_NONE = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParam_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamVector_t {
|
||||
pub const m_value: usize = 0x8; // Vector4D
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamString_t {
|
||||
pub const m_value: usize = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 11
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingResource_t {
|
||||
pub const m_bHasTonemapParams: usize = 0x0; // bool
|
||||
pub const m_toneMapParams: usize = 0x4; // PostProcessingTonemapParameters_t
|
||||
pub const m_bHasBloomParams: usize = 0x40; // bool
|
||||
pub const m_bloomParams: usize = 0x44; // PostProcessingBloomParameters_t
|
||||
pub const m_bHasVignetteParams: usize = 0xB4; // bool
|
||||
pub const m_vignetteParams: usize = 0xB8; // PostProcessingVignetteParameters_t
|
||||
pub const m_bHasLocalContrastParams: usize = 0xDC; // bool
|
||||
pub const m_localConstrastParams: usize = 0xE0; // PostProcessingLocalContrastParameters_t
|
||||
pub const m_nColorCorrectionVolumeDim: usize = 0xF4; // int32
|
||||
pub const m_colorCorrectionVolumeData: usize = 0xF8; // CUtlBinaryBlock
|
||||
pub const m_bHasColorCorrection: usize = 0x110; // bool
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamInt_t {
|
||||
pub const m_nValue: usize = 0x8; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingVignetteParameters_t {
|
||||
pub const m_flVignetteStrength: usize = 0x0; // float32
|
||||
pub const m_vCenter: usize = 0x4; // Vector2D
|
||||
pub const m_flRadius: usize = 0xC; // float32
|
||||
pub const m_flRoundness: usize = 0x10; // float32
|
||||
pub const m_flFeather: usize = 0x14; // float32
|
||||
pub const m_vColorTint: usize = 0x18; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingLocalContrastParameters_t {
|
||||
pub const m_flLocalContrastStrength: usize = 0x0; // float32
|
||||
pub const m_flLocalContrastEdgeStrength: usize = 0x4; // float32
|
||||
pub const m_flLocalContrastVignetteStart: usize = 0x8; // float32
|
||||
pub const m_flLocalContrastVignetteEnd: usize = 0xC; // float32
|
||||
pub const m_flLocalContrastVignetteBlur: usize = 0x10; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 15
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingTonemapParameters_t {
|
||||
pub const m_flExposureBias: usize = 0x0; // float32
|
||||
pub const m_flShoulderStrength: usize = 0x4; // float32
|
||||
pub const m_flLinearStrength: usize = 0x8; // float32
|
||||
pub const m_flLinearAngle: usize = 0xC; // float32
|
||||
pub const m_flToeStrength: usize = 0x10; // float32
|
||||
pub const m_flToeNum: usize = 0x14; // float32
|
||||
pub const m_flToeDenom: usize = 0x18; // float32
|
||||
pub const m_flWhitePoint: usize = 0x1C; // float32
|
||||
pub const m_flLuminanceSource: usize = 0x20; // float32
|
||||
pub const m_flExposureBiasShadows: usize = 0x24; // float32
|
||||
pub const m_flExposureBiasHighlights: usize = 0x28; // float32
|
||||
pub const m_flMinShadowLum: usize = 0x2C; // float32
|
||||
pub const m_flMaxShadowLum: usize = 0x30; // float32
|
||||
pub const m_flMinHighlightLum: usize = 0x34; // float32
|
||||
pub const m_flMaxHighlightLum: usize = 0x38; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamBuffer_t {
|
||||
pub const m_value: usize = 0x8; // CUtlBinaryBlock
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 14
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialResourceData_t {
|
||||
pub const m_materialName: usize = 0x0; // CUtlString
|
||||
pub const m_shaderName: usize = 0x8; // CUtlString
|
||||
pub const m_intParams: usize = 0x10; // CUtlVector<MaterialParamInt_t>
|
||||
pub const m_floatParams: usize = 0x28; // CUtlVector<MaterialParamFloat_t>
|
||||
pub const m_vectorParams: usize = 0x40; // CUtlVector<MaterialParamVector_t>
|
||||
pub const m_textureParams: usize = 0x58; // CUtlVector<MaterialParamTexture_t>
|
||||
pub const m_dynamicParams: usize = 0x70; // CUtlVector<MaterialParamBuffer_t>
|
||||
pub const m_dynamicTextureParams: usize = 0x88; // CUtlVector<MaterialParamBuffer_t>
|
||||
pub const m_intAttributes: usize = 0xA0; // CUtlVector<MaterialParamInt_t>
|
||||
pub const m_floatAttributes: usize = 0xB8; // CUtlVector<MaterialParamFloat_t>
|
||||
pub const m_vectorAttributes: usize = 0xD0; // CUtlVector<MaterialParamVector_t>
|
||||
pub const m_textureAttributes: usize = 0xE8; // CUtlVector<MaterialParamTexture_t>
|
||||
pub const m_stringAttributes: usize = 0x100; // CUtlVector<MaterialParamString_t>
|
||||
pub const m_renderAttributesUsed: usize = 0x118; // CUtlVector<CUtlString>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod PostProcessingBloomParameters_t {
|
||||
pub const m_blendMode: usize = 0x0; // BloomBlendMode_t
|
||||
pub const m_flBloomStrength: usize = 0x4; // float32
|
||||
pub const m_flScreenBloomStrength: usize = 0x8; // float32
|
||||
pub const m_flBlurBloomStrength: usize = 0xC; // float32
|
||||
pub const m_flBloomThreshold: usize = 0x10; // float32
|
||||
pub const m_flBloomThresholdWidth: usize = 0x14; // float32
|
||||
pub const m_flSkyboxBloomStrength: usize = 0x18; // float32
|
||||
pub const m_flBloomStartValue: usize = 0x1C; // float32
|
||||
pub const m_flBlurWeight: usize = 0x20; // float32[5]
|
||||
pub const m_vBlurTint: usize = 0x34; // Vector[5]
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamFloat_t {
|
||||
pub const m_flValue: usize = 0x8; // float32
|
||||
}
|
||||
// Parent: MaterialParam_t
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod MaterialParamTexture_t {
|
||||
pub const m_pValue: usize = 0x8; // CStrongHandle<InfoForResourceTypeCTextureBase>
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 0
|
||||
public static class NetworksystemDll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class ChangeAccessorFieldPathIndex_t {
|
||||
public const nint m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 0
|
||||
namespace networksystem_dll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace ChangeAccessorFieldPathIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"networksystem.dll": {
|
||||
"classes": {
|
||||
"ChangeAccessorFieldPathIndex_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {}
|
||||
}
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: networksystem.dll
|
||||
// Class count: 1
|
||||
// Enum count: 0
|
||||
pub mod networksystem_dll {
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod ChangeAccessorFieldPathIndex_t {
|
||||
pub const m_Value: usize = 0x0; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Offsets {
|
||||
// Module: client.dll
|
||||
public static class ClientDll {
|
||||
public const nint dwCSGOInput = 0x1A92FF0;
|
||||
public const nint dwEntityList = 0x1A1F730;
|
||||
public const nint dwGameEntitySystem = 0x1B43F58;
|
||||
public const nint dwGameEntitySystem_highestEntityIndex = 0x20F0;
|
||||
public const nint dwGameRules = 0x1A84170;
|
||||
public const nint dwGlobalVars = 0x1867DB0;
|
||||
public const nint dwGlowManager = 0x1A84190;
|
||||
public const nint dwLocalPlayerController = 0x1A6E9C0;
|
||||
public const nint dwLocalPlayerPawn = 0x1874050;
|
||||
public const nint dwPlantedC4 = 0x1A8E4A0;
|
||||
public const nint dwPrediction = 0x1873ED0;
|
||||
public const nint dwSensitivity = 0x1A85768;
|
||||
public const nint dwSensitivity_sensitivity = 0x40;
|
||||
public const nint dwViewAngles = 0x1A933C0;
|
||||
public const nint dwViewMatrix = 0x1A89130;
|
||||
public const nint dwViewRender = 0x1A89940;
|
||||
public const nint dwWeaponC4 = 0x1A22630;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
public static class Engine2Dll {
|
||||
public const nint dwBuildNumber = 0x540BE4;
|
||||
public const nint dwNetworkGameClient = 0x53FCE0;
|
||||
public const nint dwNetworkGameClient_clientTickCount = 0x368;
|
||||
public const nint dwNetworkGameClient_deltaTick = 0x244;
|
||||
public const nint dwNetworkGameClient_isBackgroundMap = 0x281447;
|
||||
public const nint dwNetworkGameClient_localPlayer = 0xF0;
|
||||
public const nint dwNetworkGameClient_maxClients = 0x238;
|
||||
public const nint dwNetworkGameClient_serverTickCount = 0x36C;
|
||||
public const nint dwNetworkGameClient_signOnState = 0x228;
|
||||
public const nint dwWindowHeight = 0x62354C;
|
||||
public const nint dwWindowWidth = 0x623548;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
public static class InputsystemDll {
|
||||
public const nint dwInputSystem = 0x387E0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
public static class MatchmakingDll {
|
||||
public const nint dwGameTypes = 0x1A3190;
|
||||
public const nint dwGameTypes_mapName = 0x120;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
public static class SoundsystemDll {
|
||||
public const nint dwSoundSystem = 0x3A15F0;
|
||||
public const nint dwSoundSystem_engineViewData = 0x7C;
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace offsets {
|
||||
// Module: client.dll
|
||||
namespace client_dll {
|
||||
constexpr std::ptrdiff_t dwCSGOInput = 0x1A92FF0;
|
||||
constexpr std::ptrdiff_t dwEntityList = 0x1A1F730;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem = 0x1B43F58;
|
||||
constexpr std::ptrdiff_t dwGameEntitySystem_highestEntityIndex = 0x20F0;
|
||||
constexpr std::ptrdiff_t dwGameRules = 0x1A84170;
|
||||
constexpr std::ptrdiff_t dwGlobalVars = 0x1867DB0;
|
||||
constexpr std::ptrdiff_t dwGlowManager = 0x1A84190;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerController = 0x1A6E9C0;
|
||||
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x1874050;
|
||||
constexpr std::ptrdiff_t dwPlantedC4 = 0x1A8E4A0;
|
||||
constexpr std::ptrdiff_t dwPrediction = 0x1873ED0;
|
||||
constexpr std::ptrdiff_t dwSensitivity = 0x1A85768;
|
||||
constexpr std::ptrdiff_t dwSensitivity_sensitivity = 0x40;
|
||||
constexpr std::ptrdiff_t dwViewAngles = 0x1A933C0;
|
||||
constexpr std::ptrdiff_t dwViewMatrix = 0x1A89130;
|
||||
constexpr std::ptrdiff_t dwViewRender = 0x1A89940;
|
||||
constexpr std::ptrdiff_t dwWeaponC4 = 0x1A22630;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
namespace engine2_dll {
|
||||
constexpr std::ptrdiff_t dwBuildNumber = 0x540BE4;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient = 0x53FCE0;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_clientTickCount = 0x368;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_deltaTick = 0x244;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_isBackgroundMap = 0x281447;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_localPlayer = 0xF0;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_maxClients = 0x238;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_serverTickCount = 0x36C;
|
||||
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x228;
|
||||
constexpr std::ptrdiff_t dwWindowHeight = 0x62354C;
|
||||
constexpr std::ptrdiff_t dwWindowWidth = 0x623548;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
namespace inputsystem_dll {
|
||||
constexpr std::ptrdiff_t dwInputSystem = 0x387E0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
namespace matchmaking_dll {
|
||||
constexpr std::ptrdiff_t dwGameTypes = 0x1A3190;
|
||||
constexpr std::ptrdiff_t dwGameTypes_mapName = 0x120;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
namespace soundsystem_dll {
|
||||
constexpr std::ptrdiff_t dwSoundSystem = 0x3A15F0;
|
||||
constexpr std::ptrdiff_t dwSoundSystem_engineViewData = 0x7C;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
{
|
||||
"client.dll": {
|
||||
"dwCSGOInput": 27865072,
|
||||
"dwEntityList": 27391792,
|
||||
"dwGameEntitySystem": 28589912,
|
||||
"dwGameEntitySystem_highestEntityIndex": 8432,
|
||||
"dwGameRules": 27804016,
|
||||
"dwGlobalVars": 25591216,
|
||||
"dwGlowManager": 27804048,
|
||||
"dwLocalPlayerController": 27716032,
|
||||
"dwLocalPlayerPawn": 25641040,
|
||||
"dwPlantedC4": 27845792,
|
||||
"dwPrediction": 25640656,
|
||||
"dwSensitivity": 27809640,
|
||||
"dwSensitivity_sensitivity": 64,
|
||||
"dwViewAngles": 27866048,
|
||||
"dwViewMatrix": 27824432,
|
||||
"dwViewRender": 27826496,
|
||||
"dwWeaponC4": 27403824
|
||||
},
|
||||
"engine2.dll": {
|
||||
"dwBuildNumber": 5508068,
|
||||
"dwNetworkGameClient": 5504224,
|
||||
"dwNetworkGameClient_clientTickCount": 872,
|
||||
"dwNetworkGameClient_deltaTick": 580,
|
||||
"dwNetworkGameClient_isBackgroundMap": 2626631,
|
||||
"dwNetworkGameClient_localPlayer": 240,
|
||||
"dwNetworkGameClient_maxClients": 568,
|
||||
"dwNetworkGameClient_serverTickCount": 876,
|
||||
"dwNetworkGameClient_signOnState": 552,
|
||||
"dwWindowHeight": 6436172,
|
||||
"dwWindowWidth": 6436168
|
||||
},
|
||||
"inputsystem.dll": {
|
||||
"dwInputSystem": 231392
|
||||
},
|
||||
"matchmaking.dll": {
|
||||
"dwGameTypes": 1716624,
|
||||
"dwGameTypes_mapName": 288
|
||||
},
|
||||
"soundsystem.dll": {
|
||||
"dwSoundSystem": 3806704,
|
||||
"dwSoundSystem_engineViewData": 124
|
||||
}
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod offsets {
|
||||
// Module: client.dll
|
||||
pub mod client_dll {
|
||||
pub const dwCSGOInput: usize = 0x1A92FF0;
|
||||
pub const dwEntityList: usize = 0x1A1F730;
|
||||
pub const dwGameEntitySystem: usize = 0x1B43F58;
|
||||
pub const dwGameEntitySystem_highestEntityIndex: usize = 0x20F0;
|
||||
pub const dwGameRules: usize = 0x1A84170;
|
||||
pub const dwGlobalVars: usize = 0x1867DB0;
|
||||
pub const dwGlowManager: usize = 0x1A84190;
|
||||
pub const dwLocalPlayerController: usize = 0x1A6E9C0;
|
||||
pub const dwLocalPlayerPawn: usize = 0x1874050;
|
||||
pub const dwPlantedC4: usize = 0x1A8E4A0;
|
||||
pub const dwPrediction: usize = 0x1873ED0;
|
||||
pub const dwSensitivity: usize = 0x1A85768;
|
||||
pub const dwSensitivity_sensitivity: usize = 0x40;
|
||||
pub const dwViewAngles: usize = 0x1A933C0;
|
||||
pub const dwViewMatrix: usize = 0x1A89130;
|
||||
pub const dwViewRender: usize = 0x1A89940;
|
||||
pub const dwWeaponC4: usize = 0x1A22630;
|
||||
}
|
||||
// Module: engine2.dll
|
||||
pub mod engine2_dll {
|
||||
pub const dwBuildNumber: usize = 0x540BE4;
|
||||
pub const dwNetworkGameClient: usize = 0x53FCE0;
|
||||
pub const dwNetworkGameClient_clientTickCount: usize = 0x368;
|
||||
pub const dwNetworkGameClient_deltaTick: usize = 0x244;
|
||||
pub const dwNetworkGameClient_isBackgroundMap: usize = 0x281447;
|
||||
pub const dwNetworkGameClient_localPlayer: usize = 0xF0;
|
||||
pub const dwNetworkGameClient_maxClients: usize = 0x238;
|
||||
pub const dwNetworkGameClient_serverTickCount: usize = 0x36C;
|
||||
pub const dwNetworkGameClient_signOnState: usize = 0x228;
|
||||
pub const dwWindowHeight: usize = 0x62354C;
|
||||
pub const dwWindowWidth: usize = 0x623548;
|
||||
}
|
||||
// Module: inputsystem.dll
|
||||
pub mod inputsystem_dll {
|
||||
pub const dwInputSystem: usize = 0x387E0;
|
||||
}
|
||||
// Module: matchmaking.dll
|
||||
pub mod matchmaking_dll {
|
||||
pub const dwGameTypes: usize = 0x1A3190;
|
||||
pub const dwGameTypes_mapName: usize = 0x120;
|
||||
}
|
||||
// Module: soundsystem.dll
|
||||
pub mod soundsystem_dll {
|
||||
pub const dwSoundSystem: usize = 0x3A15F0;
|
||||
pub const dwSoundSystem_engineViewData: usize = 0x7C;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
public static class PanoramaDll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
public enum ELayoutNodeType : uint {
|
||||
ROOT = 0x0,
|
||||
STYLES = 0x1,
|
||||
SCRIPT_BODY = 0x2,
|
||||
SCRIPTS = 0x3,
|
||||
SNIPPETS = 0x4,
|
||||
INCLUDE = 0x5,
|
||||
SNIPPET = 0x6,
|
||||
PANEL = 0x7,
|
||||
PANEL_ATTRIBUTE = 0x8,
|
||||
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||
REFERENCE_CONTENT = 0xA,
|
||||
REFERENCE_COMPILED = 0xB,
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 16
|
||||
public enum EStyleNodeType : uint {
|
||||
ROOT = 0x0,
|
||||
EXPRESSION = 0x1,
|
||||
PROPERTY = 0x2,
|
||||
DEFINE = 0x3,
|
||||
IMPORT = 0x4,
|
||||
KEYFRAMES = 0x5,
|
||||
KEYFRAME_SELECTOR = 0x6,
|
||||
STYLE_SELECTOR = 0x7,
|
||||
WHITESPACE = 0x8,
|
||||
EXPRESSION_TEXT = 0x9,
|
||||
EXPRESSION_URL = 0xA,
|
||||
EXPRESSION_CONCAT = 0xB,
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
}
|
||||
}
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
namespace panorama_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
enum class ELayoutNodeType : uint32_t {
|
||||
ROOT = 0x0,
|
||||
STYLES = 0x1,
|
||||
SCRIPT_BODY = 0x2,
|
||||
SCRIPTS = 0x3,
|
||||
SNIPPETS = 0x4,
|
||||
INCLUDE = 0x5,
|
||||
SNIPPET = 0x6,
|
||||
PANEL = 0x7,
|
||||
PANEL_ATTRIBUTE = 0x8,
|
||||
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||
REFERENCE_CONTENT = 0xA,
|
||||
REFERENCE_COMPILED = 0xB,
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 16
|
||||
enum class EStyleNodeType : uint32_t {
|
||||
ROOT = 0x0,
|
||||
EXPRESSION = 0x1,
|
||||
PROPERTY = 0x2,
|
||||
DEFINE = 0x3,
|
||||
IMPORT = 0x4,
|
||||
KEYFRAMES = 0x5,
|
||||
KEYFRAME_SELECTOR = 0x6,
|
||||
STYLE_SELECTOR = 0x7,
|
||||
WHITESPACE = 0x8,
|
||||
EXPRESSION_TEXT = 0x9,
|
||||
EXPRESSION_URL = 0xA,
|
||||
EXPRESSION_CONCAT = 0xB,
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
@ -1,48 +0,0 @@
|
||||
{
|
||||
"panorama.dll": {
|
||||
"classes": {},
|
||||
"enums": {
|
||||
"ELayoutNodeType": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"INCLUDE": 5,
|
||||
"PANEL": 7,
|
||||
"PANEL_ATTRIBUTE": 8,
|
||||
"PANEL_ATTRIBUTE_VALUE": 9,
|
||||
"REFERENCE_COMPILED": 11,
|
||||
"REFERENCE_CONTENT": 10,
|
||||
"REFERENCE_PASSTHROUGH": 12,
|
||||
"ROOT": 0,
|
||||
"SCRIPTS": 3,
|
||||
"SCRIPT_BODY": 2,
|
||||
"SNIPPET": 6,
|
||||
"SNIPPETS": 4,
|
||||
"STYLES": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"EStyleNodeType": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"COMPILER_CONDITIONAL": 15,
|
||||
"DEFINE": 3,
|
||||
"EXPRESSION": 1,
|
||||
"EXPRESSION_CONCAT": 11,
|
||||
"EXPRESSION_TEXT": 9,
|
||||
"EXPRESSION_URL": 10,
|
||||
"IMPORT": 4,
|
||||
"KEYFRAMES": 5,
|
||||
"KEYFRAME_SELECTOR": 6,
|
||||
"PROPERTY": 2,
|
||||
"REFERENCE_COMPILED": 13,
|
||||
"REFERENCE_CONTENT": 12,
|
||||
"REFERENCE_PASSTHROUGH": 14,
|
||||
"ROOT": 0,
|
||||
"STYLE_SELECTOR": 7,
|
||||
"WHITESPACE": 8
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: panorama.dll
|
||||
// Class count: 0
|
||||
// Enum count: 2
|
||||
pub mod panorama_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
#[repr(u32)]
|
||||
pub enum ELayoutNodeType {
|
||||
ROOT = 0x0,
|
||||
STYLES = 0x1,
|
||||
SCRIPT_BODY = 0x2,
|
||||
SCRIPTS = 0x3,
|
||||
SNIPPETS = 0x4,
|
||||
INCLUDE = 0x5,
|
||||
SNIPPET = 0x6,
|
||||
PANEL = 0x7,
|
||||
PANEL_ATTRIBUTE = 0x8,
|
||||
PANEL_ATTRIBUTE_VALUE = 0x9,
|
||||
REFERENCE_CONTENT = 0xA,
|
||||
REFERENCE_COMPILED = 0xB,
|
||||
REFERENCE_PASSTHROUGH = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 16
|
||||
#[repr(u32)]
|
||||
pub enum EStyleNodeType {
|
||||
ROOT = 0x0,
|
||||
EXPRESSION = 0x1,
|
||||
PROPERTY = 0x2,
|
||||
DEFINE = 0x3,
|
||||
IMPORT = 0x4,
|
||||
KEYFRAMES = 0x5,
|
||||
KEYFRAME_SELECTOR = 0x6,
|
||||
STYLE_SELECTOR = 0x7,
|
||||
WHITESPACE = 0x8,
|
||||
EXPRESSION_TEXT = 0x9,
|
||||
EXPRESSION_URL = 0xA,
|
||||
EXPRESSION_CONCAT = 0xB,
|
||||
REFERENCE_CONTENT = 0xC,
|
||||
REFERENCE_COMPILED = 0xD,
|
||||
REFERENCE_PASSTHROUGH = 0xE,
|
||||
COMPILER_CONDITIONAL = 0xF
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,95 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: rendersystemdx11.dll
|
||||
// Class count: 3
|
||||
// Enum count: 5
|
||||
public static class Rendersystemdx11Dll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
public enum RenderPrimitiveType_t : uint {
|
||||
RENDER_PRIM_POINTS = 0x0,
|
||||
RENDER_PRIM_LINES = 0x1,
|
||||
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||
RENDER_PRIM_TRIANGLES = 0x5,
|
||||
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
public enum RenderBufferFlags_t : uint {
|
||||
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 8
|
||||
public enum RenderMultisampleType_t : byte {
|
||||
RENDER_MULTISAMPLE_INVALID = unchecked((byte)-1),
|
||||
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||
RENDER_MULTISAMPLE_2X = 0x1,
|
||||
RENDER_MULTISAMPLE_4X = 0x2,
|
||||
RENDER_MULTISAMPLE_6X = 0x3,
|
||||
RENDER_MULTISAMPLE_8X = 0x4,
|
||||
RENDER_MULTISAMPLE_16X = 0x5,
|
||||
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
public enum InputLayoutVariation_t : uint {
|
||||
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum RenderSlotType_t : uint {
|
||||
RENDER_SLOT_INVALID = unchecked((uint)-1),
|
||||
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class VsInputSignatureElement_t {
|
||||
public const nint m_pName = 0x0; // char[64]
|
||||
public const nint m_pSemantic = 0x40; // char[64]
|
||||
public const nint m_pD3DSemanticName = 0x80; // char[64]
|
||||
public const nint m_nD3DSemanticIndex = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class VsInputSignature_t {
|
||||
public const nint m_elems = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
public static class RenderInputLayoutField_t {
|
||||
public const nint m_pSemanticName = 0x0; // uint8[32]
|
||||
public const nint m_nSemanticIndex = 0x20; // int32
|
||||
public const nint m_Format = 0x24; // uint32
|
||||
public const nint m_nOffset = 0x28; // int32
|
||||
public const nint m_nSlot = 0x2C; // int32
|
||||
public const nint m_nSlotType = 0x30; // RenderSlotType_t
|
||||
public const nint m_nInstanceStepRate = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
@ -1,101 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: rendersystemdx11.dll
|
||||
// Class count: 3
|
||||
// Enum count: 5
|
||||
namespace rendersystemdx11_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
enum class RenderPrimitiveType_t : uint32_t {
|
||||
RENDER_PRIM_POINTS = 0x0,
|
||||
RENDER_PRIM_LINES = 0x1,
|
||||
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||
RENDER_PRIM_TRIANGLES = 0x5,
|
||||
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
enum class RenderBufferFlags_t : uint32_t {
|
||||
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
};
|
||||
// Alignment: 1
|
||||
// Member count: 8
|
||||
enum class RenderMultisampleType_t : uint8_t {
|
||||
RENDER_MULTISAMPLE_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||
RENDER_MULTISAMPLE_2X = 0x1,
|
||||
RENDER_MULTISAMPLE_4X = 0x2,
|
||||
RENDER_MULTISAMPLE_6X = 0x3,
|
||||
RENDER_MULTISAMPLE_8X = 0x4,
|
||||
RENDER_MULTISAMPLE_16X = 0x5,
|
||||
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
enum class InputLayoutVariation_t : uint32_t {
|
||||
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class RenderSlotType_t : uint32_t {
|
||||
RENDER_SLOT_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace VsInputSignatureElement_t {
|
||||
constexpr std::ptrdiff_t m_pName = 0x0; // char[64]
|
||||
constexpr std::ptrdiff_t m_pSemantic = 0x40; // char[64]
|
||||
constexpr std::ptrdiff_t m_pD3DSemanticName = 0x80; // char[64]
|
||||
constexpr std::ptrdiff_t m_nD3DSemanticIndex = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace VsInputSignature_t {
|
||||
constexpr std::ptrdiff_t m_elems = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
namespace RenderInputLayoutField_t {
|
||||
constexpr std::ptrdiff_t m_pSemanticName = 0x0; // uint8[32]
|
||||
constexpr std::ptrdiff_t m_nSemanticIndex = 0x20; // int32
|
||||
constexpr std::ptrdiff_t m_Format = 0x24; // uint32
|
||||
constexpr std::ptrdiff_t m_nOffset = 0x28; // int32
|
||||
constexpr std::ptrdiff_t m_nSlot = 0x2C; // int32
|
||||
constexpr std::ptrdiff_t m_nSlotType = 0x30; // RenderSlotType_t
|
||||
constexpr std::ptrdiff_t m_nInstanceStepRate = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,109 +0,0 @@
|
||||
{
|
||||
"rendersystemdx11.dll": {
|
||||
"classes": {
|
||||
"RenderInputLayoutField_t": {
|
||||
"fields": {
|
||||
"m_Format": 36,
|
||||
"m_nInstanceStepRate": 52,
|
||||
"m_nOffset": 40,
|
||||
"m_nSemanticIndex": 32,
|
||||
"m_nSlot": 44,
|
||||
"m_nSlotType": 48,
|
||||
"m_pSemanticName": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"VsInputSignatureElement_t": {
|
||||
"fields": {
|
||||
"m_nD3DSemanticIndex": 192,
|
||||
"m_pD3DSemanticName": 128,
|
||||
"m_pName": 0,
|
||||
"m_pSemantic": 64
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"VsInputSignature_t": {
|
||||
"fields": {
|
||||
"m_elems": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"InputLayoutVariation_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"INPUT_LAYOUT_VARIATION_DEFAULT": 0,
|
||||
"INPUT_LAYOUT_VARIATION_MAX": 3,
|
||||
"INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID": 1,
|
||||
"INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID": 2
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"RenderBufferFlags_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"RENDER_BUFFER_ACCELERATION_STRUCTURE": 512,
|
||||
"RENDER_BUFFER_APPEND_CONSUME_BUFFER": 64,
|
||||
"RENDER_BUFFER_BYTEADDRESS_BUFFER": 16,
|
||||
"RENDER_BUFFER_PER_FRAME_WRITE_ONCE": 2048,
|
||||
"RENDER_BUFFER_POOL_ALLOCATED": 4096,
|
||||
"RENDER_BUFFER_SHADER_BINDING_TABLE": 1024,
|
||||
"RENDER_BUFFER_STRUCTURED_BUFFER": 32,
|
||||
"RENDER_BUFFER_UAV_COUNTER": 128,
|
||||
"RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS": 256,
|
||||
"RENDER_BUFFER_USAGE_INDEX_BUFFER": 2,
|
||||
"RENDER_BUFFER_USAGE_SHADER_RESOURCE": 4,
|
||||
"RENDER_BUFFER_USAGE_UNORDERED_ACCESS": 8,
|
||||
"RENDER_BUFFER_USAGE_VERTEX_BUFFER": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"RenderMultisampleType_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"RENDER_MULTISAMPLE_16X": 5,
|
||||
"RENDER_MULTISAMPLE_2X": 1,
|
||||
"RENDER_MULTISAMPLE_4X": 2,
|
||||
"RENDER_MULTISAMPLE_6X": 3,
|
||||
"RENDER_MULTISAMPLE_8X": 4,
|
||||
"RENDER_MULTISAMPLE_INVALID": -1,
|
||||
"RENDER_MULTISAMPLE_NONE": 0,
|
||||
"RENDER_MULTISAMPLE_TYPE_COUNT": 6
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"RenderPrimitiveType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"RENDER_PRIM_COMPUTE_SHADER": 11,
|
||||
"RENDER_PRIM_HETEROGENOUS": 10,
|
||||
"RENDER_PRIM_INSTANCED_QUADS": 9,
|
||||
"RENDER_PRIM_LINES": 1,
|
||||
"RENDER_PRIM_LINES_WITH_ADJACENCY": 2,
|
||||
"RENDER_PRIM_LINE_STRIP": 3,
|
||||
"RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY": 4,
|
||||
"RENDER_PRIM_POINTS": 0,
|
||||
"RENDER_PRIM_TRIANGLES": 5,
|
||||
"RENDER_PRIM_TRIANGLES_WITH_ADJACENCY": 6,
|
||||
"RENDER_PRIM_TRIANGLE_STRIP": 7,
|
||||
"RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY": 8,
|
||||
"RENDER_PRIM_TYPE_COUNT": 12
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"RenderSlotType_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"RENDER_SLOT_INVALID": -1,
|
||||
"RENDER_SLOT_PER_INSTANCE": 1,
|
||||
"RENDER_SLOT_PER_VERTEX": 0
|
||||
},
|
||||
"type": "uint32"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,104 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: rendersystemdx11.dll
|
||||
// Class count: 3
|
||||
// Enum count: 5
|
||||
pub mod rendersystemdx11_dll {
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
#[repr(u32)]
|
||||
pub enum RenderPrimitiveType_t {
|
||||
RENDER_PRIM_POINTS = 0x0,
|
||||
RENDER_PRIM_LINES = 0x1,
|
||||
RENDER_PRIM_LINES_WITH_ADJACENCY = 0x2,
|
||||
RENDER_PRIM_LINE_STRIP = 0x3,
|
||||
RENDER_PRIM_LINE_STRIP_WITH_ADJACENCY = 0x4,
|
||||
RENDER_PRIM_TRIANGLES = 0x5,
|
||||
RENDER_PRIM_TRIANGLES_WITH_ADJACENCY = 0x6,
|
||||
RENDER_PRIM_TRIANGLE_STRIP = 0x7,
|
||||
RENDER_PRIM_TRIANGLE_STRIP_WITH_ADJACENCY = 0x8,
|
||||
RENDER_PRIM_INSTANCED_QUADS = 0x9,
|
||||
RENDER_PRIM_HETEROGENOUS = 0xA,
|
||||
RENDER_PRIM_COMPUTE_SHADER = 0xB,
|
||||
RENDER_PRIM_TYPE_COUNT = 0xC
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 13
|
||||
#[repr(u32)]
|
||||
pub enum RenderBufferFlags_t {
|
||||
RENDER_BUFFER_USAGE_VERTEX_BUFFER = 0x1,
|
||||
RENDER_BUFFER_USAGE_INDEX_BUFFER = 0x2,
|
||||
RENDER_BUFFER_USAGE_SHADER_RESOURCE = 0x4,
|
||||
RENDER_BUFFER_USAGE_UNORDERED_ACCESS = 0x8,
|
||||
RENDER_BUFFER_BYTEADDRESS_BUFFER = 0x10,
|
||||
RENDER_BUFFER_STRUCTURED_BUFFER = 0x20,
|
||||
RENDER_BUFFER_APPEND_CONSUME_BUFFER = 0x40,
|
||||
RENDER_BUFFER_UAV_COUNTER = 0x80,
|
||||
RENDER_BUFFER_UAV_DRAW_INDIRECT_ARGS = 0x100,
|
||||
RENDER_BUFFER_ACCELERATION_STRUCTURE = 0x200,
|
||||
RENDER_BUFFER_SHADER_BINDING_TABLE = 0x400,
|
||||
RENDER_BUFFER_PER_FRAME_WRITE_ONCE = 0x800,
|
||||
RENDER_BUFFER_POOL_ALLOCATED = 0x1000
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 8
|
||||
#[repr(u8)]
|
||||
pub enum RenderMultisampleType_t {
|
||||
RENDER_MULTISAMPLE_INVALID = u8::MAX,
|
||||
RENDER_MULTISAMPLE_NONE = 0x0,
|
||||
RENDER_MULTISAMPLE_2X = 0x1,
|
||||
RENDER_MULTISAMPLE_4X = 0x2,
|
||||
RENDER_MULTISAMPLE_6X = 0x3,
|
||||
RENDER_MULTISAMPLE_8X = 0x4,
|
||||
RENDER_MULTISAMPLE_16X = 0x5,
|
||||
RENDER_MULTISAMPLE_TYPE_COUNT = 0x6
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 4
|
||||
#[repr(u32)]
|
||||
pub enum InputLayoutVariation_t {
|
||||
INPUT_LAYOUT_VARIATION_DEFAULT = 0x0,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID = 0x1,
|
||||
INPUT_LAYOUT_VARIATION_STREAM1_INSTANCEID_MORPH_VERT_ID = 0x2,
|
||||
INPUT_LAYOUT_VARIATION_MAX = 0x3
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum RenderSlotType_t {
|
||||
RENDER_SLOT_INVALID = u32::MAX,
|
||||
RENDER_SLOT_PER_VERTEX = 0x0,
|
||||
RENDER_SLOT_PER_INSTANCE = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod VsInputSignatureElement_t {
|
||||
pub const m_pName: usize = 0x0; // char[64]
|
||||
pub const m_pSemantic: usize = 0x40; // char[64]
|
||||
pub const m_pD3DSemanticName: usize = 0x80; // char[64]
|
||||
pub const m_nD3DSemanticIndex: usize = 0xC0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod VsInputSignature_t {
|
||||
pub const m_elems: usize = 0x0; // CUtlVector<VsInputSignatureElement_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 7
|
||||
pub mod RenderInputLayoutField_t {
|
||||
pub const m_pSemanticName: usize = 0x0; // uint8[32]
|
||||
pub const m_nSemanticIndex: usize = 0x20; // int32
|
||||
pub const m_Format: usize = 0x24; // uint32
|
||||
pub const m_nOffset: usize = 0x28; // int32
|
||||
pub const m_nSlot: usize = 0x2C; // int32
|
||||
pub const m_nSlotType: usize = 0x30; // RenderSlotType_t
|
||||
pub const m_nInstanceStepRate: usize = 0x34; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,464 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
public static class ResourcesystemDll {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
public enum FuseVariableType_t : byte {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
INT8 = 0x2,
|
||||
INT16 = 0x3,
|
||||
INT32 = 0x4,
|
||||
UINT8 = 0x5,
|
||||
UINT16 = 0x6,
|
||||
UINT32 = 0x7,
|
||||
FLOAT32 = 0x8
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
public enum FuseVariableAccess_t : byte {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
public static class PackedAABB_t {
|
||||
public const nint m_nPackedMin = 0x0; // uint32
|
||||
public const nint m_nPackedMax = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class ConstantInfo_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
public const nint m_nameToken = 0x8; // CUtlStringToken
|
||||
public const nint m_flValue = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class FuseFunctionIndex_t {
|
||||
public const nint m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CFuseSymbolTable {
|
||||
public const nint m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
||||
public const nint m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
||||
public const nint m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
||||
public const nint m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||
public const nint m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||
public const nint m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class TestResource_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
public static class AABB_t {
|
||||
public const nint m_vMinBounds = 0x0; // Vector
|
||||
public const nint m_vMaxBounds = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class VariableInfo_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
public const nint m_nameToken = 0x8; // CUtlStringToken
|
||||
public const nint m_nIndex = 0xC; // FuseVariableIndex_t
|
||||
public const nint m_nNumComponents = 0xE; // uint8
|
||||
public const nint m_eVarType = 0xF; // FuseVariableType_t
|
||||
public const nint m_eAccess = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
public static class FourQuaternions {
|
||||
public const nint x = 0x0; // fltx4
|
||||
public const nint y = 0x10; // fltx4
|
||||
public const nint z = 0x20; // fltx4
|
||||
public const nint w = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CFuseProgram {
|
||||
public const nint m_programBuffer = 0x0; // CUtlVector<uint8>
|
||||
public const nint m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||
public const nint m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||
public const nint m_nMaxTempVarsUsed = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class FunctionInfo_t {
|
||||
public const nint m_name = 0x8; // CUtlString
|
||||
public const nint m_nameToken = 0x10; // CUtlStringToken
|
||||
public const nint m_nParamCount = 0x14; // int32
|
||||
public const nint m_nIndex = 0x18; // FuseFunctionIndex_t
|
||||
public const nint m_bIsPure = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class FuseVariableIndex_t {
|
||||
public const nint m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class ManifestTestResource_t {
|
||||
public const nint m_name = 0x0; // CUtlString
|
||||
public const nint m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCDOTAPatchNotesList {
|
||||
}
|
||||
}
|
||||
}
|
@ -1,470 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
namespace resourcesystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
enum class FuseVariableType_t : uint8_t {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
INT8 = 0x2,
|
||||
INT16 = 0x3,
|
||||
INT32 = 0x4,
|
||||
UINT8 = 0x5,
|
||||
UINT16 = 0x6,
|
||||
UINT32 = 0x7,
|
||||
FLOAT32 = 0x8
|
||||
};
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
enum class FuseVariableAccess_t : uint8_t {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
namespace PackedAABB_t {
|
||||
constexpr std::ptrdiff_t m_nPackedMin = 0x0; // uint32
|
||||
constexpr std::ptrdiff_t m_nPackedMax = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace ConstantInfo_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_flValue = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace FuseFunctionIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CFuseSymbolTable {
|
||||
constexpr std::ptrdiff_t m_constants = 0x0; // CUtlVector<ConstantInfo_t>
|
||||
constexpr std::ptrdiff_t m_variables = 0x18; // CUtlVector<VariableInfo_t>
|
||||
constexpr std::ptrdiff_t m_functions = 0x30; // CUtlVector<FunctionInfo_t>
|
||||
constexpr std::ptrdiff_t m_constantMap = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||
constexpr std::ptrdiff_t m_variableMap = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||
constexpr std::ptrdiff_t m_functionMap = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace TestResource_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
namespace AABB_t {
|
||||
constexpr std::ptrdiff_t m_vMinBounds = 0x0; // Vector
|
||||
constexpr std::ptrdiff_t m_vMaxBounds = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace VariableInfo_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
constexpr std::ptrdiff_t m_nameToken = 0x8; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_nIndex = 0xC; // FuseVariableIndex_t
|
||||
constexpr std::ptrdiff_t m_nNumComponents = 0xE; // uint8
|
||||
constexpr std::ptrdiff_t m_eVarType = 0xF; // FuseVariableType_t
|
||||
constexpr std::ptrdiff_t m_eAccess = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
namespace FourQuaternions {
|
||||
constexpr std::ptrdiff_t x = 0x0; // fltx4
|
||||
constexpr std::ptrdiff_t y = 0x10; // fltx4
|
||||
constexpr std::ptrdiff_t z = 0x20; // fltx4
|
||||
constexpr std::ptrdiff_t w = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CFuseProgram {
|
||||
constexpr std::ptrdiff_t m_programBuffer = 0x0; // CUtlVector<uint8>
|
||||
constexpr std::ptrdiff_t m_variablesRead = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||
constexpr std::ptrdiff_t m_variablesWritten = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||
constexpr std::ptrdiff_t m_nMaxTempVarsUsed = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace FunctionInfo_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x8; // CUtlString
|
||||
constexpr std::ptrdiff_t m_nameToken = 0x10; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_nParamCount = 0x14; // int32
|
||||
constexpr std::ptrdiff_t m_nIndex = 0x18; // FuseFunctionIndex_t
|
||||
constexpr std::ptrdiff_t m_bIsPure = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace FuseVariableIndex_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace ManifestTestResource_t {
|
||||
constexpr std::ptrdiff_t m_name = 0x0; // CUtlString
|
||||
constexpr std::ptrdiff_t m_child = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCDOTAPatchNotesList {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,645 +0,0 @@
|
||||
{
|
||||
"resourcesystem.dll": {
|
||||
"classes": {
|
||||
"AABB_t": {
|
||||
"fields": {
|
||||
"m_vMaxBounds": 12,
|
||||
"m_vMinBounds": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"CFuseProgram": {
|
||||
"fields": {
|
||||
"m_nMaxTempVarsUsed": 72,
|
||||
"m_programBuffer": 0,
|
||||
"m_variablesRead": 24,
|
||||
"m_variablesWritten": 48
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CFuseSymbolTable": {
|
||||
"fields": {
|
||||
"m_constantMap": 72,
|
||||
"m_constants": 0,
|
||||
"m_functionMap": 136,
|
||||
"m_functions": 48,
|
||||
"m_variableMap": 104,
|
||||
"m_variables": 24
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"ConstantInfo_t": {
|
||||
"fields": {
|
||||
"m_flValue": 12,
|
||||
"m_name": 0,
|
||||
"m_nameToken": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FourQuaternions": {
|
||||
"fields": {
|
||||
"w": 48,
|
||||
"x": 0,
|
||||
"y": 16,
|
||||
"z": 32
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"FunctionInfo_t": {
|
||||
"fields": {
|
||||
"m_bIsPure": 26,
|
||||
"m_nIndex": 24,
|
||||
"m_nParamCount": 20,
|
||||
"m_name": 8,
|
||||
"m_nameToken": 16
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"FuseFunctionIndex_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"FuseVariableIndex_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCAnimData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCAnimationGroup": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCCSGOEconItem": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCChoreoSceneFileData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCCompositeMaterialKit": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCDOTANovelsList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCDOTAPatchNotesList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCDotaItemDefinitionResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCEntityLump": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCGcExportableExternalData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCJavaScriptResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCModel": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCMorphSetData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmClip": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmGraphDefinition": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmGraphVariation": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmIKRig": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCNmSkeleton": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCPanoramaDynamicImages": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCPanoramaLayout": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCPanoramaStyle": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCPhysAggregateData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCPostProcessingResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCRenderMesh": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCResponseRulesList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCSequenceGroupData": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCSmartProp": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCTextureBase": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCTypeScriptResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVDataResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVMixListResource": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVPhysXSurfacePropertiesList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVSoundEventScriptList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVSoundStackScriptList": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVoiceContainerBase": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCVoxelVisibility": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCWorldNode": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIAnimGraphModelBinding": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIMaterial2": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIParticleSnapshot": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIParticleSystemDefinition": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIPulseGraphDef": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeIVectorGraphic": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeManifestTestResource_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeProceduralTestResource_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeTestResource_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeWorld_t": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"ManifestTestResource_t": {
|
||||
"fields": {
|
||||
"m_child": 8,
|
||||
"m_name": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"PackedAABB_t": {
|
||||
"fields": {
|
||||
"m_nPackedMax": 4,
|
||||
"m_nPackedMin": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"TestResource_t": {
|
||||
"fields": {
|
||||
"m_name": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"VariableInfo_t": {
|
||||
"fields": {
|
||||
"m_eAccess": 16,
|
||||
"m_eVarType": 15,
|
||||
"m_nIndex": 12,
|
||||
"m_nNumComponents": 14,
|
||||
"m_name": 0,
|
||||
"m_nameToken": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"FuseVariableAccess_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"READ_ONLY": 1,
|
||||
"WRITABLE": 0
|
||||
},
|
||||
"type": "uint8"
|
||||
},
|
||||
"FuseVariableType_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"BOOL": 1,
|
||||
"FLOAT32": 8,
|
||||
"INT16": 3,
|
||||
"INT32": 4,
|
||||
"INT8": 2,
|
||||
"INVALID": 0,
|
||||
"UINT16": 6,
|
||||
"UINT32": 7,
|
||||
"UINT8": 5
|
||||
},
|
||||
"type": "uint8"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,470 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: resourcesystem.dll
|
||||
// Class count: 59
|
||||
// Enum count: 2
|
||||
pub mod resourcesystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 9
|
||||
#[repr(u8)]
|
||||
pub enum FuseVariableType_t {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
INT8 = 0x2,
|
||||
INT16 = 0x3,
|
||||
INT32 = 0x4,
|
||||
UINT8 = 0x5,
|
||||
UINT16 = 0x6,
|
||||
UINT32 = 0x7,
|
||||
FLOAT32 = 0x8
|
||||
}
|
||||
// Alignment: 1
|
||||
// Member count: 2
|
||||
#[repr(u8)]
|
||||
pub enum FuseVariableAccess_t {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmIKRig {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCResponseRulesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCDotaItemDefinitionResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCMorphSetData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCChoreoSceneFileData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVSoundStackScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
pub mod PackedAABB_t {
|
||||
pub const m_nPackedMin: usize = 0x0; // uint32
|
||||
pub const m_nPackedMax: usize = 0x4; // uint32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVPhysXSurfacePropertiesList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeManifestTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod ConstantInfo_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
||||
pub const m_flValue: usize = 0xC; // float32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod FuseFunctionIndex_t {
|
||||
pub const m_Value: usize = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCGcExportableExternalData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIAnimGraphModelBinding {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCJavaScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CFuseSymbolTable {
|
||||
pub const m_constants: usize = 0x0; // CUtlVector<ConstantInfo_t>
|
||||
pub const m_variables: usize = 0x18; // CUtlVector<VariableInfo_t>
|
||||
pub const m_functions: usize = 0x30; // CUtlVector<FunctionInfo_t>
|
||||
pub const m_constantMap: usize = 0x48; // CUtlHashtable<CUtlStringToken,int32>
|
||||
pub const m_variableMap: usize = 0x68; // CUtlHashtable<CUtlStringToken,int32>
|
||||
pub const m_functionMap: usize = 0x88; // CUtlHashtable<CUtlStringToken,int32>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCRenderMesh {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVoxelVisibility {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod TestResource_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPhysAggregateData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmClip {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeWorld_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeProceduralTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
pub mod AABB_t {
|
||||
pub const m_vMinBounds: usize = 0x0; // Vector
|
||||
pub const m_vMaxBounds: usize = 0xC; // Vector
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPostProcessingResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod VariableInfo_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
pub const m_nameToken: usize = 0x8; // CUtlStringToken
|
||||
pub const m_nIndex: usize = 0xC; // FuseVariableIndex_t
|
||||
pub const m_nNumComponents: usize = 0xE; // uint8
|
||||
pub const m_eVarType: usize = 0xF; // FuseVariableType_t
|
||||
pub const m_eAccess: usize = 0x10; // FuseVariableAccess_t
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIParticleSnapshot {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
pub mod FourQuaternions {
|
||||
pub const x: usize = 0x0; // fltx4
|
||||
pub const y: usize = 0x10; // fltx4
|
||||
pub const z: usize = 0x20; // fltx4
|
||||
pub const w: usize = 0x30; // fltx4
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaLayout {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCTypeScriptResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmSkeleton {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeTestResource_t {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCAnimationGroup {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVSoundEventScriptList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVoiceContainerBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaStyle {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCWorldNode {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmGraphVariation {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCCSGOEconItem {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCNmGraphDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCSmartProp {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CFuseProgram {
|
||||
pub const m_programBuffer: usize = 0x0; // CUtlVector<uint8>
|
||||
pub const m_variablesRead: usize = 0x18; // CUtlVector<FuseVariableIndex_t>
|
||||
pub const m_variablesWritten: usize = 0x30; // CUtlVector<FuseVariableIndex_t>
|
||||
pub const m_nMaxTempVarsUsed: usize = 0x48; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCCompositeMaterialKit {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVMixListResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCAnimData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIMaterial2 {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIVectorGraphic {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCPanoramaDynamicImages {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIPulseGraphDef {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod FunctionInfo_t {
|
||||
pub const m_name: usize = 0x8; // CUtlString
|
||||
pub const m_nameToken: usize = 0x10; // CUtlStringToken
|
||||
pub const m_nParamCount: usize = 0x14; // int32
|
||||
pub const m_nIndex: usize = 0x18; // FuseFunctionIndex_t
|
||||
pub const m_bIsPure: usize = 0x1A; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCVDataResource {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCModel {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCDOTANovelsList {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCTextureBase {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod FuseVariableIndex_t {
|
||||
pub const m_Value: usize = 0x0; // uint16
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeIParticleSystemDefinition {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCSequenceGroupData {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod ManifestTestResource_t {
|
||||
pub const m_name: usize = 0x0; // CUtlString
|
||||
pub const m_child: usize = 0x8; // CStrongHandle<InfoForResourceTypeManifestTestResource_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCEntityLump {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCDOTAPatchNotesList {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,107 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 1
|
||||
public static class ScenesystemDll {
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
public enum DisableShadows_t : byte {
|
||||
kDisableShadows_None = 0x0,
|
||||
kDisableShadows_All = 0x1,
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_ViewTarget {
|
||||
public const nint m_Name = 0x0; // CUtlString
|
||||
public const nint m_TextureId = 0x8; // uint64
|
||||
public const nint m_nWidth = 0x10; // int32
|
||||
public const nint m_nHeight = 0x14; // int32
|
||||
public const nint m_nRequestedWidth = 0x18; // int32
|
||||
public const nint m_nRequestedHeight = 0x1C; // int32
|
||||
public const nint m_nNumMipLevels = 0x20; // int32
|
||||
public const nint m_nDepth = 0x24; // int32
|
||||
public const nint m_nMultisampleNumSamples = 0x28; // int32
|
||||
public const nint m_nFormat = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class SceneViewId_t {
|
||||
public const nint m_nViewId = 0x0; // uint64
|
||||
public const nint m_nFrameCount = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSEndFrameViewInfo {
|
||||
public const nint m_nViewId = 0x0; // uint64
|
||||
public const nint m_ViewName = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_LayerBase {
|
||||
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||
public const nint m_ViewName = 0x10; // CUtlString
|
||||
public const nint m_nLayerIndex = 0x18; // int32
|
||||
public const nint m_nLayerId = 0x20; // uint64
|
||||
public const nint m_LayerName = 0x28; // CUtlString
|
||||
public const nint m_displayText = 0x30; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_ViewTargetList {
|
||||
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||
public const nint m_ViewName = 0x10; // CUtlString
|
||||
public const nint m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_ViewRender {
|
||||
public const nint m_viewId = 0x0; // SceneViewId_t
|
||||
public const nint m_ViewName = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CSSDSMsg_EndFrame {
|
||||
public const nint m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||
}
|
||||
}
|
||||
}
|
@ -1,113 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 1
|
||||
namespace scenesystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
enum class DisableShadows_t : uint8_t {
|
||||
kDisableShadows_None = 0x0,
|
||||
kDisableShadows_All = 0x1,
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_ViewTarget {
|
||||
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlString
|
||||
constexpr std::ptrdiff_t m_TextureId = 0x8; // uint64
|
||||
constexpr std::ptrdiff_t m_nWidth = 0x10; // int32
|
||||
constexpr std::ptrdiff_t m_nHeight = 0x14; // int32
|
||||
constexpr std::ptrdiff_t m_nRequestedWidth = 0x18; // int32
|
||||
constexpr std::ptrdiff_t m_nRequestedHeight = 0x1C; // int32
|
||||
constexpr std::ptrdiff_t m_nNumMipLevels = 0x20; // int32
|
||||
constexpr std::ptrdiff_t m_nDepth = 0x24; // int32
|
||||
constexpr std::ptrdiff_t m_nMultisampleNumSamples = 0x28; // int32
|
||||
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace SceneViewId_t {
|
||||
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
||||
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSEndFrameViewInfo {
|
||||
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_LayerBase {
|
||||
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32
|
||||
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64
|
||||
constexpr std::ptrdiff_t m_LayerName = 0x28; // CUtlString
|
||||
constexpr std::ptrdiff_t m_displayText = 0x30; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_ViewTargetList {
|
||||
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||
constexpr std::ptrdiff_t m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_ViewRender {
|
||||
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
||||
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CSSDSMsg_EndFrame {
|
||||
constexpr std::ptrdiff_t m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,141 +0,0 @@
|
||||
{
|
||||
"scenesystem.dll": {
|
||||
"classes": {
|
||||
"CSSDSEndFrameViewInfo": {
|
||||
"fields": {
|
||||
"m_ViewName": 8,
|
||||
"m_nViewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSSDSMsg_EndFrame": {
|
||||
"fields": {
|
||||
"m_Views": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSSDSMsg_LayerBase": {
|
||||
"fields": {
|
||||
"m_LayerName": 40,
|
||||
"m_ViewName": 16,
|
||||
"m_displayText": 48,
|
||||
"m_nLayerId": 32,
|
||||
"m_nLayerIndex": 24,
|
||||
"m_viewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSSDSMsg_PostLayer": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CSSDSMsg_LayerBase"
|
||||
},
|
||||
"CSSDSMsg_PreLayer": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CSSDSMsg_LayerBase"
|
||||
},
|
||||
"CSSDSMsg_ViewRender": {
|
||||
"fields": {
|
||||
"m_ViewName": 16,
|
||||
"m_viewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSSDSMsg_ViewTarget": {
|
||||
"fields": {
|
||||
"m_Name": 0,
|
||||
"m_TextureId": 8,
|
||||
"m_nDepth": 36,
|
||||
"m_nFormat": 44,
|
||||
"m_nHeight": 20,
|
||||
"m_nMultisampleNumSamples": 40,
|
||||
"m_nNumMipLevels": 32,
|
||||
"m_nRequestedHeight": 28,
|
||||
"m_nRequestedWidth": 24,
|
||||
"m_nWidth": 16
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CSSDSMsg_ViewTargetList": {
|
||||
"fields": {
|
||||
"m_Targets": 24,
|
||||
"m_ViewName": 16,
|
||||
"m_viewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"SceneViewId_t": {
|
||||
"fields": {
|
||||
"m_nFrameCount": 8,
|
||||
"m_nViewId": 0
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"DisableShadows_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"kDisableShadows_All": 1,
|
||||
"kDisableShadows_Baked": 2,
|
||||
"kDisableShadows_None": 0,
|
||||
"kDisableShadows_Realtime": 3
|
||||
},
|
||||
"type": "uint8"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,112 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: scenesystem.dll
|
||||
// Class count: 9
|
||||
// Enum count: 1
|
||||
pub mod scenesystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 4
|
||||
#[repr(u8)]
|
||||
pub enum DisableShadows_t {
|
||||
kDisableShadows_None = 0x0,
|
||||
kDisableShadows_All = 0x1,
|
||||
kDisableShadows_Baked = 0x2,
|
||||
kDisableShadows_Realtime = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 10
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_ViewTarget {
|
||||
pub const m_Name: usize = 0x0; // CUtlString
|
||||
pub const m_TextureId: usize = 0x8; // uint64
|
||||
pub const m_nWidth: usize = 0x10; // int32
|
||||
pub const m_nHeight: usize = 0x14; // int32
|
||||
pub const m_nRequestedWidth: usize = 0x18; // int32
|
||||
pub const m_nRequestedHeight: usize = 0x1C; // int32
|
||||
pub const m_nNumMipLevels: usize = 0x20; // int32
|
||||
pub const m_nDepth: usize = 0x24; // int32
|
||||
pub const m_nMultisampleNumSamples: usize = 0x28; // int32
|
||||
pub const m_nFormat: usize = 0x2C; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod SceneViewId_t {
|
||||
pub const m_nViewId: usize = 0x0; // uint64
|
||||
pub const m_nFrameCount: usize = 0x8; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSEndFrameViewInfo {
|
||||
pub const m_nViewId: usize = 0x0; // uint64
|
||||
pub const m_ViewName: usize = 0x8; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_PostLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_LayerBase {
|
||||
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||
pub const m_nLayerIndex: usize = 0x18; // int32
|
||||
pub const m_nLayerId: usize = 0x20; // uint64
|
||||
pub const m_LayerName: usize = 0x28; // CUtlString
|
||||
pub const m_displayText: usize = 0x30; // CUtlString
|
||||
}
|
||||
// Parent: CSSDSMsg_LayerBase
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_PreLayer {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_ViewTargetList {
|
||||
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||
pub const m_Targets: usize = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_ViewRender {
|
||||
pub const m_viewId: usize = 0x0; // SceneViewId_t
|
||||
pub const m_ViewName: usize = 0x10; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CSSDSMsg_EndFrame {
|
||||
pub const m_Views: usize = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,173 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
public static class SchemasystemDll {
|
||||
// Alignment: 1
|
||||
// Member count: 81
|
||||
public enum fieldtype_t : byte {
|
||||
FIELD_VOID = 0x0,
|
||||
FIELD_FLOAT32 = 0x1,
|
||||
FIELD_STRING = 0x2,
|
||||
FIELD_VECTOR = 0x3,
|
||||
FIELD_QUATERNION = 0x4,
|
||||
FIELD_INT32 = 0x5,
|
||||
FIELD_BOOLEAN = 0x6,
|
||||
FIELD_INT16 = 0x7,
|
||||
FIELD_CHARACTER = 0x8,
|
||||
FIELD_COLOR32 = 0x9,
|
||||
FIELD_EMBEDDED = 0xA,
|
||||
FIELD_CUSTOM = 0xB,
|
||||
FIELD_CLASSPTR = 0xC,
|
||||
FIELD_EHANDLE = 0xD,
|
||||
FIELD_POSITION_VECTOR = 0xE,
|
||||
FIELD_TIME = 0xF,
|
||||
FIELD_TICK = 0x10,
|
||||
FIELD_SOUNDNAME = 0x11,
|
||||
FIELD_INPUT = 0x12,
|
||||
FIELD_FUNCTION = 0x13,
|
||||
FIELD_VMATRIX = 0x14,
|
||||
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||
FIELD_INTERVAL = 0x17,
|
||||
FIELD_UNUSED = 0x18,
|
||||
FIELD_VECTOR2D = 0x19,
|
||||
FIELD_INT64 = 0x1A,
|
||||
FIELD_VECTOR4D = 0x1B,
|
||||
FIELD_RESOURCE = 0x1C,
|
||||
FIELD_TYPEUNKNOWN = 0x1D,
|
||||
FIELD_CSTRING = 0x1E,
|
||||
FIELD_HSCRIPT = 0x1F,
|
||||
FIELD_VARIANT = 0x20,
|
||||
FIELD_UINT64 = 0x21,
|
||||
FIELD_FLOAT64 = 0x22,
|
||||
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||
FIELD_UINT32 = 0x25,
|
||||
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||
FIELD_QANGLE = 0x27,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||
FIELD_HMATERIAL = 0x29,
|
||||
FIELD_HMODEL = 0x2A,
|
||||
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||
FIELD_V8_VALUE = 0x31,
|
||||
FIELD_V8_OBJECT = 0x32,
|
||||
FIELD_V8_ARRAY = 0x33,
|
||||
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||
FIELD_UTLSTRING = 0x35,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||
FIELD_HRENDERTEXTURE = 0x37,
|
||||
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||
FIELD_UINT8 = 0x39,
|
||||
FIELD_UINT16 = 0x3A,
|
||||
FIELD_CTRANSFORM = 0x3B,
|
||||
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||
FIELD_HPOSTPROCESSING = 0x3D,
|
||||
FIELD_MATRIX3X4 = 0x3E,
|
||||
FIELD_SHIM = 0x3F,
|
||||
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||
FIELD_AMMO_INDEX = 0x43,
|
||||
FIELD_CONDITION_ID = 0x44,
|
||||
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||
FIELD_MODIFIER_HANDLE = 0x46,
|
||||
FIELD_ROTATION_VECTOR = 0x47,
|
||||
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||
FIELD_HVDATA = 0x49,
|
||||
FIELD_SCALE32 = 0x4A,
|
||||
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||
FIELD_ENGINE_TIME = 0x4C,
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
public enum ThreeState_t : uint {
|
||||
TRS_FALSE = 0x0,
|
||||
TRS_TRUE = 0x1,
|
||||
TRS_NONE = 0x2
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
public static class InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 22
|
||||
public static class CSchemaSystemInternalRegistration {
|
||||
public const nint m_Vector2D = 0x0; // Vector2D
|
||||
public const nint m_Vector = 0x8; // Vector
|
||||
public const nint m_VectorAligned = 0x20; // VectorAligned
|
||||
public const nint m_Quaternion = 0x30; // Quaternion
|
||||
public const nint m_QAngle = 0x40; // QAngle
|
||||
public const nint m_RotationVector = 0x4C; // RotationVector
|
||||
public const nint m_RadianEuler = 0x58; // RadianEuler
|
||||
public const nint m_DegreeEuler = 0x64; // DegreeEuler
|
||||
public const nint m_QuaternionStorage = 0x70; // QuaternionStorage
|
||||
public const nint m_matrix3x4_t = 0x80; // matrix3x4_t
|
||||
public const nint m_matrix3x4a_t = 0xB0; // matrix3x4a_t
|
||||
public const nint m_Color = 0xE0; // Color
|
||||
public const nint m_Vector4D = 0xE4; // Vector4D
|
||||
public const nint m_CTransform = 0x100; // CTransform
|
||||
public const nint m_pKeyValues = 0x120; // KeyValues*
|
||||
public const nint m_CUtlBinaryBlock = 0x128; // CUtlBinaryBlock
|
||||
public const nint m_CUtlString = 0x140; // CUtlString
|
||||
public const nint m_CUtlSymbol = 0x148; // CUtlSymbol
|
||||
public const nint m_stringToken = 0x14C; // CUtlStringToken
|
||||
public const nint m_stringTokenWithStorage = 0x150; // CUtlStringTokenWithStorage
|
||||
public const nint m_ResourceTypes = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
public const nint m_KV3 = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicDerivedA {
|
||||
public const nint m_nDerivedA = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicBase {
|
||||
public const nint m_nBase = 0x8; // int32
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_PolymorphicDerivedB {
|
||||
public const nint m_nDerivedB = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
public static class ResourceId_t {
|
||||
public const nint m_Value = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CExampleSchemaVData_Monomorphic {
|
||||
public const nint m_nExample1 = 0x0; // int32
|
||||
public const nint m_nExample2 = 0x4; // int32
|
||||
}
|
||||
}
|
||||
}
|
@ -1,179 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
namespace schemasystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 81
|
||||
enum class fieldtype_t : uint8_t {
|
||||
FIELD_VOID = 0x0,
|
||||
FIELD_FLOAT32 = 0x1,
|
||||
FIELD_STRING = 0x2,
|
||||
FIELD_VECTOR = 0x3,
|
||||
FIELD_QUATERNION = 0x4,
|
||||
FIELD_INT32 = 0x5,
|
||||
FIELD_BOOLEAN = 0x6,
|
||||
FIELD_INT16 = 0x7,
|
||||
FIELD_CHARACTER = 0x8,
|
||||
FIELD_COLOR32 = 0x9,
|
||||
FIELD_EMBEDDED = 0xA,
|
||||
FIELD_CUSTOM = 0xB,
|
||||
FIELD_CLASSPTR = 0xC,
|
||||
FIELD_EHANDLE = 0xD,
|
||||
FIELD_POSITION_VECTOR = 0xE,
|
||||
FIELD_TIME = 0xF,
|
||||
FIELD_TICK = 0x10,
|
||||
FIELD_SOUNDNAME = 0x11,
|
||||
FIELD_INPUT = 0x12,
|
||||
FIELD_FUNCTION = 0x13,
|
||||
FIELD_VMATRIX = 0x14,
|
||||
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||
FIELD_INTERVAL = 0x17,
|
||||
FIELD_UNUSED = 0x18,
|
||||
FIELD_VECTOR2D = 0x19,
|
||||
FIELD_INT64 = 0x1A,
|
||||
FIELD_VECTOR4D = 0x1B,
|
||||
FIELD_RESOURCE = 0x1C,
|
||||
FIELD_TYPEUNKNOWN = 0x1D,
|
||||
FIELD_CSTRING = 0x1E,
|
||||
FIELD_HSCRIPT = 0x1F,
|
||||
FIELD_VARIANT = 0x20,
|
||||
FIELD_UINT64 = 0x21,
|
||||
FIELD_FLOAT64 = 0x22,
|
||||
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||
FIELD_UINT32 = 0x25,
|
||||
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||
FIELD_QANGLE = 0x27,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||
FIELD_HMATERIAL = 0x29,
|
||||
FIELD_HMODEL = 0x2A,
|
||||
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||
FIELD_V8_VALUE = 0x31,
|
||||
FIELD_V8_OBJECT = 0x32,
|
||||
FIELD_V8_ARRAY = 0x33,
|
||||
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||
FIELD_UTLSTRING = 0x35,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||
FIELD_HRENDERTEXTURE = 0x37,
|
||||
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||
FIELD_UINT8 = 0x39,
|
||||
FIELD_UINT16 = 0x3A,
|
||||
FIELD_CTRANSFORM = 0x3B,
|
||||
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||
FIELD_HPOSTPROCESSING = 0x3D,
|
||||
FIELD_MATRIX3X4 = 0x3E,
|
||||
FIELD_SHIM = 0x3F,
|
||||
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||
FIELD_AMMO_INDEX = 0x43,
|
||||
FIELD_CONDITION_ID = 0x44,
|
||||
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||
FIELD_MODIFIER_HANDLE = 0x46,
|
||||
FIELD_ROTATION_VECTOR = 0x47,
|
||||
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||
FIELD_HVDATA = 0x49,
|
||||
FIELD_SCALE32 = 0x4A,
|
||||
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||
FIELD_ENGINE_TIME = 0x4C,
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
};
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
enum class ThreeState_t : uint32_t {
|
||||
TRS_FALSE = 0x0,
|
||||
TRS_TRUE = 0x1,
|
||||
TRS_NONE = 0x2
|
||||
};
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
namespace InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 22
|
||||
namespace CSchemaSystemInternalRegistration {
|
||||
constexpr std::ptrdiff_t m_Vector2D = 0x0; // Vector2D
|
||||
constexpr std::ptrdiff_t m_Vector = 0x8; // Vector
|
||||
constexpr std::ptrdiff_t m_VectorAligned = 0x20; // VectorAligned
|
||||
constexpr std::ptrdiff_t m_Quaternion = 0x30; // Quaternion
|
||||
constexpr std::ptrdiff_t m_QAngle = 0x40; // QAngle
|
||||
constexpr std::ptrdiff_t m_RotationVector = 0x4C; // RotationVector
|
||||
constexpr std::ptrdiff_t m_RadianEuler = 0x58; // RadianEuler
|
||||
constexpr std::ptrdiff_t m_DegreeEuler = 0x64; // DegreeEuler
|
||||
constexpr std::ptrdiff_t m_QuaternionStorage = 0x70; // QuaternionStorage
|
||||
constexpr std::ptrdiff_t m_matrix3x4_t = 0x80; // matrix3x4_t
|
||||
constexpr std::ptrdiff_t m_matrix3x4a_t = 0xB0; // matrix3x4a_t
|
||||
constexpr std::ptrdiff_t m_Color = 0xE0; // Color
|
||||
constexpr std::ptrdiff_t m_Vector4D = 0xE4; // Vector4D
|
||||
constexpr std::ptrdiff_t m_CTransform = 0x100; // CTransform
|
||||
constexpr std::ptrdiff_t m_pKeyValues = 0x120; // KeyValues*
|
||||
constexpr std::ptrdiff_t m_CUtlBinaryBlock = 0x128; // CUtlBinaryBlock
|
||||
constexpr std::ptrdiff_t m_CUtlString = 0x140; // CUtlString
|
||||
constexpr std::ptrdiff_t m_CUtlSymbol = 0x148; // CUtlSymbol
|
||||
constexpr std::ptrdiff_t m_stringToken = 0x14C; // CUtlStringToken
|
||||
constexpr std::ptrdiff_t m_stringTokenWithStorage = 0x150; // CUtlStringTokenWithStorage
|
||||
constexpr std::ptrdiff_t m_ResourceTypes = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
constexpr std::ptrdiff_t m_KV3 = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicDerivedA {
|
||||
constexpr std::ptrdiff_t m_nDerivedA = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicBase {
|
||||
constexpr std::ptrdiff_t m_nBase = 0x8; // int32
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_PolymorphicDerivedB {
|
||||
constexpr std::ptrdiff_t m_nDerivedB = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
namespace ResourceId_t {
|
||||
constexpr std::ptrdiff_t m_Value = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
namespace CExampleSchemaVData_Monomorphic {
|
||||
constexpr std::ptrdiff_t m_nExample1 = 0x0; // int32
|
||||
constexpr std::ptrdiff_t m_nExample2 = 0x4; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,198 +0,0 @@
|
||||
{
|
||||
"schemasystem.dll": {
|
||||
"classes": {
|
||||
"CExampleSchemaVData_Monomorphic": {
|
||||
"fields": {
|
||||
"m_nExample1": 0,
|
||||
"m_nExample2": 4
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CExampleSchemaVData_PolymorphicBase": {
|
||||
"fields": {
|
||||
"m_nBase": 8
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"CExampleSchemaVData_PolymorphicDerivedA": {
|
||||
"fields": {
|
||||
"m_nDerivedA": 16
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CExampleSchemaVData_PolymorphicBase"
|
||||
},
|
||||
"CExampleSchemaVData_PolymorphicDerivedB": {
|
||||
"fields": {
|
||||
"m_nDerivedB": 16
|
||||
},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MGetKV3ClassDefaults",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": "CExampleSchemaVData_PolymorphicBase"
|
||||
},
|
||||
"CSchemaSystemInternalRegistration": {
|
||||
"fields": {
|
||||
"m_CTransform": 256,
|
||||
"m_CUtlBinaryBlock": 296,
|
||||
"m_CUtlString": 320,
|
||||
"m_CUtlSymbol": 328,
|
||||
"m_Color": 224,
|
||||
"m_DegreeEuler": 100,
|
||||
"m_KV3": 368,
|
||||
"m_QAngle": 64,
|
||||
"m_Quaternion": 48,
|
||||
"m_QuaternionStorage": 112,
|
||||
"m_RadianEuler": 88,
|
||||
"m_ResourceTypes": 360,
|
||||
"m_RotationVector": 76,
|
||||
"m_Vector": 8,
|
||||
"m_Vector2D": 0,
|
||||
"m_Vector4D": 228,
|
||||
"m_VectorAligned": 32,
|
||||
"m_matrix3x4_t": 128,
|
||||
"m_matrix3x4a_t": 176,
|
||||
"m_pKeyValues": 288,
|
||||
"m_stringToken": 332,
|
||||
"m_stringTokenWithStorage": 336
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
},
|
||||
"InfoForResourceTypeCResourceManifestInternal": {
|
||||
"fields": {},
|
||||
"metadata": [
|
||||
{
|
||||
"name": "MResourceTypeForInfoType",
|
||||
"type": "Unknown"
|
||||
}
|
||||
],
|
||||
"parent": null
|
||||
},
|
||||
"ResourceId_t": {
|
||||
"fields": {
|
||||
"m_Value": 0
|
||||
},
|
||||
"metadata": [],
|
||||
"parent": null
|
||||
}
|
||||
},
|
||||
"enums": {
|
||||
"ThreeState_t": {
|
||||
"alignment": 4,
|
||||
"members": {
|
||||
"TRS_FALSE": 0,
|
||||
"TRS_NONE": 2,
|
||||
"TRS_TRUE": 1
|
||||
},
|
||||
"type": "uint32"
|
||||
},
|
||||
"fieldtype_t": {
|
||||
"alignment": 1,
|
||||
"members": {
|
||||
"FIELD_AI_SCHEDULE_BITS": 69,
|
||||
"FIELD_AMMO_INDEX": 67,
|
||||
"FIELD_ATTACHMENT_HANDLE": 66,
|
||||
"FIELD_BOOLEAN": 6,
|
||||
"FIELD_CHARACTER": 8,
|
||||
"FIELD_CLASSPTR": 12,
|
||||
"FIELD_CMOTIONTRANSFORM": 64,
|
||||
"FIELD_CMOTIONTRANSFORM_WORLDSPACE": 65,
|
||||
"FIELD_COLOR32": 9,
|
||||
"FIELD_CONDITION_ID": 68,
|
||||
"FIELD_CSTRING": 30,
|
||||
"FIELD_CTRANSFORM": 59,
|
||||
"FIELD_CTRANSFORM_WORLDSPACE": 60,
|
||||
"FIELD_CUSTOM": 11,
|
||||
"FIELD_DIRECTION_VECTOR_WORLDSPACE": 45,
|
||||
"FIELD_EHANDLE": 13,
|
||||
"FIELD_EMBEDDED": 10,
|
||||
"FIELD_ENGINE_TICK": 77,
|
||||
"FIELD_ENGINE_TIME": 76,
|
||||
"FIELD_FLOAT32": 1,
|
||||
"FIELD_FLOAT64": 34,
|
||||
"FIELD_FUNCTION": 19,
|
||||
"FIELD_GLOBALSYMBOL": 79,
|
||||
"FIELD_HMATERIAL": 41,
|
||||
"FIELD_HMODEL": 42,
|
||||
"FIELD_HPARTICLESYSTEMDEFINITION": 56,
|
||||
"FIELD_HPOSTPROCESSING": 61,
|
||||
"FIELD_HRENDERTEXTURE": 55,
|
||||
"FIELD_HSCRIPT": 31,
|
||||
"FIELD_HSCRIPT_LIGHTBINDING": 48,
|
||||
"FIELD_HSCRIPT_NEW_INSTANCE": 36,
|
||||
"FIELD_HVDATA": 73,
|
||||
"FIELD_INPUT": 18,
|
||||
"FIELD_INT16": 7,
|
||||
"FIELD_INT32": 5,
|
||||
"FIELD_INT64": 26,
|
||||
"FIELD_INTERVAL": 23,
|
||||
"FIELD_MATRIX3X4": 62,
|
||||
"FIELD_MATRIX3X4_WORLDSPACE": 22,
|
||||
"FIELD_MODIFIER_HANDLE": 70,
|
||||
"FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR": 54,
|
||||
"FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR": 40,
|
||||
"FIELD_NETWORK_QUANTIZED_FLOAT": 44,
|
||||
"FIELD_NETWORK_QUANTIZED_VECTOR": 43,
|
||||
"FIELD_POSITION_VECTOR": 14,
|
||||
"FIELD_POSITIVEINTEGER_OR_NULL": 35,
|
||||
"FIELD_QANGLE": 39,
|
||||
"FIELD_QANGLE_WORLDSPACE": 46,
|
||||
"FIELD_QUATERNION": 4,
|
||||
"FIELD_QUATERNION_WORLDSPACE": 47,
|
||||
"FIELD_RESOURCE": 28,
|
||||
"FIELD_ROTATION_VECTOR": 71,
|
||||
"FIELD_ROTATION_VECTOR_WORLDSPACE": 72,
|
||||
"FIELD_SCALE32": 74,
|
||||
"FIELD_SHIM": 63,
|
||||
"FIELD_SOUNDNAME": 17,
|
||||
"FIELD_STRING": 2,
|
||||
"FIELD_STRING_AND_TOKEN": 75,
|
||||
"FIELD_TICK": 16,
|
||||
"FIELD_TIME": 15,
|
||||
"FIELD_TYPECOUNT": 80,
|
||||
"FIELD_TYPEUNKNOWN": 29,
|
||||
"FIELD_UINT16": 58,
|
||||
"FIELD_UINT32": 37,
|
||||
"FIELD_UINT64": 33,
|
||||
"FIELD_UINT8": 57,
|
||||
"FIELD_UNUSED": 24,
|
||||
"FIELD_UTLSTRING": 53,
|
||||
"FIELD_UTLSTRINGTOKEN": 38,
|
||||
"FIELD_V8_ARRAY": 51,
|
||||
"FIELD_V8_CALLBACK_INFO": 52,
|
||||
"FIELD_V8_OBJECT": 50,
|
||||
"FIELD_V8_VALUE": 49,
|
||||
"FIELD_VARIANT": 32,
|
||||
"FIELD_VECTOR": 3,
|
||||
"FIELD_VECTOR2D": 25,
|
||||
"FIELD_VECTOR4D": 27,
|
||||
"FIELD_VMATRIX": 20,
|
||||
"FIELD_VMATRIX_WORLDSPACE": 21,
|
||||
"FIELD_VOID": 0,
|
||||
"FIELD_WORLD_GROUP_ID": 78
|
||||
},
|
||||
"type": "uint8"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,179 +0,0 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2025-04-02 01:38:06.172164600 UTC
|
||||
|
||||
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]
|
||||
|
||||
pub mod cs2_dumper {
|
||||
pub mod schemas {
|
||||
// Module: schemasystem.dll
|
||||
// Class count: 7
|
||||
// Enum count: 2
|
||||
pub mod schemasystem_dll {
|
||||
// Alignment: 1
|
||||
// Member count: 81
|
||||
#[repr(u8)]
|
||||
pub enum fieldtype_t {
|
||||
FIELD_VOID = 0x0,
|
||||
FIELD_FLOAT32 = 0x1,
|
||||
FIELD_STRING = 0x2,
|
||||
FIELD_VECTOR = 0x3,
|
||||
FIELD_QUATERNION = 0x4,
|
||||
FIELD_INT32 = 0x5,
|
||||
FIELD_BOOLEAN = 0x6,
|
||||
FIELD_INT16 = 0x7,
|
||||
FIELD_CHARACTER = 0x8,
|
||||
FIELD_COLOR32 = 0x9,
|
||||
FIELD_EMBEDDED = 0xA,
|
||||
FIELD_CUSTOM = 0xB,
|
||||
FIELD_CLASSPTR = 0xC,
|
||||
FIELD_EHANDLE = 0xD,
|
||||
FIELD_POSITION_VECTOR = 0xE,
|
||||
FIELD_TIME = 0xF,
|
||||
FIELD_TICK = 0x10,
|
||||
FIELD_SOUNDNAME = 0x11,
|
||||
FIELD_INPUT = 0x12,
|
||||
FIELD_FUNCTION = 0x13,
|
||||
FIELD_VMATRIX = 0x14,
|
||||
FIELD_VMATRIX_WORLDSPACE = 0x15,
|
||||
FIELD_MATRIX3X4_WORLDSPACE = 0x16,
|
||||
FIELD_INTERVAL = 0x17,
|
||||
FIELD_UNUSED = 0x18,
|
||||
FIELD_VECTOR2D = 0x19,
|
||||
FIELD_INT64 = 0x1A,
|
||||
FIELD_VECTOR4D = 0x1B,
|
||||
FIELD_RESOURCE = 0x1C,
|
||||
FIELD_TYPEUNKNOWN = 0x1D,
|
||||
FIELD_CSTRING = 0x1E,
|
||||
FIELD_HSCRIPT = 0x1F,
|
||||
FIELD_VARIANT = 0x20,
|
||||
FIELD_UINT64 = 0x21,
|
||||
FIELD_FLOAT64 = 0x22,
|
||||
FIELD_POSITIVEINTEGER_OR_NULL = 0x23,
|
||||
FIELD_HSCRIPT_NEW_INSTANCE = 0x24,
|
||||
FIELD_UINT32 = 0x25,
|
||||
FIELD_UTLSTRINGTOKEN = 0x26,
|
||||
FIELD_QANGLE = 0x27,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_VECTOR = 0x28,
|
||||
FIELD_HMATERIAL = 0x29,
|
||||
FIELD_HMODEL = 0x2A,
|
||||
FIELD_NETWORK_QUANTIZED_VECTOR = 0x2B,
|
||||
FIELD_NETWORK_QUANTIZED_FLOAT = 0x2C,
|
||||
FIELD_DIRECTION_VECTOR_WORLDSPACE = 0x2D,
|
||||
FIELD_QANGLE_WORLDSPACE = 0x2E,
|
||||
FIELD_QUATERNION_WORLDSPACE = 0x2F,
|
||||
FIELD_HSCRIPT_LIGHTBINDING = 0x30,
|
||||
FIELD_V8_VALUE = 0x31,
|
||||
FIELD_V8_OBJECT = 0x32,
|
||||
FIELD_V8_ARRAY = 0x33,
|
||||
FIELD_V8_CALLBACK_INFO = 0x34,
|
||||
FIELD_UTLSTRING = 0x35,
|
||||
FIELD_NETWORK_ORIGIN_CELL_QUANTIZED_POSITION_VECTOR = 0x36,
|
||||
FIELD_HRENDERTEXTURE = 0x37,
|
||||
FIELD_HPARTICLESYSTEMDEFINITION = 0x38,
|
||||
FIELD_UINT8 = 0x39,
|
||||
FIELD_UINT16 = 0x3A,
|
||||
FIELD_CTRANSFORM = 0x3B,
|
||||
FIELD_CTRANSFORM_WORLDSPACE = 0x3C,
|
||||
FIELD_HPOSTPROCESSING = 0x3D,
|
||||
FIELD_MATRIX3X4 = 0x3E,
|
||||
FIELD_SHIM = 0x3F,
|
||||
FIELD_CMOTIONTRANSFORM = 0x40,
|
||||
FIELD_CMOTIONTRANSFORM_WORLDSPACE = 0x41,
|
||||
FIELD_ATTACHMENT_HANDLE = 0x42,
|
||||
FIELD_AMMO_INDEX = 0x43,
|
||||
FIELD_CONDITION_ID = 0x44,
|
||||
FIELD_AI_SCHEDULE_BITS = 0x45,
|
||||
FIELD_MODIFIER_HANDLE = 0x46,
|
||||
FIELD_ROTATION_VECTOR = 0x47,
|
||||
FIELD_ROTATION_VECTOR_WORLDSPACE = 0x48,
|
||||
FIELD_HVDATA = 0x49,
|
||||
FIELD_SCALE32 = 0x4A,
|
||||
FIELD_STRING_AND_TOKEN = 0x4B,
|
||||
FIELD_ENGINE_TIME = 0x4C,
|
||||
FIELD_ENGINE_TICK = 0x4D,
|
||||
FIELD_WORLD_GROUP_ID = 0x4E,
|
||||
FIELD_GLOBALSYMBOL = 0x4F,
|
||||
FIELD_TYPECOUNT = 0x50
|
||||
}
|
||||
// Alignment: 4
|
||||
// Member count: 3
|
||||
#[repr(u32)]
|
||||
pub enum ThreeState_t {
|
||||
TRS_FALSE = 0x0,
|
||||
TRS_TRUE = 0x1,
|
||||
TRS_NONE = 0x2
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MResourceTypeForInfoType
|
||||
pub mod InfoForResourceTypeCResourceManifestInternal {
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 22
|
||||
pub mod CSchemaSystemInternalRegistration {
|
||||
pub const m_Vector2D: usize = 0x0; // Vector2D
|
||||
pub const m_Vector: usize = 0x8; // Vector
|
||||
pub const m_VectorAligned: usize = 0x20; // VectorAligned
|
||||
pub const m_Quaternion: usize = 0x30; // Quaternion
|
||||
pub const m_QAngle: usize = 0x40; // QAngle
|
||||
pub const m_RotationVector: usize = 0x4C; // RotationVector
|
||||
pub const m_RadianEuler: usize = 0x58; // RadianEuler
|
||||
pub const m_DegreeEuler: usize = 0x64; // DegreeEuler
|
||||
pub const m_QuaternionStorage: usize = 0x70; // QuaternionStorage
|
||||
pub const m_matrix3x4_t: usize = 0x80; // matrix3x4_t
|
||||
pub const m_matrix3x4a_t: usize = 0xB0; // matrix3x4a_t
|
||||
pub const m_Color: usize = 0xE0; // Color
|
||||
pub const m_Vector4D: usize = 0xE4; // Vector4D
|
||||
pub const m_CTransform: usize = 0x100; // CTransform
|
||||
pub const m_pKeyValues: usize = 0x120; // KeyValues*
|
||||
pub const m_CUtlBinaryBlock: usize = 0x128; // CUtlBinaryBlock
|
||||
pub const m_CUtlString: usize = 0x140; // CUtlString
|
||||
pub const m_CUtlSymbol: usize = 0x148; // CUtlSymbol
|
||||
pub const m_stringToken: usize = 0x14C; // CUtlStringToken
|
||||
pub const m_stringTokenWithStorage: usize = 0x150; // CUtlStringTokenWithStorage
|
||||
pub const m_ResourceTypes: usize = 0x168; // CResourceArray<CResourcePointer<CResourceString>>
|
||||
pub const m_KV3: usize = 0x170; // KeyValues3
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicDerivedA {
|
||||
pub const m_nDerivedA: usize = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicBase {
|
||||
pub const m_nBase: usize = 0x8; // int32
|
||||
}
|
||||
// Parent: CExampleSchemaVData_PolymorphicBase
|
||||
// Field count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_PolymorphicDerivedB {
|
||||
pub const m_nDerivedB: usize = 0x10; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 1
|
||||
pub mod ResourceId_t {
|
||||
pub const m_Value: usize = 0x0; // uint64
|
||||
}
|
||||
// Parent: None
|
||||
// Field count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
pub mod CExampleSchemaVData_Monomorphic {
|
||||
pub const m_nExample1: usize = 0x0; // int32
|
||||
pub const m_nExample2: usize = 0x4; // int32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
11069
output/server_dll.cs
11069
output/server_dll.cs
File diff suppressed because it is too large
Load Diff
11075
output/server_dll.hpp
11075
output/server_dll.hpp
File diff suppressed because it is too large
Load Diff
19373
output/server_dll.json
19373
output/server_dll.json
File diff suppressed because it is too large
Load Diff
11177
output/server_dll.rs
11177
output/server_dll.rs
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user