From 743cfc302689f0c8fbc4ddad3fd01dcaa659a9aa Mon Sep 17 00:00:00 2001 From: a2x <45197573+a2x@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:59:09 +1000 Subject: [PATCH] Initial commit --- .editorconfig | 9 + .gitignore | 7 + .gitmodules | 6 + CMakeLists.txt | 24 + LICENSE | 21 + README.md | 13 + generated/animationsystem.dll.hpp | 2565 ++++++ generated/animationsystem.dll.json | 2178 +++++ generated/client.dll.hpp | 4343 ++++++++++ generated/client.dll.json | 3640 +++++++++ generated/engine2.dll.hpp | 243 + generated/engine2.dll.json | 147 + generated/host.dll.hpp | 12 + generated/host.dll.json | 8 + generated/materialsystem2.dll.hpp | 111 + generated/materialsystem2.dll.json | 96 + generated/meshsystem.dll.hpp | 4 + generated/meshsystem.dll.json | 1 + generated/networksystem.dll.hpp | 8 + generated/networksystem.dll.json | 5 + generated/panorama.dll.hpp | 4 + generated/panorama.dll.json | 1 + generated/particles.dll.hpp | 4023 +++++++++ generated/particles.dll.json | 3495 ++++++++ generated/pulse_system.dll.hpp | 348 + generated/pulse_system.dll.json | 231 + generated/rendersystemdx11.dll.hpp | 25 + generated/rendersystemdx11.dll.json | 20 + generated/resourcesystem.dll.hpp | 203 + generated/resourcesystem.dll.json | 63 + generated/scenefilecache.dll.hpp | 4 + generated/scenefilecache.dll.json | 1 + generated/scenesystem.dll.hpp | 57 + generated/scenesystem.dll.json | 42 + generated/schemasystem.dll.hpp | 53 + generated/schemasystem.dll.json | 42 + generated/server.dll.hpp | 7633 ++++++++++++++++++ generated/server.dll.json | 6387 +++++++++++++++ generated/soundsystem.dll.hpp | 309 + generated/soundsystem.dll.json | 270 + generated/vphysics2.dll.hpp | 743 ++ generated/vphysics2.dll.json | 653 ++ generated/worldrenderer.dll.hpp | 228 + generated/worldrenderer.dll.json | 196 + include/base/safe_handle.hpp | 22 + include/process.hpp | 35 + include/sdk/c_schema_class_field_data.hpp | 10 + include/sdk/c_schema_class_info.hpp | 12 + include/sdk/c_schema_system.hpp | 14 + include/sdk/c_schema_system_type_scope.hpp | 15 + include/sdk/c_schema_type_declared_class.hpp | 8 + include/sdk/sdk.hpp | 13 + include/utility/murmur_hash.hpp | 7 + src/main.cpp | 108 + src/process.cpp | 164 + src/sdk/c_schema_class_field_data.cpp | 11 + src/sdk/c_schema_class_info.cpp | 22 + src/sdk/c_schema_system.cpp | 28 + src/sdk/c_schema_system_type_scope.cpp | 97 + src/sdk/c_schema_type_declared_class.cpp | 7 + src/utility/murmur_hash.cpp | 53 + vendor/CMakeLists.txt | 4 + vendor/nlohmann_json | 1 + vendor/spdlog | 1 + 64 files changed, 39104 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 CMakeLists.txt create mode 100644 LICENSE create mode 100644 README.md create mode 100644 generated/animationsystem.dll.hpp create mode 100644 generated/animationsystem.dll.json create mode 100644 generated/client.dll.hpp create mode 100644 generated/client.dll.json create mode 100644 generated/engine2.dll.hpp create mode 100644 generated/engine2.dll.json create mode 100644 generated/host.dll.hpp create mode 100644 generated/host.dll.json create mode 100644 generated/materialsystem2.dll.hpp create mode 100644 generated/materialsystem2.dll.json create mode 100644 generated/meshsystem.dll.hpp create mode 100644 generated/meshsystem.dll.json create mode 100644 generated/networksystem.dll.hpp create mode 100644 generated/networksystem.dll.json create mode 100644 generated/panorama.dll.hpp create mode 100644 generated/panorama.dll.json create mode 100644 generated/particles.dll.hpp create mode 100644 generated/particles.dll.json create mode 100644 generated/pulse_system.dll.hpp create mode 100644 generated/pulse_system.dll.json create mode 100644 generated/rendersystemdx11.dll.hpp create mode 100644 generated/rendersystemdx11.dll.json create mode 100644 generated/resourcesystem.dll.hpp create mode 100644 generated/resourcesystem.dll.json create mode 100644 generated/scenefilecache.dll.hpp create mode 100644 generated/scenefilecache.dll.json create mode 100644 generated/scenesystem.dll.hpp create mode 100644 generated/scenesystem.dll.json create mode 100644 generated/schemasystem.dll.hpp create mode 100644 generated/schemasystem.dll.json create mode 100644 generated/server.dll.hpp create mode 100644 generated/server.dll.json create mode 100644 generated/soundsystem.dll.hpp create mode 100644 generated/soundsystem.dll.json create mode 100644 generated/vphysics2.dll.hpp create mode 100644 generated/vphysics2.dll.json create mode 100644 generated/worldrenderer.dll.hpp create mode 100644 generated/worldrenderer.dll.json create mode 100644 include/base/safe_handle.hpp create mode 100644 include/process.hpp create mode 100644 include/sdk/c_schema_class_field_data.hpp create mode 100644 include/sdk/c_schema_class_info.hpp create mode 100644 include/sdk/c_schema_system.hpp create mode 100644 include/sdk/c_schema_system_type_scope.hpp create mode 100644 include/sdk/c_schema_type_declared_class.hpp create mode 100644 include/sdk/sdk.hpp create mode 100644 include/utility/murmur_hash.hpp create mode 100644 src/main.cpp create mode 100644 src/process.cpp create mode 100644 src/sdk/c_schema_class_field_data.cpp create mode 100644 src/sdk/c_schema_class_info.cpp create mode 100644 src/sdk/c_schema_system.cpp create mode 100644 src/sdk/c_schema_system_type_scope.cpp create mode 100644 src/sdk/c_schema_type_declared_class.cpp create mode 100644 src/utility/murmur_hash.cpp create mode 100644 vendor/CMakeLists.txt create mode 160000 vendor/nlohmann_json create mode 160000 vendor/spdlog diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3039c81 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5805a7e --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.idea/ +.vs/ +build/ +cmake-build-debug/ +cmake-build-release/ +CMakeSettings.json +out/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b67b875 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "vendor/nlohmann_json"] + path = vendor/nlohmann_json + url = https://github.com/nlohmann/json +[submodule "vendor/spdlog"] + path = vendor/spdlog + url = https://github.com/gabime/spdlog diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5bdb608 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,24 @@ +cmake_minimum_required(VERSION 3.26) + +project(cs2-schema-dumper) + +set(CMAKE_CXX_STANDARD 20) + +add_compile_definitions(WIN32_LEAN_AND_MEAN) + +add_subdirectory(vendor) + +add_executable(${PROJECT_NAME} + src/main.cpp + src/process.cpp + src/sdk/c_schema_class_field_data.cpp + src/sdk/c_schema_class_info.cpp + src/sdk/c_schema_system.cpp + src/sdk/c_schema_system_type_scope.cpp + src/sdk/c_schema_type_declared_class.cpp + src/utility/murmur_hash.cpp +) + +target_link_libraries(${PROJECT_NAME} nlohmann_json::nlohmann_json spdlog::spdlog) + +target_include_directories(${PROJECT_NAME} PRIVATE include vendor/nlohmann_json/single_include vendor/spdlog/include) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f0c8cc7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +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 +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..80a2c51 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# CS2 Schema Dumper + +Automated schema class file generator for Counter-Strike: 2. Generates JSON and C++ header files. + +# Generated Files + +Generated files are stored in the `generated` directory. + +📂 [Pre-generated Files](./generated) + +# License + +Please refer to the [LICENSE](./LICENSE) file for more details. diff --git a/generated/animationsystem.dll.hpp b/generated/animationsystem.dll.hpp new file mode 100644 index 0000000..45a214c --- /dev/null +++ b/generated/animationsystem.dll.hpp @@ -0,0 +1,2565 @@ +#pragma once + +#include + +namespace MoodAnimation_t { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_flWeight = 0x8; +} + +namespace MoodAnimationLayer_t { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_bActiveListening = 0x8; + constexpr std::ptrdiff_t m_bActiveTalking = 0x9; + constexpr std::ptrdiff_t m_layerAnimations = 0x10; + constexpr std::ptrdiff_t m_flIntensity = 0x28; + constexpr std::ptrdiff_t m_flDurationScale = 0x30; + constexpr std::ptrdiff_t m_bScaleWithInts = 0x38; + constexpr std::ptrdiff_t m_flNextStart = 0x3c; + constexpr std::ptrdiff_t m_flStartOffset = 0x44; + constexpr std::ptrdiff_t m_flEndOffset = 0x4c; + constexpr std::ptrdiff_t m_flFadeIn = 0x54; + constexpr std::ptrdiff_t m_flFadeOut = 0x58; +} + +namespace CMoodVData { + constexpr std::ptrdiff_t m_sModelName = 0x0; + constexpr std::ptrdiff_t m_nMoodType = 0xe0; + constexpr std::ptrdiff_t m_animationLayers = 0xe8; +} + +namespace AnimationDecodeDebugDumpElement_t { + constexpr std::ptrdiff_t m_nEntityIndex = 0x0; + constexpr std::ptrdiff_t m_modelName = 0x8; + constexpr std::ptrdiff_t m_poseParams = 0x10; + constexpr std::ptrdiff_t m_decodeOps = 0x28; + constexpr std::ptrdiff_t m_internalOps = 0x40; + constexpr std::ptrdiff_t m_decodedAnims = 0x58; +} + +namespace AnimationDecodeDebugDump_t { + constexpr std::ptrdiff_t m_processingType = 0x0; + constexpr std::ptrdiff_t m_elems = 0x8; +} + +namespace AnimationSnapshotBase_t { + constexpr std::ptrdiff_t m_flRealTime = 0x0; + constexpr std::ptrdiff_t m_rootToWorld = 0x10; + constexpr std::ptrdiff_t m_bBonesInWorldSpace = 0x40; + constexpr std::ptrdiff_t m_boneSetupMask = 0x48; + constexpr std::ptrdiff_t m_boneTransforms = 0x60; + constexpr std::ptrdiff_t m_flexControllers = 0x78; + constexpr std::ptrdiff_t m_SnapshotType = 0x90; + constexpr std::ptrdiff_t m_bHasDecodeDump = 0x94; + constexpr std::ptrdiff_t m_DecodeDump = 0x98; +} + +namespace AnimationSnapshot_t { + constexpr std::ptrdiff_t m_nEntIndex = 0x110; + constexpr std::ptrdiff_t m_modelName = 0x118; +} + +namespace CAnimBoneDifference { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_parent = 0x10; + constexpr std::ptrdiff_t m_posError = 0x20; + constexpr std::ptrdiff_t m_bHasRotation = 0x2c; + constexpr std::ptrdiff_t m_bHasMovement = 0x2d; +} + +namespace CAnimMorphDifference { + constexpr std::ptrdiff_t m_name = 0x0; +} + +namespace CAnimUserDifference { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nType = 0x10; +} + +namespace CAnimEncodeDifference { + constexpr std::ptrdiff_t m_boneArray = 0x0; + constexpr std::ptrdiff_t m_morphArray = 0x18; + constexpr std::ptrdiff_t m_userArray = 0x30; + constexpr std::ptrdiff_t m_bHasRotationBitArray = 0x48; + constexpr std::ptrdiff_t m_bHasMovementBitArray = 0x60; + constexpr std::ptrdiff_t m_bHasMorphBitArray = 0x78; + constexpr std::ptrdiff_t m_bHasUserBitArray = 0x90; +} + +namespace CAnimEventDefinition { + constexpr std::ptrdiff_t m_nFrame = 0x8; + constexpr std::ptrdiff_t m_flCycle = 0xc; + constexpr std::ptrdiff_t m_EventData = 0x10; + constexpr std::ptrdiff_t m_sLegacyOptions = 0x20; + constexpr std::ptrdiff_t m_sEventName = 0x30; +} + +namespace CAnimMovement { + constexpr std::ptrdiff_t endframe = 0x0; + constexpr std::ptrdiff_t motionflags = 0x4; + constexpr std::ptrdiff_t v0 = 0x8; + constexpr std::ptrdiff_t v1 = 0xc; + constexpr std::ptrdiff_t angle = 0x10; + constexpr std::ptrdiff_t vector = 0x14; + constexpr std::ptrdiff_t position = 0x20; +} + +namespace CAnimLocalHierarchy { + constexpr std::ptrdiff_t m_sBone = 0x0; + constexpr std::ptrdiff_t m_sNewParent = 0x10; + constexpr std::ptrdiff_t m_nStartFrame = 0x20; + constexpr std::ptrdiff_t m_nPeakFrame = 0x24; + constexpr std::ptrdiff_t m_nTailFrame = 0x28; + constexpr std::ptrdiff_t m_nEndFrame = 0x2c; +} + +namespace CAnimDecoder { + constexpr std::ptrdiff_t m_szName = 0x0; + constexpr std::ptrdiff_t m_nVersion = 0x10; + constexpr std::ptrdiff_t m_nType = 0x14; +} + +namespace CAnimFrameSegment { + constexpr std::ptrdiff_t m_nUniqueFrameIndex = 0x0; + constexpr std::ptrdiff_t m_nLocalElementMasks = 0x4; + constexpr std::ptrdiff_t m_nLocalChannel = 0x8; + constexpr std::ptrdiff_t m_container = 0x10; +} + +namespace CAnimFrameBlockAnim { + constexpr std::ptrdiff_t m_nStartFrame = 0x0; + constexpr std::ptrdiff_t m_nEndFrame = 0x4; + constexpr std::ptrdiff_t m_segmentIndexArray = 0x8; +} + +namespace CAnimEncodedFrames { + constexpr std::ptrdiff_t m_fileName = 0x0; + constexpr std::ptrdiff_t m_nFrames = 0x10; + constexpr std::ptrdiff_t m_nFramesPerBlock = 0x14; + constexpr std::ptrdiff_t m_frameblockArray = 0x18; + constexpr std::ptrdiff_t m_usageDifferences = 0x30; +} + +namespace CAnimDesc_Flag { + constexpr std::ptrdiff_t m_bLooping = 0x0; + constexpr std::ptrdiff_t m_bAllZeros = 0x1; + constexpr std::ptrdiff_t m_bHidden = 0x2; + constexpr std::ptrdiff_t m_bDelta = 0x3; + constexpr std::ptrdiff_t m_bLegacyWorldspace = 0x4; + constexpr std::ptrdiff_t m_bModelDoc = 0x5; + constexpr std::ptrdiff_t m_bImplicitSeqIgnoreDelta = 0x6; + constexpr std::ptrdiff_t m_bAnimGraphAdditive = 0x7; +} + +namespace CAnimSequenceParams { + constexpr std::ptrdiff_t m_flFadeInTime = 0x0; + constexpr std::ptrdiff_t m_flFadeOutTime = 0x4; +} + +namespace CAnimDesc { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_flags = 0x10; + constexpr std::ptrdiff_t fps = 0x18; + constexpr std::ptrdiff_t m_Data = 0x20; + constexpr std::ptrdiff_t m_movementArray = 0xf8; + constexpr std::ptrdiff_t m_eventArray = 0x110; + constexpr std::ptrdiff_t m_activityArray = 0x128; + constexpr std::ptrdiff_t m_hierarchyArray = 0x140; + constexpr std::ptrdiff_t framestalltime = 0x158; + constexpr std::ptrdiff_t m_vecRootMin = 0x15c; + constexpr std::ptrdiff_t m_vecRootMax = 0x168; + constexpr std::ptrdiff_t m_vecBoneWorldMin = 0x178; + constexpr std::ptrdiff_t m_vecBoneWorldMax = 0x190; + constexpr std::ptrdiff_t m_sequenceParams = 0x1a8; +} + +namespace CAnimActivity { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nActivity = 0x10; + constexpr std::ptrdiff_t m_nFlags = 0x14; + constexpr std::ptrdiff_t m_nWeight = 0x18; +} + +namespace CAnimData { + constexpr std::ptrdiff_t m_name = 0x10; + constexpr std::ptrdiff_t m_animArray = 0x20; + constexpr std::ptrdiff_t m_decoderArray = 0x38; + constexpr std::ptrdiff_t m_nMaxUniqueFrameIndex = 0x50; + constexpr std::ptrdiff_t m_segmentArray = 0x58; +} + +namespace CAnimBone { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_parent = 0x10; + constexpr std::ptrdiff_t m_pos = 0x14; + constexpr std::ptrdiff_t m_quat = 0x20; + constexpr std::ptrdiff_t m_scale = 0x30; + constexpr std::ptrdiff_t m_qAlignment = 0x34; + constexpr std::ptrdiff_t m_flags = 0x44; +} + +namespace CAnimUser { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nType = 0x10; +} + +namespace CAnimDataChannelDesc { + constexpr std::ptrdiff_t m_szChannelClass = 0x0; + constexpr std::ptrdiff_t m_szVariableName = 0x10; + constexpr std::ptrdiff_t m_nFlags = 0x20; + constexpr std::ptrdiff_t m_nType = 0x24; + constexpr std::ptrdiff_t m_szGrouping = 0x28; + constexpr std::ptrdiff_t m_szDescription = 0x38; + constexpr std::ptrdiff_t m_szElementNameArray = 0x48; + constexpr std::ptrdiff_t m_nElementIndexArray = 0x60; + constexpr std::ptrdiff_t m_nElementMaskArray = 0x78; +} + +namespace CAnimKeyData { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_boneArray = 0x10; + constexpr std::ptrdiff_t m_userArray = 0x28; + constexpr std::ptrdiff_t m_morphArray = 0x40; + constexpr std::ptrdiff_t m_nChannelElements = 0x58; + constexpr std::ptrdiff_t m_dataChannelArray = 0x60; +} + +namespace CAnimationGroup { + constexpr std::ptrdiff_t m_nFlags = 0x10; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_localHAnimArray_Handle = 0x60; + constexpr std::ptrdiff_t m_includedGroupArray_Handle = 0x78; + constexpr std::ptrdiff_t m_directHSeqGroup_Handle = 0x90; + constexpr std::ptrdiff_t m_decodeKey = 0x98; + constexpr std::ptrdiff_t m_szScripts = 0x110; +} + +namespace CSeqAutoLayerFlag { + constexpr std::ptrdiff_t m_bPost = 0x0; + constexpr std::ptrdiff_t m_bSpline = 0x1; + constexpr std::ptrdiff_t m_bXFade = 0x2; + constexpr std::ptrdiff_t m_bNoBlend = 0x3; + constexpr std::ptrdiff_t m_bLocal = 0x4; + constexpr std::ptrdiff_t m_bPose = 0x5; + constexpr std::ptrdiff_t m_bFetchFrame = 0x6; + constexpr std::ptrdiff_t m_bSubtract = 0x7; +} + +namespace CSeqAutoLayer { + constexpr std::ptrdiff_t m_nLocalReference = 0x0; + constexpr std::ptrdiff_t m_nLocalPose = 0x2; + constexpr std::ptrdiff_t m_flags = 0x4; + constexpr std::ptrdiff_t m_start = 0xc; + constexpr std::ptrdiff_t m_peak = 0x10; + constexpr std::ptrdiff_t m_tail = 0x14; + constexpr std::ptrdiff_t m_end = 0x18; +} + +namespace CSeqIKLock { + constexpr std::ptrdiff_t m_flPosWeight = 0x0; + constexpr std::ptrdiff_t m_flAngleWeight = 0x4; + constexpr std::ptrdiff_t m_nLocalBone = 0x8; + constexpr std::ptrdiff_t m_bBonesOrientedAlongPositiveX = 0xa; +} + +namespace CSeqBoneMaskList { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_nLocalBoneArray = 0x10; + constexpr std::ptrdiff_t m_flBoneWeightArray = 0x28; + constexpr std::ptrdiff_t m_flDefaultMorphCtrlWeight = 0x40; + constexpr std::ptrdiff_t m_morphCtrlWeightArray = 0x48; +} + +namespace CSeqScaleSet { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_bRootOffset = 0x10; + constexpr std::ptrdiff_t m_vRootOffset = 0x14; + constexpr std::ptrdiff_t m_nLocalBoneArray = 0x20; + constexpr std::ptrdiff_t m_flBoneScaleArray = 0x38; +} + +namespace CSeqMultiFetchFlag { + constexpr std::ptrdiff_t m_bRealtime = 0x0; + constexpr std::ptrdiff_t m_bCylepose = 0x1; + constexpr std::ptrdiff_t m_b0D = 0x2; + constexpr std::ptrdiff_t m_b1D = 0x3; + constexpr std::ptrdiff_t m_b2D = 0x4; + constexpr std::ptrdiff_t m_b2D_TRI = 0x5; +} + +namespace CSeqMultiFetch { + constexpr std::ptrdiff_t m_flags = 0x0; + constexpr std::ptrdiff_t m_localReferenceArray = 0x8; + constexpr std::ptrdiff_t m_nGroupSize = 0x20; + constexpr std::ptrdiff_t m_nLocalPose = 0x28; + constexpr std::ptrdiff_t m_poseKeyArray0 = 0x30; + constexpr std::ptrdiff_t m_poseKeyArray1 = 0x48; + constexpr std::ptrdiff_t m_nLocalCyclePoseParameter = 0x60; + constexpr std::ptrdiff_t m_bCalculatePoseParameters = 0x64; +} + +namespace CSeqSeqDescFlag { + constexpr std::ptrdiff_t m_bLooping = 0x0; + constexpr std::ptrdiff_t m_bSnap = 0x1; + constexpr std::ptrdiff_t m_bAutoplay = 0x2; + constexpr std::ptrdiff_t m_bPost = 0x3; + constexpr std::ptrdiff_t m_bHidden = 0x4; + constexpr std::ptrdiff_t m_bMulti = 0x5; + constexpr std::ptrdiff_t m_bLegacyDelta = 0x6; + constexpr std::ptrdiff_t m_bLegacyWorldspace = 0x7; + constexpr std::ptrdiff_t m_bLegacyCyclepose = 0x8; + constexpr std::ptrdiff_t m_bLegacyRealtime = 0x9; + constexpr std::ptrdiff_t m_bModelDoc = 0xa; +} + +namespace CSeqTransition { + constexpr std::ptrdiff_t m_flFadeInTime = 0x0; + constexpr std::ptrdiff_t m_flFadeOutTime = 0x4; +} + +namespace CSeqS1SeqDesc { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_flags = 0x10; + constexpr std::ptrdiff_t m_fetch = 0x20; + constexpr std::ptrdiff_t m_nLocalWeightlist = 0x88; + constexpr std::ptrdiff_t m_autoLayerArray = 0x90; + constexpr std::ptrdiff_t m_IKLockArray = 0xa8; + constexpr std::ptrdiff_t m_transition = 0xc0; + constexpr std::ptrdiff_t m_SequenceKeys = 0xc8; + constexpr std::ptrdiff_t m_LegacyKeyValueText = 0xd8; + constexpr std::ptrdiff_t m_activityArray = 0xe8; + constexpr std::ptrdiff_t m_footMotion = 0x100; +} + +namespace CSeqSynthAnimDesc { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_flags = 0x10; + constexpr std::ptrdiff_t m_transition = 0x1c; + constexpr std::ptrdiff_t m_nLocalBaseReference = 0x24; + constexpr std::ptrdiff_t m_nLocalBoneMask = 0x26; + constexpr std::ptrdiff_t m_activityArray = 0x28; +} + +namespace CSeqCmdLayer { + constexpr std::ptrdiff_t m_cmd = 0x0; + constexpr std::ptrdiff_t m_nLocalReference = 0x2; + constexpr std::ptrdiff_t m_nLocalBonemask = 0x4; + constexpr std::ptrdiff_t m_nDstResult = 0x6; + constexpr std::ptrdiff_t m_nSrcResult = 0x8; + constexpr std::ptrdiff_t m_bSpline = 0xa; + constexpr std::ptrdiff_t m_flVar1 = 0xc; + constexpr std::ptrdiff_t m_flVar2 = 0x10; + constexpr std::ptrdiff_t m_nLineNumber = 0x14; +} + +namespace CSeqPoseSetting { + constexpr std::ptrdiff_t m_sPoseParameter = 0x0; + constexpr std::ptrdiff_t m_sAttachment = 0x10; + constexpr std::ptrdiff_t m_sReferenceSequence = 0x20; + constexpr std::ptrdiff_t m_flValue = 0x30; + constexpr std::ptrdiff_t m_bX = 0x34; + constexpr std::ptrdiff_t m_bY = 0x35; + constexpr std::ptrdiff_t m_bZ = 0x36; + constexpr std::ptrdiff_t m_eType = 0x38; +} + +namespace CSeqCmdSeqDesc { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_flags = 0x10; + constexpr std::ptrdiff_t m_transition = 0x1c; + constexpr std::ptrdiff_t m_nFrameRangeSequence = 0x24; + constexpr std::ptrdiff_t m_nFrameCount = 0x26; + constexpr std::ptrdiff_t m_flFPS = 0x28; + constexpr std::ptrdiff_t m_nSubCycles = 0x2c; + constexpr std::ptrdiff_t m_numLocalResults = 0x2e; + constexpr std::ptrdiff_t m_cmdLayerArray = 0x30; + constexpr std::ptrdiff_t m_eventArray = 0x48; + constexpr std::ptrdiff_t m_activityArray = 0x60; + constexpr std::ptrdiff_t m_poseSettingArray = 0x78; +} + +namespace CSeqPoseParamDesc { + constexpr std::ptrdiff_t m_sName = 0x0; + constexpr std::ptrdiff_t m_flStart = 0x10; + constexpr std::ptrdiff_t m_flEnd = 0x14; + constexpr std::ptrdiff_t m_flLoop = 0x18; + constexpr std::ptrdiff_t m_bLooping = 0x1c; +} + +namespace CSequenceGroupData { + constexpr std::ptrdiff_t m_sName = 0x10; + constexpr std::ptrdiff_t m_nFlags = 0x20; + constexpr std::ptrdiff_t m_localSequenceNameArray = 0x28; + constexpr std::ptrdiff_t m_localS1SeqDescArray = 0x40; + constexpr std::ptrdiff_t m_localMultiSeqDescArray = 0x58; + constexpr std::ptrdiff_t m_localSynthAnimDescArray = 0x70; + constexpr std::ptrdiff_t m_localCmdSeqDescArray = 0x88; + constexpr std::ptrdiff_t m_localBoneMaskArray = 0xa0; + constexpr std::ptrdiff_t m_localScaleSetArray = 0xb8; + constexpr std::ptrdiff_t m_localBoneNameArray = 0xd0; + constexpr std::ptrdiff_t m_localNodeName = 0xe8; + constexpr std::ptrdiff_t m_localPoseParamArray = 0xf8; + constexpr std::ptrdiff_t m_keyValues = 0x110; + constexpr std::ptrdiff_t m_localIKAutoplayLockArray = 0x120; +} + +namespace CCompressorGroup { + constexpr std::ptrdiff_t m_nTotalElementCount = 0x0; + constexpr std::ptrdiff_t m_szChannelClass = 0x8; + constexpr std::ptrdiff_t m_szVariableName = 0x20; + constexpr std::ptrdiff_t m_nType = 0x38; + constexpr std::ptrdiff_t m_nFlags = 0x50; + constexpr std::ptrdiff_t m_szGrouping = 0x68; + constexpr std::ptrdiff_t m_nCompressorIndex = 0x80; + constexpr std::ptrdiff_t m_szElementNames = 0x98; + constexpr std::ptrdiff_t m_nElementUniqueID = 0xb0; + constexpr std::ptrdiff_t m_nElementMask = 0xc8; + constexpr std::ptrdiff_t m_vectorCompressor = 0xf8; + constexpr std::ptrdiff_t m_quaternionCompressor = 0x110; + constexpr std::ptrdiff_t m_intCompressor = 0x128; + constexpr std::ptrdiff_t m_boolCompressor = 0x140; + constexpr std::ptrdiff_t m_colorCompressor = 0x158; + constexpr std::ptrdiff_t m_vector2DCompressor = 0x170; + constexpr std::ptrdiff_t m_vector4DCompressor = 0x188; +} + +namespace HSequence { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CAnimEnum { + constexpr std::ptrdiff_t m_value = 0x0; +} + +namespace AnimNodeID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimNodeOutputID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimStateID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimParamID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimTagID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimComponentID { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace AnimScriptHandle { + constexpr std::ptrdiff_t m_id = 0x0; +} + +namespace CAnimAttachment { + constexpr std::ptrdiff_t m_influenceRotations = 0x0; + constexpr std::ptrdiff_t m_influenceOffsets = 0x30; + constexpr std::ptrdiff_t m_influenceIndices = 0x60; + constexpr std::ptrdiff_t m_influenceWeights = 0x6c; + constexpr std::ptrdiff_t m_numInfluences = 0x78; +} + +namespace VPhysics2ShapeDef_t { + constexpr std::ptrdiff_t m_spheres = 0x0; + constexpr std::ptrdiff_t m_capsules = 0x18; + constexpr std::ptrdiff_t m_hulls = 0x30; + constexpr std::ptrdiff_t m_meshes = 0x48; + constexpr std::ptrdiff_t m_CollisionAttributeIndices = 0x60; +} + +namespace VPhysXBodyPart_t { + constexpr std::ptrdiff_t m_nFlags = 0x0; + constexpr std::ptrdiff_t m_flMass = 0x4; + constexpr std::ptrdiff_t m_rnShape = 0x8; + constexpr std::ptrdiff_t m_nCollisionAttributeIndex = 0x80; + constexpr std::ptrdiff_t m_nReserved = 0x82; + constexpr std::ptrdiff_t m_flInertiaScale = 0x84; + constexpr std::ptrdiff_t m_flLinearDamping = 0x88; + constexpr std::ptrdiff_t m_flAngularDamping = 0x8c; + constexpr std::ptrdiff_t m_bOverrideMassCenter = 0x90; + constexpr std::ptrdiff_t m_vMassCenterOverride = 0x94; +} + +namespace VPhysXCollisionAttributes_t { + constexpr std::ptrdiff_t m_CollisionGroup = 0x0; + constexpr std::ptrdiff_t m_InteractAs = 0x8; + constexpr std::ptrdiff_t m_InteractWith = 0x20; + constexpr std::ptrdiff_t m_InteractExclude = 0x38; + constexpr std::ptrdiff_t m_CollisionGroupString = 0x50; + constexpr std::ptrdiff_t m_InteractAsStrings = 0x58; + constexpr std::ptrdiff_t m_InteractWithStrings = 0x70; + constexpr std::ptrdiff_t m_InteractExcludeStrings = 0x88; +} + +namespace VPhysXRange_t { + constexpr std::ptrdiff_t m_flMin = 0x0; + constexpr std::ptrdiff_t m_flMax = 0x4; +} + +namespace VPhysXConstraintParams_t { + constexpr std::ptrdiff_t m_nType = 0x0; + constexpr std::ptrdiff_t m_nTranslateMotion = 0x1; + constexpr std::ptrdiff_t m_nRotateMotion = 0x2; + constexpr std::ptrdiff_t m_nFlags = 0x3; + constexpr std::ptrdiff_t m_anchor = 0x4; + constexpr std::ptrdiff_t m_axes = 0x1c; + constexpr std::ptrdiff_t m_maxForce = 0x3c; + constexpr std::ptrdiff_t m_maxTorque = 0x40; + constexpr std::ptrdiff_t m_linearLimitValue = 0x44; + constexpr std::ptrdiff_t m_linearLimitRestitution = 0x48; + constexpr std::ptrdiff_t m_linearLimitSpring = 0x4c; + constexpr std::ptrdiff_t m_linearLimitDamping = 0x50; + constexpr std::ptrdiff_t m_twistLowLimitValue = 0x54; + constexpr std::ptrdiff_t m_twistLowLimitRestitution = 0x58; + constexpr std::ptrdiff_t m_twistLowLimitSpring = 0x5c; + constexpr std::ptrdiff_t m_twistLowLimitDamping = 0x60; + constexpr std::ptrdiff_t m_twistHighLimitValue = 0x64; + constexpr std::ptrdiff_t m_twistHighLimitRestitution = 0x68; + constexpr std::ptrdiff_t m_twistHighLimitSpring = 0x6c; + constexpr std::ptrdiff_t m_twistHighLimitDamping = 0x70; + constexpr std::ptrdiff_t m_swing1LimitValue = 0x74; + constexpr std::ptrdiff_t m_swing1LimitRestitution = 0x78; + constexpr std::ptrdiff_t m_swing1LimitSpring = 0x7c; + constexpr std::ptrdiff_t m_swing1LimitDamping = 0x80; + constexpr std::ptrdiff_t m_swing2LimitValue = 0x84; + constexpr std::ptrdiff_t m_swing2LimitRestitution = 0x88; + constexpr std::ptrdiff_t m_swing2LimitSpring = 0x8c; + constexpr std::ptrdiff_t m_swing2LimitDamping = 0x90; + constexpr std::ptrdiff_t m_goalPosition = 0x94; + constexpr std::ptrdiff_t m_goalOrientation = 0xa0; + constexpr std::ptrdiff_t m_goalAngularVelocity = 0xb0; + constexpr std::ptrdiff_t m_driveSpringX = 0xbc; + constexpr std::ptrdiff_t m_driveSpringY = 0xc0; + constexpr std::ptrdiff_t m_driveSpringZ = 0xc4; + constexpr std::ptrdiff_t m_driveDampingX = 0xc8; + constexpr std::ptrdiff_t m_driveDampingY = 0xcc; + constexpr std::ptrdiff_t m_driveDampingZ = 0xd0; + constexpr std::ptrdiff_t m_driveSpringTwist = 0xd4; + constexpr std::ptrdiff_t m_driveSpringSwing = 0xd8; + constexpr std::ptrdiff_t m_driveSpringSlerp = 0xdc; + constexpr std::ptrdiff_t m_driveDampingTwist = 0xe0; + constexpr std::ptrdiff_t m_driveDampingSwing = 0xe4; + constexpr std::ptrdiff_t m_driveDampingSlerp = 0xe8; + constexpr std::ptrdiff_t m_solverIterationCount = 0xec; + constexpr std::ptrdiff_t m_projectionLinearTolerance = 0xf0; + constexpr std::ptrdiff_t m_projectionAngularTolerance = 0xf4; +} + +namespace VPhysXConstraint2_t { + constexpr std::ptrdiff_t m_nFlags = 0x0; + constexpr std::ptrdiff_t m_nParent = 0x4; + constexpr std::ptrdiff_t m_nChild = 0x6; + constexpr std::ptrdiff_t m_params = 0x8; +} + +namespace VPhysXJoint_t { + constexpr std::ptrdiff_t m_nType = 0x0; + constexpr std::ptrdiff_t m_nBody1 = 0x2; + constexpr std::ptrdiff_t m_nBody2 = 0x4; + constexpr std::ptrdiff_t m_nFlags = 0x6; + constexpr std::ptrdiff_t m_Frame1 = 0x10; + constexpr std::ptrdiff_t m_Frame2 = 0x30; + constexpr std::ptrdiff_t m_bEnableCollision = 0x50; + constexpr std::ptrdiff_t m_bEnableLinearLimit = 0x51; + constexpr std::ptrdiff_t m_LinearLimit = 0x54; + constexpr std::ptrdiff_t m_bEnableLinearMotor = 0x5c; + constexpr std::ptrdiff_t m_vLinearTargetVelocity = 0x60; + constexpr std::ptrdiff_t m_flMaxForce = 0x6c; + constexpr std::ptrdiff_t m_bEnableSwingLimit = 0x70; + constexpr std::ptrdiff_t m_SwingLimit = 0x74; + constexpr std::ptrdiff_t m_bEnableTwistLimit = 0x7c; + constexpr std::ptrdiff_t m_TwistLimit = 0x80; + constexpr std::ptrdiff_t m_bEnableAngularMotor = 0x88; + constexpr std::ptrdiff_t m_vAngularTargetVelocity = 0x8c; + constexpr std::ptrdiff_t m_flMaxTorque = 0x98; + constexpr std::ptrdiff_t m_flLinearFrequency = 0x9c; + constexpr std::ptrdiff_t m_flLinearDampingRatio = 0xa0; + constexpr std::ptrdiff_t m_flAngularFrequency = 0xa4; + constexpr std::ptrdiff_t m_flAngularDampingRatio = 0xa8; + constexpr std::ptrdiff_t m_flFriction = 0xac; +} + +namespace PhysSoftbodyDesc_t { + constexpr std::ptrdiff_t m_ParticleBoneHash = 0x0; + constexpr std::ptrdiff_t m_Particles = 0x18; + constexpr std::ptrdiff_t m_Springs = 0x30; + constexpr std::ptrdiff_t m_Capsules = 0x48; + constexpr std::ptrdiff_t m_InitPose = 0x60; + constexpr std::ptrdiff_t m_ParticleBoneName = 0x78; +} + +namespace VPhysXAggregateData_t { + constexpr std::ptrdiff_t m_nFlags = 0x0; + constexpr std::ptrdiff_t m_nRefCounter = 0x2; + constexpr std::ptrdiff_t m_bonesHash = 0x8; + constexpr std::ptrdiff_t m_boneNames = 0x20; + constexpr std::ptrdiff_t m_indexNames = 0x38; + constexpr std::ptrdiff_t m_indexHash = 0x50; + constexpr std::ptrdiff_t m_bindPose = 0x68; + constexpr std::ptrdiff_t m_parts = 0x80; + constexpr std::ptrdiff_t m_constraints2 = 0x98; + constexpr std::ptrdiff_t m_joints = 0xb0; + constexpr std::ptrdiff_t m_pFeModel = 0xc8; + constexpr std::ptrdiff_t m_boneParents = 0xd0; + constexpr std::ptrdiff_t m_surfacePropertyHashes = 0xe8; + constexpr std::ptrdiff_t m_collisionAttributes = 0x100; + constexpr std::ptrdiff_t m_debugPartNames = 0x118; + constexpr std::ptrdiff_t m_embeddedKeyvalues = 0x130; +} + +namespace CPhysSurfacePropertiesPhysics { + constexpr std::ptrdiff_t m_friction = 0x0; + constexpr std::ptrdiff_t m_elasticity = 0x4; + constexpr std::ptrdiff_t m_density = 0x8; + constexpr std::ptrdiff_t m_thickness = 0xc; + constexpr std::ptrdiff_t m_softContactFrequency = 0x10; + constexpr std::ptrdiff_t m_softContactDampingRatio = 0x14; + constexpr std::ptrdiff_t m_wheelDrag = 0x18; +} + +namespace CPhysSurfacePropertiesAudio { + constexpr std::ptrdiff_t m_reflectivity = 0x0; + constexpr std::ptrdiff_t m_hardnessFactor = 0x4; + constexpr std::ptrdiff_t m_roughnessFactor = 0x8; + constexpr std::ptrdiff_t m_roughThreshold = 0xc; + constexpr std::ptrdiff_t m_hardThreshold = 0x10; + constexpr std::ptrdiff_t m_hardVelocityThreshold = 0x14; + constexpr std::ptrdiff_t m_flStaticImpactVolume = 0x18; + constexpr std::ptrdiff_t m_flOcclusionFactor = 0x1c; +} + +namespace CPhysSurfacePropertiesSoundNames { + constexpr std::ptrdiff_t m_impactSoft = 0x0; + constexpr std::ptrdiff_t m_impactHard = 0x8; + constexpr std::ptrdiff_t m_scrapeSmooth = 0x10; + constexpr std::ptrdiff_t m_scrapeRough = 0x18; + constexpr std::ptrdiff_t m_bulletImpact = 0x20; + constexpr std::ptrdiff_t m_rolling = 0x28; + constexpr std::ptrdiff_t m_break = 0x30; + constexpr std::ptrdiff_t m_strain = 0x38; +} + +namespace CPhysSurfaceProperties { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nameHash = 0x8; + constexpr std::ptrdiff_t m_baseNameHash = 0xc; + constexpr std::ptrdiff_t m_bHidden = 0x18; + constexpr std::ptrdiff_t m_description = 0x20; + constexpr std::ptrdiff_t m_physics = 0x28; + constexpr std::ptrdiff_t m_audioSounds = 0x48; + constexpr std::ptrdiff_t m_audioParams = 0x88; +} + +namespace CVPhysXSurfacePropertiesList { + constexpr std::ptrdiff_t m_surfacePropertiesList = 0x0; +} + +namespace MaterialGroup_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_materials = 0x8; +} + +namespace ModelSkeletonData_t { + constexpr std::ptrdiff_t m_boneName = 0x0; + constexpr std::ptrdiff_t m_nParent = 0x18; + constexpr std::ptrdiff_t m_boneSphere = 0x30; + constexpr std::ptrdiff_t m_nFlag = 0x48; + constexpr std::ptrdiff_t m_bonePosParent = 0x60; + constexpr std::ptrdiff_t m_boneRotParent = 0x78; + constexpr std::ptrdiff_t m_boneScaleParent = 0x90; +} + +namespace PermModelInfo_t { + constexpr std::ptrdiff_t m_nFlags = 0x0; + constexpr std::ptrdiff_t m_vHullMin = 0x4; + constexpr std::ptrdiff_t m_vHullMax = 0x10; + constexpr std::ptrdiff_t m_vViewMin = 0x1c; + constexpr std::ptrdiff_t m_vViewMax = 0x28; + constexpr std::ptrdiff_t m_flMass = 0x34; + constexpr std::ptrdiff_t m_vEyePosition = 0x38; + constexpr std::ptrdiff_t m_flMaxEyeDeflection = 0x44; + constexpr std::ptrdiff_t m_sSurfaceProperty = 0x48; + constexpr std::ptrdiff_t m_keyValueText = 0x50; +} + +namespace PermModelExtPart_t { + constexpr std::ptrdiff_t m_Transform = 0x0; + constexpr std::ptrdiff_t m_Name = 0x20; + constexpr std::ptrdiff_t m_nParent = 0x28; + constexpr std::ptrdiff_t m_refModel = 0x30; +} + +namespace ModelBoneFlexDriverControl_t { + constexpr std::ptrdiff_t m_nBoneComponent = 0x0; + constexpr std::ptrdiff_t m_flexController = 0x8; + constexpr std::ptrdiff_t m_flexControllerToken = 0x10; + constexpr std::ptrdiff_t m_flMin = 0x14; + constexpr std::ptrdiff_t m_flMax = 0x18; +} + +namespace ModelBoneFlexDriver_t { + constexpr std::ptrdiff_t m_boneName = 0x0; + constexpr std::ptrdiff_t m_boneNameToken = 0x8; + constexpr std::ptrdiff_t m_controls = 0x10; +} + +namespace PermModelDataAnimatedMaterialAttribute_t { + constexpr std::ptrdiff_t m_AttributeName = 0x0; + constexpr std::ptrdiff_t m_nNumChannels = 0x8; +} + +namespace PermModelData_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_modelInfo = 0x8; + constexpr std::ptrdiff_t m_ExtParts = 0x60; + constexpr std::ptrdiff_t m_refMeshes = 0x78; + constexpr std::ptrdiff_t m_refMeshGroupMasks = 0x90; + constexpr std::ptrdiff_t m_refPhysGroupMasks = 0xa8; + constexpr std::ptrdiff_t m_refLODGroupMasks = 0xc0; + constexpr std::ptrdiff_t m_lodGroupSwitchDistances = 0xd8; + constexpr std::ptrdiff_t m_refPhysicsData = 0xf0; + constexpr std::ptrdiff_t m_refPhysicsHitboxData = 0x108; + constexpr std::ptrdiff_t m_refAnimGroups = 0x120; + constexpr std::ptrdiff_t m_refSequenceGroups = 0x138; + constexpr std::ptrdiff_t m_meshGroups = 0x150; + constexpr std::ptrdiff_t m_materialGroups = 0x168; + constexpr std::ptrdiff_t m_nDefaultMeshGroupMask = 0x180; + constexpr std::ptrdiff_t m_modelSkeleton = 0x188; + constexpr std::ptrdiff_t m_remappingTable = 0x230; + constexpr std::ptrdiff_t m_remappingTableStarts = 0x248; + constexpr std::ptrdiff_t m_boneFlexDrivers = 0x260; + constexpr std::ptrdiff_t m_pModelConfigList = 0x278; + constexpr std::ptrdiff_t m_BodyGroupsHiddenInTools = 0x280; + constexpr std::ptrdiff_t m_refAnimIncludeModels = 0x298; + constexpr std::ptrdiff_t m_AnimatedMaterialAttributes = 0x2b0; +} + +namespace AttachmentHandle_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CModelConfigElement { + constexpr std::ptrdiff_t m_ElementName = 0x8; + constexpr std::ptrdiff_t m_NestedElements = 0x10; +} + +namespace CModelConfigElement_AttachedModel { + constexpr std::ptrdiff_t m_InstanceName = 0x48; + constexpr std::ptrdiff_t m_EntityClass = 0x50; + constexpr std::ptrdiff_t m_hModel = 0x58; + constexpr std::ptrdiff_t m_vOffset = 0x60; + constexpr std::ptrdiff_t m_aAngOffset = 0x6c; + constexpr std::ptrdiff_t m_AttachmentName = 0x78; + constexpr std::ptrdiff_t m_LocalAttachmentOffsetName = 0x80; + constexpr std::ptrdiff_t m_AttachmentType = 0x88; + constexpr std::ptrdiff_t m_bBoneMergeFlex = 0x8c; + constexpr std::ptrdiff_t m_bUserSpecifiedColor = 0x8d; + constexpr std::ptrdiff_t m_bUserSpecifiedMaterialGroup = 0x8e; + constexpr std::ptrdiff_t m_bAcceptParentMaterialDrivenDecals = 0x8f; + constexpr std::ptrdiff_t m_BodygroupOnOtherModels = 0x90; + constexpr std::ptrdiff_t m_MaterialGroupOnOtherModels = 0x98; +} + +namespace CModelConfigElement_UserPick { + constexpr std::ptrdiff_t m_Choices = 0x48; +} + +namespace CModelConfigElement_RandomPick { + constexpr std::ptrdiff_t m_Choices = 0x48; + constexpr std::ptrdiff_t m_ChoiceWeights = 0x60; +} + +namespace CModelConfigElement_SetMaterialGroup { + constexpr std::ptrdiff_t m_MaterialGroupName = 0x48; +} + +namespace CModelConfigElement_SetMaterialGroupOnAttachedModels { + constexpr std::ptrdiff_t m_MaterialGroupName = 0x48; +} + +namespace CModelConfigElement_SetRenderColor { + constexpr std::ptrdiff_t m_Color = 0x48; +} + +namespace CModelConfigElement_RandomColor { + constexpr std::ptrdiff_t m_Gradient = 0x48; +} + +namespace CModelConfigElement_SetBodygroup { + constexpr std::ptrdiff_t m_GroupName = 0x48; + constexpr std::ptrdiff_t m_nChoice = 0x50; +} + +namespace CModelConfigElement_SetBodygroupOnAttachedModels { + constexpr std::ptrdiff_t m_GroupName = 0x48; + constexpr std::ptrdiff_t m_nChoice = 0x50; +} + +namespace CModelConfigElement_Command { + constexpr std::ptrdiff_t m_Command = 0x48; + constexpr std::ptrdiff_t m_Args = 0x50; +} + +namespace CModelConfig { + constexpr std::ptrdiff_t m_ConfigName = 0x0; + constexpr std::ptrdiff_t m_Elements = 0x8; + constexpr std::ptrdiff_t m_bTopLevel = 0x20; +} + +namespace CModelConfigList { + constexpr std::ptrdiff_t m_bHideMaterialGroupInTools = 0x0; + constexpr std::ptrdiff_t m_bHideRenderColorInTools = 0x1; + constexpr std::ptrdiff_t m_Configs = 0x8; +} + +namespace CRenderBufferBinding { + constexpr std::ptrdiff_t m_hBuffer = 0x0; + constexpr std::ptrdiff_t m_nBindOffsetBytes = 0x10; +} + +namespace SkeletonBoneBounds_t { + constexpr std::ptrdiff_t m_vecCenter = 0x0; + constexpr std::ptrdiff_t m_vecSize = 0xc; +} + +namespace RenderSkeletonBone_t { + constexpr std::ptrdiff_t m_boneName = 0x0; + constexpr std::ptrdiff_t m_parentName = 0x8; + constexpr std::ptrdiff_t m_invBindPose = 0x10; + constexpr std::ptrdiff_t m_bbox = 0x40; + constexpr std::ptrdiff_t m_flSphereRadius = 0x58; +} + +namespace CRenderSkeleton { + constexpr std::ptrdiff_t m_bones = 0x0; + constexpr std::ptrdiff_t m_boneParents = 0x30; + constexpr std::ptrdiff_t m_nBoneWeightCount = 0x48; +} + +namespace CDrawCullingData { + constexpr std::ptrdiff_t m_vConeApex = 0x0; + constexpr std::ptrdiff_t m_ConeAxis = 0xc; + constexpr std::ptrdiff_t m_ConeCutoff = 0xf; +} + +namespace CMaterialDrawDescriptor { + constexpr std::ptrdiff_t m_nPrimitiveType = 0x0; + constexpr std::ptrdiff_t m_nBaseVertex = 0x4; + constexpr std::ptrdiff_t m_nVertexCount = 0x8; + constexpr std::ptrdiff_t m_nStartIndex = 0xc; + constexpr std::ptrdiff_t m_nIndexCount = 0x10; + constexpr std::ptrdiff_t m_flUvDensity = 0x14; + constexpr std::ptrdiff_t m_vTintColor = 0x18; + constexpr std::ptrdiff_t m_flAlpha = 0x24; + constexpr std::ptrdiff_t m_nFirstMeshlet = 0x2c; + constexpr std::ptrdiff_t m_nNumMeshlets = 0x30; + constexpr std::ptrdiff_t m_indexBuffer = 0xb8; + constexpr std::ptrdiff_t m_material = 0xe0; +} + +namespace CMeshletDescriptor { + constexpr std::ptrdiff_t m_PackedAABB = 0x0; + constexpr std::ptrdiff_t m_CullingData = 0x8; +} + +namespace CSceneObjectData { + constexpr std::ptrdiff_t m_vMinBounds = 0x0; + constexpr std::ptrdiff_t m_vMaxBounds = 0xc; + constexpr std::ptrdiff_t m_drawCalls = 0x18; + constexpr std::ptrdiff_t m_drawBounds = 0x30; + constexpr std::ptrdiff_t m_meshlets = 0x48; + constexpr std::ptrdiff_t m_vTintColor = 0x60; +} + +namespace CAttachment { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_influenceNames = 0x8; + constexpr std::ptrdiff_t m_vInfluenceRotations = 0x20; + constexpr std::ptrdiff_t m_vInfluenceOffsets = 0x50; + constexpr std::ptrdiff_t m_influenceWeights = 0x74; + constexpr std::ptrdiff_t m_bInfluenceRootTransform = 0x80; + constexpr std::ptrdiff_t m_nInfluences = 0x83; + constexpr std::ptrdiff_t m_bIgnoreRotation = 0x84; +} + +namespace CHitBox { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_sSurfaceProperty = 0x8; + constexpr std::ptrdiff_t m_sBoneName = 0x10; + constexpr std::ptrdiff_t m_vMinBounds = 0x18; + constexpr std::ptrdiff_t m_vMaxBounds = 0x24; + constexpr std::ptrdiff_t m_flShapeRadius = 0x30; + constexpr std::ptrdiff_t m_nBoneNameHash = 0x34; + constexpr std::ptrdiff_t m_nGroupId = 0x38; + constexpr std::ptrdiff_t m_nShapeType = 0x3c; + constexpr std::ptrdiff_t m_bTranslationOnly = 0x3d; + constexpr std::ptrdiff_t m_CRC = 0x40; + constexpr std::ptrdiff_t m_cRenderColor = 0x44; + constexpr std::ptrdiff_t m_nHitBoxIndex = 0x48; +} + +namespace CHitBoxSet { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nNameHash = 0x8; + constexpr std::ptrdiff_t m_HitBoxes = 0x10; + constexpr std::ptrdiff_t m_SourceFilename = 0x28; +} + +namespace CHitBoxSetList { + constexpr std::ptrdiff_t m_HitBoxSets = 0x0; +} + +namespace CRenderMesh { + constexpr std::ptrdiff_t m_sceneObjects = 0x10; + constexpr std::ptrdiff_t m_constraints = 0xa0; + constexpr std::ptrdiff_t m_skeleton = 0xb8; +} + +namespace CConstraintTarget { + constexpr std::ptrdiff_t m_qOffset = 0x20; + constexpr std::ptrdiff_t m_vOffset = 0x30; + constexpr std::ptrdiff_t m_nBoneHash = 0x3c; + constexpr std::ptrdiff_t m_sName = 0x40; + constexpr std::ptrdiff_t m_flWeight = 0x48; + constexpr std::ptrdiff_t m_bIsAttachment = 0x59; +} + +namespace CConstraintSlave { + constexpr std::ptrdiff_t m_qBaseOrientation = 0x0; + constexpr std::ptrdiff_t m_vBasePosition = 0x10; + constexpr std::ptrdiff_t m_nBoneHash = 0x1c; + constexpr std::ptrdiff_t m_flWeight = 0x20; + constexpr std::ptrdiff_t m_sName = 0x28; +} + +namespace CBoneConstraintBase { +} + +namespace CBaseConstraint { + constexpr std::ptrdiff_t m_name = 0x28; + constexpr std::ptrdiff_t m_vUpVector = 0x30; + constexpr std::ptrdiff_t m_slaves = 0x40; + constexpr std::ptrdiff_t m_targets = 0x58; +} + +namespace CPointConstraint { +} + +namespace COrientConstraint { +} + +namespace CAimConstraint { + constexpr std::ptrdiff_t m_qAimOffset = 0x70; + constexpr std::ptrdiff_t m_nUpType = 0x80; +} + +namespace CTwistConstraint { + constexpr std::ptrdiff_t m_bInverse = 0x70; + constexpr std::ptrdiff_t m_qParentBindRotation = 0x80; + constexpr std::ptrdiff_t m_qChildBindRotation = 0x90; +} + +namespace CTiltTwistConstraint { + constexpr std::ptrdiff_t m_nTargetAxis = 0x70; + constexpr std::ptrdiff_t m_nSlaveAxis = 0x74; +} + +namespace CMorphConstraint { + constexpr std::ptrdiff_t m_sTargetMorph = 0x70; + constexpr std::ptrdiff_t m_nSlaveChannel = 0x78; + constexpr std::ptrdiff_t m_flMin = 0x7c; + constexpr std::ptrdiff_t m_flMax = 0x80; +} + +namespace CParentConstraint { +} + +namespace CBoneConstraintPoseSpaceMorph::Input_t { + constexpr std::ptrdiff_t m_inputValue = 0x0; + constexpr std::ptrdiff_t m_outputWeightList = 0x10; +} + +namespace CBoneConstraintPoseSpaceBone { + constexpr std::ptrdiff_t m_inputList = 0x70; +} + +namespace CBoneConstraintPoseSpaceBone::Input_t { + constexpr std::ptrdiff_t m_inputValue = 0x0; + constexpr std::ptrdiff_t m_outputTransformList = 0x10; +} + +namespace CBoneConstraintDotToMorph { + constexpr std::ptrdiff_t m_sBoneName = 0x28; + constexpr std::ptrdiff_t m_sTargetBoneName = 0x30; + constexpr std::ptrdiff_t m_sMorphChannelName = 0x38; + constexpr std::ptrdiff_t m_flRemap = 0x40; +} + +namespace CFlexOp { + constexpr std::ptrdiff_t m_OpCode = 0x0; + constexpr std::ptrdiff_t m_Data = 0x4; +} + +namespace CFlexRule { + constexpr std::ptrdiff_t m_nFlex = 0x0; + constexpr std::ptrdiff_t m_FlexOps = 0x8; +} + +namespace CFlexDesc { + constexpr std::ptrdiff_t m_szFacs = 0x0; +} + +namespace CFlexController { + constexpr std::ptrdiff_t m_szName = 0x0; + constexpr std::ptrdiff_t m_szType = 0x8; + constexpr std::ptrdiff_t min = 0x10; + constexpr std::ptrdiff_t max = 0x14; +} + +namespace CMorphBundleData { + constexpr std::ptrdiff_t m_flULeftSrc = 0x0; + constexpr std::ptrdiff_t m_flVTopSrc = 0x4; + constexpr std::ptrdiff_t m_offsets = 0x8; + constexpr std::ptrdiff_t m_ranges = 0x20; +} + +namespace CMorphRectData { + constexpr std::ptrdiff_t m_nXLeftDst = 0x0; + constexpr std::ptrdiff_t m_nYTopDst = 0x2; + constexpr std::ptrdiff_t m_flUWidthSrc = 0x4; + constexpr std::ptrdiff_t m_flVHeightSrc = 0x8; + constexpr std::ptrdiff_t m_bundleDatas = 0x10; +} + +namespace CMorphData { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_morphRectDatas = 0x8; +} + +namespace CMorphSetData { + constexpr std::ptrdiff_t m_nWidth = 0x10; + constexpr std::ptrdiff_t m_nHeight = 0x14; + constexpr std::ptrdiff_t m_bundleTypes = 0x18; + constexpr std::ptrdiff_t m_morphDatas = 0x30; + constexpr std::ptrdiff_t m_pTextureAtlas = 0x48; + constexpr std::ptrdiff_t m_FlexDesc = 0x50; + constexpr std::ptrdiff_t m_FlexControllers = 0x68; + constexpr std::ptrdiff_t m_FlexRules = 0x80; +} + +namespace CAnimFoot { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_vBallOffset = 0x8; + constexpr std::ptrdiff_t m_vHeelOffset = 0x14; + constexpr std::ptrdiff_t m_ankleBoneIndex = 0x20; + constexpr std::ptrdiff_t m_toeBoneIndex = 0x24; +} + +namespace CAnimSkeleton { + constexpr std::ptrdiff_t m_localSpaceTransforms = 0x10; + constexpr std::ptrdiff_t m_modelSpaceTransforms = 0x28; + constexpr std::ptrdiff_t m_boneNames = 0x40; + constexpr std::ptrdiff_t m_children = 0x58; + constexpr std::ptrdiff_t m_parents = 0x70; + constexpr std::ptrdiff_t m_feet = 0x88; + constexpr std::ptrdiff_t m_morphNames = 0xa0; + constexpr std::ptrdiff_t m_lodBoneCounts = 0xb8; +} + +namespace CFootDefinition { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_ankleBoneName = 0x8; + constexpr std::ptrdiff_t m_toeBoneName = 0x10; + constexpr std::ptrdiff_t m_vBallOffset = 0x18; + constexpr std::ptrdiff_t m_vHeelOffset = 0x24; + constexpr std::ptrdiff_t m_flFootLength = 0x30; + constexpr std::ptrdiff_t m_flBindPoseDirectionMS = 0x34; + constexpr std::ptrdiff_t m_flTraceHeight = 0x38; + constexpr std::ptrdiff_t m_flTraceRadius = 0x3c; +} + +namespace CCycleBase { + constexpr std::ptrdiff_t m_flCycle = 0x0; +} + +namespace CAnimCycle { +} + +namespace CFootCycle { +} + +namespace CFootCycleDefinition { + constexpr std::ptrdiff_t m_vStancePositionMS = 0x0; + constexpr std::ptrdiff_t m_vMidpointPositionMS = 0xc; + constexpr std::ptrdiff_t m_flStanceDirectionMS = 0x18; + constexpr std::ptrdiff_t m_vToStrideStartPos = 0x1c; + constexpr std::ptrdiff_t m_stanceCycle = 0x28; + constexpr std::ptrdiff_t m_footLiftCycle = 0x2c; + constexpr std::ptrdiff_t m_footOffCycle = 0x30; + constexpr std::ptrdiff_t m_footStrikeCycle = 0x34; + constexpr std::ptrdiff_t m_footLandCycle = 0x38; +} + +namespace CFootTrajectory { + constexpr std::ptrdiff_t m_vOffset = 0x0; + constexpr std::ptrdiff_t m_flRotationOffset = 0xc; + constexpr std::ptrdiff_t m_flProgression = 0x10; +} + +namespace CFootTrajectories { + constexpr std::ptrdiff_t m_trajectories = 0x0; +} + +namespace CFootStride { + constexpr std::ptrdiff_t m_definition = 0x0; + constexpr std::ptrdiff_t m_trajectories = 0x40; +} + +namespace CFootMotion { + constexpr std::ptrdiff_t m_strides = 0x0; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_bAdditive = 0x20; +} + +namespace CFingerSource { + constexpr std::ptrdiff_t m_nFingerIndex = 0x0; + constexpr std::ptrdiff_t m_flFingerWeight = 0x4; +} + +namespace CFingerBone { + constexpr std::ptrdiff_t m_boneName = 0x0; + constexpr std::ptrdiff_t m_hingeAxis = 0x8; + constexpr std::ptrdiff_t m_vCapsulePos1 = 0x14; + constexpr std::ptrdiff_t m_vCapsulePos2 = 0x20; + constexpr std::ptrdiff_t m_flMinAngle = 0x2c; + constexpr std::ptrdiff_t m_flMaxAngle = 0x30; + constexpr std::ptrdiff_t m_flRadius = 0x34; +} + +namespace CFingerChain { + constexpr std::ptrdiff_t m_targets = 0x0; + constexpr std::ptrdiff_t m_bones = 0x18; + constexpr std::ptrdiff_t m_name = 0x30; + constexpr std::ptrdiff_t m_tipParentBoneName = 0x38; + constexpr std::ptrdiff_t m_vTipOffset = 0x40; + constexpr std::ptrdiff_t m_metacarpalBoneName = 0x50; + constexpr std::ptrdiff_t m_vSplayHingeAxis = 0x58; + constexpr std::ptrdiff_t m_flSplayMinAngle = 0x64; + constexpr std::ptrdiff_t m_flSplayMaxAngle = 0x68; + constexpr std::ptrdiff_t m_flFingerScaleRatio = 0x6c; +} + +namespace CWristBone { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_vForwardLS = 0x8; + constexpr std::ptrdiff_t m_vUpLS = 0x14; + constexpr std::ptrdiff_t m_vOffset = 0x20; +} + +namespace CVrSkeletalInputSettings { + constexpr std::ptrdiff_t m_wristBones = 0x0; + constexpr std::ptrdiff_t m_fingers = 0x18; + constexpr std::ptrdiff_t m_name = 0x30; + constexpr std::ptrdiff_t m_outerKnuckle1 = 0x38; + constexpr std::ptrdiff_t m_outerKnuckle2 = 0x40; + constexpr std::ptrdiff_t m_eHand = 0x48; +} + +namespace BoneDemoCaptureSettings_t { + constexpr std::ptrdiff_t m_boneName = 0x0; +} + +namespace IKDemoCaptureSettings_t { + constexpr std::ptrdiff_t m_parentBoneName = 0x0; + constexpr std::ptrdiff_t m_eMode = 0x8; + constexpr std::ptrdiff_t m_ikChainName = 0x10; + constexpr std::ptrdiff_t m_oneBoneStart = 0x18; + constexpr std::ptrdiff_t m_oneBoneEnd = 0x20; +} + +namespace CAnimDemoCaptureSettings { + constexpr std::ptrdiff_t m_flMaxSplineErrorRotation = 0x0; + constexpr std::ptrdiff_t m_flMaxSplineErrorTranslation = 0x4; + constexpr std::ptrdiff_t m_flMaxSplineErrorScale = 0x8; + constexpr std::ptrdiff_t m_flIkRotation_MaxSplineError = 0xc; + constexpr std::ptrdiff_t m_flIkTranslation_MaxSplineError = 0x10; + constexpr std::ptrdiff_t m_flMaxQuantizationErrorRotation = 0x14; + constexpr std::ptrdiff_t m_flMaxQuantizationErrorTranslation = 0x18; + constexpr std::ptrdiff_t m_flMaxQuantizationErrorScale = 0x1c; + constexpr std::ptrdiff_t m_flIkRotation_MaxQuantizationError = 0x20; + constexpr std::ptrdiff_t m_flIkTranslation_MaxQuantizationError = 0x24; + constexpr std::ptrdiff_t m_baseSequence = 0x28; + constexpr std::ptrdiff_t m_nBaseSequenceFrame = 0x30; + constexpr std::ptrdiff_t m_boneSelectionMode = 0x34; + constexpr std::ptrdiff_t m_bones = 0x38; + constexpr std::ptrdiff_t m_ikChains = 0x50; +} + +namespace CAnimReplayFrame { + constexpr std::ptrdiff_t m_inputDataBlocks = 0x10; + constexpr std::ptrdiff_t m_instanceData = 0x28; + constexpr std::ptrdiff_t m_startingLocalToWorldTransform = 0x40; + constexpr std::ptrdiff_t m_localToWorldTransform = 0x60; + constexpr std::ptrdiff_t m_timeStamp = 0x80; +} + +namespace CAnimGraphDebugReplay { + constexpr std::ptrdiff_t m_animGraphFileName = 0x40; + constexpr std::ptrdiff_t m_frameList = 0x48; + constexpr std::ptrdiff_t m_startIndex = 0x60; + constexpr std::ptrdiff_t m_writeIndex = 0x64; + constexpr std::ptrdiff_t m_frameCount = 0x68; +} + +namespace CAnimGraphModelBinding { + constexpr std::ptrdiff_t m_modelName = 0x8; + constexpr std::ptrdiff_t m_pSharedData = 0x10; +} + +namespace CAnimInputDamping { + constexpr std::ptrdiff_t m_speedFunction = 0x8; + constexpr std::ptrdiff_t m_fSpeedScale = 0xc; +} + +namespace CAnimParamHandle { + constexpr std::ptrdiff_t m_type = 0x0; + constexpr std::ptrdiff_t m_index = 0x1; +} + +namespace CAnimParamHandleMap { + constexpr std::ptrdiff_t m_list = 0x0; +} + +namespace CAnimParameterManagerUpdater { + constexpr std::ptrdiff_t m_parameters = 0x18; + constexpr std::ptrdiff_t m_idToIndexMap = 0x30; + constexpr std::ptrdiff_t m_nameToIndexMap = 0x50; + constexpr std::ptrdiff_t m_indexToHandle = 0x70; + constexpr std::ptrdiff_t m_autoResetParams = 0x88; + constexpr std::ptrdiff_t m_autoResetMap = 0xa0; +} + +namespace CAnimUpdateSharedData { + constexpr std::ptrdiff_t m_nodes = 0x10; + constexpr std::ptrdiff_t m_nodeIndexMap = 0x28; + constexpr std::ptrdiff_t m_components = 0x48; + constexpr std::ptrdiff_t m_pParamListUpdater = 0x60; + constexpr std::ptrdiff_t m_pTagManagerUpdater = 0x68; + constexpr std::ptrdiff_t m_scriptManager = 0x70; + constexpr std::ptrdiff_t m_settings = 0x78; + constexpr std::ptrdiff_t m_pStaticPoseCache = 0xa8; + constexpr std::ptrdiff_t m_pSkeleton = 0xb0; + constexpr std::ptrdiff_t m_rootNodePath = 0xb8; +} + +namespace CBlendCurve { + constexpr std::ptrdiff_t m_flControlPoint1 = 0x0; + constexpr std::ptrdiff_t m_flControlPoint2 = 0x4; +} + +namespace ParamSpanSample_t { + constexpr std::ptrdiff_t m_value = 0x0; + constexpr std::ptrdiff_t m_flCycle = 0x14; +} + +namespace ParamSpan_t { + constexpr std::ptrdiff_t m_samples = 0x0; + constexpr std::ptrdiff_t m_hParam = 0x18; + constexpr std::ptrdiff_t m_eParamType = 0x1a; + constexpr std::ptrdiff_t m_flStartCycle = 0x1c; + constexpr std::ptrdiff_t m_flEndCycle = 0x20; +} + +namespace CParamSpanUpdater { + constexpr std::ptrdiff_t m_spans = 0x0; +} + +namespace CAnimGraphSettingsGroup { +} + +namespace CAnimGraphSettingsManager { + constexpr std::ptrdiff_t m_settingsGroups = 0x18; +} + +namespace CCachedPose { + constexpr std::ptrdiff_t m_transforms = 0x8; + constexpr std::ptrdiff_t m_morphWeights = 0x20; + constexpr std::ptrdiff_t m_hSequence = 0x38; + constexpr std::ptrdiff_t m_flCycle = 0x3c; +} + +namespace CStaticPoseCache { + constexpr std::ptrdiff_t m_poses = 0x10; + constexpr std::ptrdiff_t m_nBoneCount = 0x28; + constexpr std::ptrdiff_t m_nMorphCount = 0x2c; +} + +namespace CStaticPoseCacheBuilder { +} + +namespace CAnimActionUpdater { +} + +namespace CEmitTagActionUpdater { + constexpr std::ptrdiff_t m_nTagIndex = 0x18; + constexpr std::ptrdiff_t m_bIsZeroDuration = 0x1c; +} + +namespace CSetParameterActionUpdater { + constexpr std::ptrdiff_t m_hParam = 0x18; + constexpr std::ptrdiff_t m_value = 0x1a; +} + +namespace CToggleComponentActionUpdater { + constexpr std::ptrdiff_t m_componentID = 0x18; + constexpr std::ptrdiff_t m_bSetEnabled = 0x1c; +} + +namespace CExpressionActionUpdater { + constexpr std::ptrdiff_t m_hParam = 0x18; + constexpr std::ptrdiff_t m_eParamType = 0x1a; + constexpr std::ptrdiff_t m_hScript = 0x1c; +} + +namespace CAnimTagBase { + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_group = 0x20; + constexpr std::ptrdiff_t m_tagID = 0x28; + constexpr std::ptrdiff_t m_bIsReferenced = 0x2c; +} + +namespace CAnimTagManagerUpdater { + constexpr std::ptrdiff_t m_tags = 0x18; +} + +namespace CAudioAnimTag { + constexpr std::ptrdiff_t m_clipName = 0x38; + constexpr std::ptrdiff_t m_attachmentName = 0x40; + constexpr std::ptrdiff_t m_flVolume = 0x48; + constexpr std::ptrdiff_t m_bStopWhenTagEnds = 0x4c; + constexpr std::ptrdiff_t m_bStopWhenGraphEnds = 0x4d; + constexpr std::ptrdiff_t m_bPlayOnServer = 0x4e; + constexpr std::ptrdiff_t m_bPlayOnClient = 0x4f; +} + +namespace CBodyGroupSetting { + constexpr std::ptrdiff_t m_BodyGroupName = 0x0; + constexpr std::ptrdiff_t m_nBodyGroupOption = 0x8; +} + +namespace CBodyGroupAnimTag { + constexpr std::ptrdiff_t m_nPriority = 0x38; + constexpr std::ptrdiff_t m_bodyGroupSettings = 0x40; +} + +namespace CClothSettingsAnimTag { + constexpr std::ptrdiff_t m_flStiffness = 0x38; + constexpr std::ptrdiff_t m_flEaseIn = 0x3c; + constexpr std::ptrdiff_t m_flEaseOut = 0x40; + constexpr std::ptrdiff_t m_nVertexSet = 0x48; +} + +namespace CFootFallAnimTag { + constexpr std::ptrdiff_t m_foot = 0x38; +} + +namespace CFootstepLandedAnimTag { + constexpr std::ptrdiff_t m_FootstepType = 0x38; + constexpr std::ptrdiff_t m_OverrideSoundName = 0x40; + constexpr std::ptrdiff_t m_DebugAnimSourceString = 0x48; + constexpr std::ptrdiff_t m_BoneName = 0x50; +} + +namespace CMaterialAttributeAnimTag { + constexpr std::ptrdiff_t m_AttributeName = 0x38; + constexpr std::ptrdiff_t m_AttributeType = 0x40; + constexpr std::ptrdiff_t m_flValue = 0x44; + constexpr std::ptrdiff_t m_Color = 0x48; +} + +namespace CParticleAnimTag { + constexpr std::ptrdiff_t m_hParticleSystem = 0x38; + constexpr std::ptrdiff_t m_particleSystemName = 0x40; + constexpr std::ptrdiff_t m_configName = 0x48; + constexpr std::ptrdiff_t m_bDetachFromOwner = 0x50; + constexpr std::ptrdiff_t m_bStopWhenTagEnds = 0x51; + constexpr std::ptrdiff_t m_bTagEndStopIsInstant = 0x52; + constexpr std::ptrdiff_t m_attachmentName = 0x58; + constexpr std::ptrdiff_t m_attachmentType = 0x60; + constexpr std::ptrdiff_t m_attachmentCP1Name = 0x68; + constexpr std::ptrdiff_t m_attachmentCP1Type = 0x70; +} + +namespace CRagdollAnimTag { + constexpr std::ptrdiff_t m_nPoseControl = 0x38; + constexpr std::ptrdiff_t m_flFrequency = 0x3c; + constexpr std::ptrdiff_t m_flDampingRatio = 0x40; + constexpr std::ptrdiff_t m_flDecayDuration = 0x44; + constexpr std::ptrdiff_t m_flDecayBias = 0x48; + constexpr std::ptrdiff_t m_bDestroy = 0x4c; +} + +namespace CSequenceFinishedAnimTag { + constexpr std::ptrdiff_t m_sequenceName = 0x38; +} + +namespace CStringAnimTag { +} + +namespace CTaskStatusAnimTag { +} + +namespace CAnimComponentUpdater { + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_id = 0x20; + constexpr std::ptrdiff_t m_networkMode = 0x24; + constexpr std::ptrdiff_t m_bStartEnabled = 0x28; +} + +namespace CAnimScriptComponentUpdater { + constexpr std::ptrdiff_t m_hScript = 0x30; +} + +namespace CCPPScriptComponentUpdater { + constexpr std::ptrdiff_t m_scriptsToRun = 0x30; +} + +namespace CDampedValueUpdateItem { + constexpr std::ptrdiff_t m_damping = 0x0; + constexpr std::ptrdiff_t m_hParamIn = 0x18; + constexpr std::ptrdiff_t m_hParamOut = 0x1a; +} + +namespace CDampedValueComponentUpdater { + constexpr std::ptrdiff_t m_items = 0x30; +} + +namespace CDemoSettingsComponentUpdater { + constexpr std::ptrdiff_t m_settings = 0x30; +} + +namespace CLODComponentUpdater { + constexpr std::ptrdiff_t m_nServerLOD = 0x30; +} + +namespace CLookComponentUpdater { + constexpr std::ptrdiff_t m_hLookHeading = 0x34; + constexpr std::ptrdiff_t m_hLookHeadingVelocity = 0x36; + constexpr std::ptrdiff_t m_hLookPitch = 0x38; + constexpr std::ptrdiff_t m_hLookDistance = 0x3a; + constexpr std::ptrdiff_t m_hLookDirection = 0x3c; + constexpr std::ptrdiff_t m_hLookTarget = 0x3e; + constexpr std::ptrdiff_t m_hLookTargetWorldSpace = 0x40; + constexpr std::ptrdiff_t m_bNetworkLookTarget = 0x42; +} + +namespace CMovementMode { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_flSpeed = 0x8; +} + +namespace CMovementComponentUpdater { + constexpr std::ptrdiff_t m_movementModes = 0x30; + constexpr std::ptrdiff_t m_motors = 0x48; + constexpr std::ptrdiff_t m_facingDamping = 0x60; + constexpr std::ptrdiff_t m_eDefaultFacingMode = 0x70; + constexpr std::ptrdiff_t m_nDefaultMotorIndex = 0x7c; + constexpr std::ptrdiff_t m_bMoveVarsDisabled = 0x80; + constexpr std::ptrdiff_t m_bNetworkPath = 0x81; + constexpr std::ptrdiff_t m_bNetworkFacing = 0x82; + constexpr std::ptrdiff_t m_paramHandles = 0x83; +} + +namespace WeightList { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_weights = 0x8; +} + +namespace CRagdollComponentUpdater { + constexpr std::ptrdiff_t m_ragdollNodePaths = 0x30; + constexpr std::ptrdiff_t m_boneIndices = 0x48; + constexpr std::ptrdiff_t m_boneNames = 0x60; + constexpr std::ptrdiff_t m_weightLists = 0x78; + constexpr std::ptrdiff_t m_flSpringFrequencyMin = 0x90; + constexpr std::ptrdiff_t m_flSpringFrequencyMax = 0x94; + constexpr std::ptrdiff_t m_flMaxStretch = 0x98; +} + +namespace CSlopeComponentUpdater { + constexpr std::ptrdiff_t m_flTraceDistance = 0x34; + constexpr std::ptrdiff_t m_hSlopeAngle = 0x38; + constexpr std::ptrdiff_t m_hSlopeAngleFront = 0x3a; + constexpr std::ptrdiff_t m_hSlopeAngleSide = 0x3c; + constexpr std::ptrdiff_t m_hSlopeHeading = 0x3e; + constexpr std::ptrdiff_t m_hSlopeNormal = 0x40; + constexpr std::ptrdiff_t m_hSlopeNormal_WorldSpace = 0x42; +} + +namespace CVRInputComponentUpdater { + constexpr std::ptrdiff_t m_FingerCurl_Thumb = 0x34; + constexpr std::ptrdiff_t m_FingerCurl_Index = 0x36; + constexpr std::ptrdiff_t m_FingerCurl_Middle = 0x38; + constexpr std::ptrdiff_t m_FingerCurl_Ring = 0x3a; + constexpr std::ptrdiff_t m_FingerCurl_Pinky = 0x3c; + constexpr std::ptrdiff_t m_FingerSplay_Thumb_Index = 0x3e; + constexpr std::ptrdiff_t m_FingerSplay_Index_Middle = 0x40; + constexpr std::ptrdiff_t m_FingerSplay_Middle_Ring = 0x42; + constexpr std::ptrdiff_t m_FingerSplay_Ring_Pinky = 0x44; +} + +namespace CStateMachineComponentUpdater { + constexpr std::ptrdiff_t m_stateMachine = 0x30; +} + +namespace CMotionDataSet { + constexpr std::ptrdiff_t m_groups = 0x0; + constexpr std::ptrdiff_t m_nDimensionCount = 0x18; +} + +namespace CMotionGraphGroup { + constexpr std::ptrdiff_t m_searchDB = 0x0; + constexpr std::ptrdiff_t m_motionGraphs = 0xb8; + constexpr std::ptrdiff_t m_motionGraphConfigs = 0xd0; + constexpr std::ptrdiff_t m_sampleToConfig = 0xe8; + constexpr std::ptrdiff_t m_hIsActiveScript = 0x100; +} + +namespace SampleCode { + constexpr std::ptrdiff_t m_subCode = 0x0; +} + +namespace MotionDBIndex { + constexpr std::ptrdiff_t m_nIndex = 0x0; +} + +namespace CVectorQuantizer { + constexpr std::ptrdiff_t m_centroidVectors = 0x0; + constexpr std::ptrdiff_t m_nCentroids = 0x18; + constexpr std::ptrdiff_t m_nDimensions = 0x1c; +} + +namespace CProductQuantizer { + constexpr std::ptrdiff_t m_subQuantizers = 0x0; + constexpr std::ptrdiff_t m_nDimensions = 0x18; +} + +namespace CMotionSearchNode { + constexpr std::ptrdiff_t m_children = 0x0; + constexpr std::ptrdiff_t m_quantizer = 0x18; + constexpr std::ptrdiff_t m_sampleCodes = 0x38; + constexpr std::ptrdiff_t m_sampleIndices = 0x50; + constexpr std::ptrdiff_t m_selectableSamples = 0x68; +} + +namespace CMotionSearchDB { + constexpr std::ptrdiff_t m_rootNode = 0x0; + constexpr std::ptrdiff_t m_residualQuantizer = 0x80; + constexpr std::ptrdiff_t m_codeIndices = 0xa0; +} + +namespace CMotionGraph { + constexpr std::ptrdiff_t m_paramSpans = 0x10; + constexpr std::ptrdiff_t m_tags = 0x28; + constexpr std::ptrdiff_t m_pRootNode = 0x40; + constexpr std::ptrdiff_t m_nParameterCount = 0x48; + constexpr std::ptrdiff_t m_nConfigStartIndex = 0x4c; + constexpr std::ptrdiff_t m_nConfigCount = 0x50; + constexpr std::ptrdiff_t m_bLoop = 0x54; +} + +namespace CEditableMotionGraph { +} + +namespace CMotionNode { + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_id = 0x20; +} + +namespace CMotionNodeSequence { + constexpr std::ptrdiff_t m_tags = 0x28; + constexpr std::ptrdiff_t m_hSequence = 0x40; + constexpr std::ptrdiff_t m_flPlaybackSpeed = 0x44; +} + +namespace MotionBlendItem { + constexpr std::ptrdiff_t m_pChild = 0x0; + constexpr std::ptrdiff_t m_flKeyValue = 0x8; +} + +namespace CMotionNodeBlend1D { + constexpr std::ptrdiff_t m_blendItems = 0x28; + constexpr std::ptrdiff_t m_nParamIndex = 0x40; +} + +namespace CMotionMetricEvaluator { + constexpr std::ptrdiff_t m_means = 0x18; + constexpr std::ptrdiff_t m_standardDeviations = 0x30; + constexpr std::ptrdiff_t m_flWeight = 0x48; + constexpr std::ptrdiff_t m_nDimensionStartIndex = 0x4c; +} + +namespace CBlockSelectionMetricEvaluator { +} + +namespace CBonePositionMetricEvaluator { + constexpr std::ptrdiff_t m_nBoneIndex = 0x50; +} + +namespace CBoneVelocityMetricEvaluator { + constexpr std::ptrdiff_t m_nBoneIndex = 0x50; +} + +namespace CCurrentRotationVelocityMetricEvaluator { +} + +namespace CCurrentVelocityMetricEvaluator { +} + +namespace CDistanceRemainingMetricEvaluator { + constexpr std::ptrdiff_t m_flMaxDistance = 0x50; + constexpr std::ptrdiff_t m_flMinDistance = 0x54; + constexpr std::ptrdiff_t m_flStartGoalFilterDistance = 0x58; + constexpr std::ptrdiff_t m_flMaxGoalOvershootScale = 0x5c; + constexpr std::ptrdiff_t m_bFilterFixedMinDistance = 0x60; + constexpr std::ptrdiff_t m_bFilterGoalDistance = 0x61; + constexpr std::ptrdiff_t m_bFilterGoalOvershoot = 0x62; +} + +namespace CFootCycleMetricEvaluator { + constexpr std::ptrdiff_t m_footIndices = 0x50; +} + +namespace CFootPositionMetricEvaluator { + constexpr std::ptrdiff_t m_footIndices = 0x50; + constexpr std::ptrdiff_t m_bIgnoreSlope = 0x68; +} + +namespace CFutureFacingMetricEvaluator { + constexpr std::ptrdiff_t m_flDistance = 0x50; + constexpr std::ptrdiff_t m_flTime = 0x54; +} + +namespace CFutureVelocityMetricEvaluator { + constexpr std::ptrdiff_t m_flDistance = 0x50; + constexpr std::ptrdiff_t m_flStoppingDistance = 0x54; + constexpr std::ptrdiff_t m_flTargetSpeed = 0x58; + constexpr std::ptrdiff_t m_eMode = 0x5c; +} + +namespace CPathMetricEvaluator { + constexpr std::ptrdiff_t m_pathTimeSamples = 0x50; + constexpr std::ptrdiff_t m_flDistance = 0x68; + constexpr std::ptrdiff_t m_bExtrapolateMovement = 0x6c; + constexpr std::ptrdiff_t m_flMinExtrapolationSpeed = 0x70; +} + +namespace CStepsRemainingMetricEvaluator { + constexpr std::ptrdiff_t m_footIndices = 0x50; + constexpr std::ptrdiff_t m_flMinStepsRemaining = 0x68; +} + +namespace CTimeRemainingMetricEvaluator { + constexpr std::ptrdiff_t m_bMatchByTimeRemaining = 0x50; + constexpr std::ptrdiff_t m_flMaxTimeRemaining = 0x54; + constexpr std::ptrdiff_t m_bFilterByTimeRemaining = 0x58; + constexpr std::ptrdiff_t m_flMinTimeRemaining = 0x5c; +} + +namespace CAnimMotorUpdaterBase { + constexpr std::ptrdiff_t m_name = 0x10; + constexpr std::ptrdiff_t m_bDefault = 0x18; +} + +namespace CPathAnimMotorUpdaterBase { + constexpr std::ptrdiff_t m_bLockToPath = 0x20; +} + +namespace CDampedPathAnimMotorUpdater { + constexpr std::ptrdiff_t m_flAnticipationTime = 0x2c; + constexpr std::ptrdiff_t m_flMinSpeedScale = 0x30; + constexpr std::ptrdiff_t m_hAnticipationPosParam = 0x34; + constexpr std::ptrdiff_t m_hAnticipationHeadingParam = 0x36; + constexpr std::ptrdiff_t m_flSpringConstant = 0x38; + constexpr std::ptrdiff_t m_flMinSpringTension = 0x3c; + constexpr std::ptrdiff_t m_flMaxSpringTension = 0x40; +} + +namespace CPathAnimMotorUpdater { +} + +namespace CPlayerInputAnimMotorUpdater { + constexpr std::ptrdiff_t m_sampleTimes = 0x20; + constexpr std::ptrdiff_t m_flSpringConstant = 0x3c; + constexpr std::ptrdiff_t m_flAnticipationDistance = 0x40; + constexpr std::ptrdiff_t m_hAnticipationPosParam = 0x44; + constexpr std::ptrdiff_t m_hAnticipationHeadingParam = 0x46; + constexpr std::ptrdiff_t m_bUseAcceleration = 0x48; +} + +namespace AimMatrixOpFixedSettings_t { + constexpr std::ptrdiff_t m_attachment = 0x0; + constexpr std::ptrdiff_t m_damping = 0x80; + constexpr std::ptrdiff_t m_poseCacheHandles = 0x90; + constexpr std::ptrdiff_t m_eBlendMode = 0xb8; + constexpr std::ptrdiff_t m_fAngleIncrement = 0xbc; + constexpr std::ptrdiff_t m_nSequenceMaxFrame = 0xc0; + constexpr std::ptrdiff_t m_nBoneMaskIndex = 0xc4; + constexpr std::ptrdiff_t m_bTargetIsPosition = 0xc8; +} + +namespace FollowAttachmentSettings_t { + constexpr std::ptrdiff_t m_attachment = 0x0; + constexpr std::ptrdiff_t m_boneIndex = 0x80; + constexpr std::ptrdiff_t m_bMatchTranslation = 0x84; + constexpr std::ptrdiff_t m_bMatchRotation = 0x85; +} + +namespace FootLockPoseOpFixedSettings { + constexpr std::ptrdiff_t m_footInfo = 0x0; + constexpr std::ptrdiff_t m_hipDampingSettings = 0x18; + constexpr std::ptrdiff_t m_nHipBoneIndex = 0x28; + constexpr std::ptrdiff_t m_ikSolverType = 0x2c; + constexpr std::ptrdiff_t m_bApplyTilt = 0x30; + constexpr std::ptrdiff_t m_bApplyHipDrop = 0x31; + constexpr std::ptrdiff_t m_bAlwaysUseFallbackHinge = 0x32; + constexpr std::ptrdiff_t m_bApplyFootRotationLimits = 0x33; + constexpr std::ptrdiff_t m_bApplyLegTwistLimits = 0x34; + constexpr std::ptrdiff_t m_flMaxFootHeight = 0x38; + constexpr std::ptrdiff_t m_flExtensionScale = 0x3c; + constexpr std::ptrdiff_t m_flMaxLegTwist = 0x40; + constexpr std::ptrdiff_t m_bEnableLockBreaking = 0x44; + constexpr std::ptrdiff_t m_flLockBreakTolerance = 0x48; + constexpr std::ptrdiff_t m_flLockBlendTime = 0x4c; + constexpr std::ptrdiff_t m_bEnableStretching = 0x50; + constexpr std::ptrdiff_t m_flMaxStretchAmount = 0x54; + constexpr std::ptrdiff_t m_flStretchExtensionScale = 0x58; +} + +namespace FootPinningPoseOpFixedData_t { + constexpr std::ptrdiff_t m_footInfo = 0x0; + constexpr std::ptrdiff_t m_flBlendTime = 0x18; + constexpr std::ptrdiff_t m_flLockBreakDistance = 0x1c; + constexpr std::ptrdiff_t m_flMaxLegTwist = 0x20; + constexpr std::ptrdiff_t m_nHipBoneIndex = 0x24; + constexpr std::ptrdiff_t m_bApplyLegTwistLimits = 0x28; + constexpr std::ptrdiff_t m_bApplyFootRotationLimits = 0x29; +} + +namespace HitReactFixedSettings_t { + constexpr std::ptrdiff_t m_nWeightListIndex = 0x0; + constexpr std::ptrdiff_t m_nEffectedBoneCount = 0x4; + constexpr std::ptrdiff_t m_flMaxImpactForce = 0x8; + constexpr std::ptrdiff_t m_flMinImpactForce = 0xc; + constexpr std::ptrdiff_t m_flWhipImpactScale = 0x10; + constexpr std::ptrdiff_t m_flCounterRotationScale = 0x14; + constexpr std::ptrdiff_t m_flDistanceFadeScale = 0x18; + constexpr std::ptrdiff_t m_flPropagationScale = 0x1c; + constexpr std::ptrdiff_t m_flWhipDelay = 0x20; + constexpr std::ptrdiff_t m_flSpringStrength = 0x24; + constexpr std::ptrdiff_t m_flWhipSpringStrength = 0x28; + constexpr std::ptrdiff_t m_flMaxAngleRadians = 0x2c; + constexpr std::ptrdiff_t m_nHipBoneIndex = 0x30; + constexpr std::ptrdiff_t m_flHipBoneTranslationScale = 0x34; + constexpr std::ptrdiff_t m_flHipDipSpringStrength = 0x38; + constexpr std::ptrdiff_t m_flHipDipImpactScale = 0x3c; + constexpr std::ptrdiff_t m_flHipDipDelay = 0x40; +} + +namespace JiggleBoneSettings_t { + constexpr std::ptrdiff_t m_nBoneIndex = 0x0; + constexpr std::ptrdiff_t m_flSpringStrength = 0x4; + constexpr std::ptrdiff_t m_flMaxTimeStep = 0x8; + constexpr std::ptrdiff_t m_flDamping = 0xc; + constexpr std::ptrdiff_t m_vBoundsMaxLS = 0x10; + constexpr std::ptrdiff_t m_vBoundsMinLS = 0x1c; + constexpr std::ptrdiff_t m_eSimSpace = 0x28; +} + +namespace JiggleBoneSettingsList_t { + constexpr std::ptrdiff_t m_boneSettings = 0x0; +} + +namespace LookAtBone_t { + constexpr std::ptrdiff_t m_index = 0x0; + constexpr std::ptrdiff_t m_weight = 0x4; +} + +namespace LookAtOpFixedSettings_t { + constexpr std::ptrdiff_t m_attachment = 0x0; + constexpr std::ptrdiff_t m_damping = 0x80; + constexpr std::ptrdiff_t m_bones = 0x90; + constexpr std::ptrdiff_t m_flYawLimit = 0xa8; + constexpr std::ptrdiff_t m_flPitchLimit = 0xac; + constexpr std::ptrdiff_t m_flHysteresisInnerAngle = 0xb0; + constexpr std::ptrdiff_t m_flHysteresisOuterAngle = 0xb4; + constexpr std::ptrdiff_t m_bRotateYawForward = 0xb8; + constexpr std::ptrdiff_t m_bMaintainUpDirection = 0xb9; + constexpr std::ptrdiff_t m_bTargetIsPosition = 0xba; + constexpr std::ptrdiff_t m_bUseHysteresis = 0xbb; +} + +namespace FingerSource_t { + constexpr std::ptrdiff_t m_nFingerIndex = 0x0; + constexpr std::ptrdiff_t m_flFingerWeight = 0x4; +} + +namespace FingerBone_t { + constexpr std::ptrdiff_t m_boneIndex = 0x0; + constexpr std::ptrdiff_t m_hingeAxis = 0x4; + constexpr std::ptrdiff_t m_vCapsulePos1 = 0x10; + constexpr std::ptrdiff_t m_vCapsulePos2 = 0x1c; + constexpr std::ptrdiff_t m_flMinAngle = 0x28; + constexpr std::ptrdiff_t m_flMaxAngle = 0x2c; + constexpr std::ptrdiff_t m_flRadius = 0x30; +} + +namespace FingerChain_t { + constexpr std::ptrdiff_t m_targets = 0x0; + constexpr std::ptrdiff_t m_bones = 0x18; + constexpr std::ptrdiff_t m_vTipOffset = 0x30; + constexpr std::ptrdiff_t m_vSplayHingeAxis = 0x3c; + constexpr std::ptrdiff_t m_tipParentBoneIndex = 0x48; + constexpr std::ptrdiff_t m_metacarpalBoneIndex = 0x4c; + constexpr std::ptrdiff_t m_flSplayMinAngle = 0x50; + constexpr std::ptrdiff_t m_flSplayMaxAngle = 0x54; + constexpr std::ptrdiff_t m_flFingerScaleRatio = 0x58; +} + +namespace WristBone_t { + constexpr std::ptrdiff_t m_xOffsetTransformMS = 0x0; + constexpr std::ptrdiff_t m_boneIndex = 0x20; +} + +namespace SkeletalInputOpFixedSettings_t { + constexpr std::ptrdiff_t m_wristBones = 0x0; + constexpr std::ptrdiff_t m_fingers = 0x18; + constexpr std::ptrdiff_t m_outerKnuckle1 = 0x30; + constexpr std::ptrdiff_t m_outerKnuckle2 = 0x34; + constexpr std::ptrdiff_t m_eHand = 0x38; + constexpr std::ptrdiff_t m_eMotionRange = 0x3c; + constexpr std::ptrdiff_t m_eTransformSource = 0x40; + constexpr std::ptrdiff_t m_bEnableIK = 0x44; + constexpr std::ptrdiff_t m_bEnableCollision = 0x45; +} + +namespace ChainToSolveData_t { + constexpr std::ptrdiff_t m_nChainIndex = 0x0; + constexpr std::ptrdiff_t m_SolverSettings = 0x4; + constexpr std::ptrdiff_t m_TargetSettings = 0x10; + constexpr std::ptrdiff_t m_DebugSetting = 0x38; + constexpr std::ptrdiff_t m_flDebugNormalizedValue = 0x3c; + constexpr std::ptrdiff_t m_vDebugOffset = 0x40; +} + +namespace SolveIKChainPoseOpFixedSettings_t { + constexpr std::ptrdiff_t m_ChainsToSolveData = 0x0; + constexpr std::ptrdiff_t m_bMatchTargetOrientation = 0x18; +} + +namespace CAnimParameterBase { + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_group = 0x20; + constexpr std::ptrdiff_t m_id = 0x28; + constexpr std::ptrdiff_t m_componentName = 0x40; + constexpr std::ptrdiff_t m_bNetworkingRequested = 0x4c; + constexpr std::ptrdiff_t m_bIsReferenced = 0x4d; +} + +namespace CConcreteAnimParameter { + constexpr std::ptrdiff_t m_previewButton = 0x50; + constexpr std::ptrdiff_t m_eNetworkSetting = 0x54; + constexpr std::ptrdiff_t m_bUseMostRecentValue = 0x58; + constexpr std::ptrdiff_t m_bAutoReset = 0x59; + constexpr std::ptrdiff_t m_bGameWritable = 0x5a; + constexpr std::ptrdiff_t m_bGraphWritable = 0x5b; +} + +namespace CVirtualAnimParameter { + constexpr std::ptrdiff_t m_expressionString = 0x50; + constexpr std::ptrdiff_t m_eParamType = 0x58; +} + +namespace CBoolAnimParameter { + constexpr std::ptrdiff_t m_bDefaultValue = 0x60; +} + +namespace CEnumAnimParameter { + constexpr std::ptrdiff_t m_defaultValue = 0x68; + constexpr std::ptrdiff_t m_enumOptions = 0x70; +} + +namespace CIntAnimParameter { + constexpr std::ptrdiff_t m_defaultValue = 0x60; + constexpr std::ptrdiff_t m_minValue = 0x64; + constexpr std::ptrdiff_t m_maxValue = 0x68; +} + +namespace CFloatAnimParameter { + constexpr std::ptrdiff_t m_fDefaultValue = 0x60; + constexpr std::ptrdiff_t m_fMinValue = 0x64; + constexpr std::ptrdiff_t m_fMaxValue = 0x68; + constexpr std::ptrdiff_t m_bInterpolate = 0x6c; +} + +namespace CVectorAnimParameter { + constexpr std::ptrdiff_t m_defaultValue = 0x60; + constexpr std::ptrdiff_t m_bInterpolate = 0x6c; +} + +namespace CQuaternionAnimParameter { + constexpr std::ptrdiff_t m_defaultValue = 0x60; + constexpr std::ptrdiff_t m_bInterpolate = 0x70; +} + +namespace ScriptInfo_t { + constexpr std::ptrdiff_t m_code = 0x0; + constexpr std::ptrdiff_t m_paramsModified = 0x8; + constexpr std::ptrdiff_t m_proxyReadParams = 0x20; + constexpr std::ptrdiff_t m_proxyWriteParams = 0x38; + constexpr std::ptrdiff_t m_eScriptType = 0x50; +} + +namespace CAnimScriptManager { + constexpr std::ptrdiff_t m_scriptInfo = 0x10; +} + +namespace CStateActionUpdater { + constexpr std::ptrdiff_t m_pAction = 0x0; + constexpr std::ptrdiff_t m_eBehavior = 0x8; +} + +namespace CTransitionUpdateData { + constexpr std::ptrdiff_t m_srcStateIndex = 0x0; + constexpr std::ptrdiff_t m_destStateIndex = 0x1; + constexpr std::ptrdiff_t m_bDisabled = 0x0; +} + +namespace CStateUpdateData { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_hScript = 0x8; + constexpr std::ptrdiff_t m_transitionIndices = 0x10; + constexpr std::ptrdiff_t m_actions = 0x28; + constexpr std::ptrdiff_t m_stateID = 0x40; + constexpr std::ptrdiff_t m_bIsStartState = 0x0; + constexpr std::ptrdiff_t m_bIsEndState = 0x0; + constexpr std::ptrdiff_t m_bIsPassthrough = 0x0; +} + +namespace CAnimStateMachineUpdater { + constexpr std::ptrdiff_t m_states = 0x8; + constexpr std::ptrdiff_t m_transitions = 0x20; + constexpr std::ptrdiff_t m_startStateIndex = 0x50; +} + +namespace CAnimUpdateNodeRef { + constexpr std::ptrdiff_t m_nodeIndex = 0x8; +} + +namespace CAnimUpdateNodeBase { + constexpr std::ptrdiff_t m_nodePath = 0x18; + constexpr std::ptrdiff_t m_name = 0x48; + constexpr std::ptrdiff_t m_networkMode = 0x50; +} + +namespace CBinaryUpdateNode { + constexpr std::ptrdiff_t m_pChild1 = 0x58; + constexpr std::ptrdiff_t m_pChild2 = 0x68; + constexpr std::ptrdiff_t m_timingBehavior = 0x78; + constexpr std::ptrdiff_t m_flTimingBlend = 0x7c; + constexpr std::ptrdiff_t m_bResetChild1 = 0x80; + constexpr std::ptrdiff_t m_bResetChild2 = 0x81; +} + +namespace CBlendUpdateNode { + constexpr std::ptrdiff_t m_children = 0x60; + constexpr std::ptrdiff_t m_sortedOrder = 0x78; + constexpr std::ptrdiff_t m_targetValues = 0x90; + constexpr std::ptrdiff_t m_blendValueSource = 0xac; + constexpr std::ptrdiff_t m_paramIndex = 0xb0; + constexpr std::ptrdiff_t m_damping = 0xb8; + constexpr std::ptrdiff_t m_blendKeyType = 0xc8; + constexpr std::ptrdiff_t m_bLockBlendOnReset = 0xcc; + constexpr std::ptrdiff_t m_bSyncCycles = 0xcd; + constexpr std::ptrdiff_t m_bLoop = 0xce; + constexpr std::ptrdiff_t m_bLockWhenWaning = 0xcf; +} + +namespace BlendItem_t { + constexpr std::ptrdiff_t m_tags = 0x0; + constexpr std::ptrdiff_t m_pChild = 0x18; + constexpr std::ptrdiff_t m_hSequence = 0x28; + constexpr std::ptrdiff_t m_vPos = 0x2c; + constexpr std::ptrdiff_t m_flDuration = 0x34; + constexpr std::ptrdiff_t m_bUseCustomDuration = 0x38; +} + +namespace CBlend2DUpdateNode { + constexpr std::ptrdiff_t m_items = 0x60; + constexpr std::ptrdiff_t m_tags = 0x78; + constexpr std::ptrdiff_t m_paramSpans = 0x90; + constexpr std::ptrdiff_t m_nodeItemIndices = 0xa8; + constexpr std::ptrdiff_t m_damping = 0xc0; + constexpr std::ptrdiff_t m_blendSourceX = 0xd0; + constexpr std::ptrdiff_t m_paramX = 0xd4; + constexpr std::ptrdiff_t m_blendSourceY = 0xd8; + constexpr std::ptrdiff_t m_paramY = 0xdc; + constexpr std::ptrdiff_t m_eBlendMode = 0xe0; + constexpr std::ptrdiff_t m_playbackSpeed = 0xe4; + constexpr std::ptrdiff_t m_bLoop = 0xe8; + constexpr std::ptrdiff_t m_bLockBlendOnReset = 0xe9; + constexpr std::ptrdiff_t m_bLockWhenWaning = 0xea; + constexpr std::ptrdiff_t m_bAnimEventsAndTagsOnMostWeightedOnly = 0xeb; +} + +namespace CBoneMaskUpdateNode { + constexpr std::ptrdiff_t m_nWeightListIndex = 0x8c; + constexpr std::ptrdiff_t m_flRootMotionBlend = 0x90; + constexpr std::ptrdiff_t m_blendSpace = 0x94; + constexpr std::ptrdiff_t m_footMotionTiming = 0x98; + constexpr std::ptrdiff_t m_bUseBlendScale = 0x9c; + constexpr std::ptrdiff_t m_blendValueSource = 0xa0; + constexpr std::ptrdiff_t m_hBlendParameter = 0xa4; +} + +namespace CChoiceUpdateNode { + constexpr std::ptrdiff_t m_children = 0x58; + constexpr std::ptrdiff_t m_weights = 0x70; + constexpr std::ptrdiff_t m_blendTimes = 0x88; + constexpr std::ptrdiff_t m_choiceMethod = 0xa0; + constexpr std::ptrdiff_t m_choiceChangeMethod = 0xa4; + constexpr std::ptrdiff_t m_blendMethod = 0xa8; + constexpr std::ptrdiff_t m_blendTime = 0xac; + constexpr std::ptrdiff_t m_bCrossFade = 0xb0; + constexpr std::ptrdiff_t m_bResetChosen = 0xb1; + constexpr std::ptrdiff_t m_bDontResetSameSelection = 0xb2; +} + +namespace CDirectPlaybackTagData { + constexpr std::ptrdiff_t m_sequenceName = 0x0; + constexpr std::ptrdiff_t m_tags = 0x8; +} + +namespace FootFixedData_t { + constexpr std::ptrdiff_t m_vToeOffset = 0x0; + constexpr std::ptrdiff_t m_vHeelOffset = 0x10; + constexpr std::ptrdiff_t m_nTargetBoneIndex = 0x20; + constexpr std::ptrdiff_t m_nAnkleBoneIndex = 0x24; + constexpr std::ptrdiff_t m_nIKAnchorBoneIndex = 0x28; + constexpr std::ptrdiff_t m_ikChainIndex = 0x2c; + constexpr std::ptrdiff_t m_flMaxIKLength = 0x30; + constexpr std::ptrdiff_t m_nFootIndex = 0x34; + constexpr std::ptrdiff_t m_nTagIndex = 0x38; + constexpr std::ptrdiff_t m_flMaxRotationLeft = 0x3c; + constexpr std::ptrdiff_t m_flMaxRotationRight = 0x40; +} + +namespace TraceSettings_t { + constexpr std::ptrdiff_t m_flTraceHeight = 0x0; + constexpr std::ptrdiff_t m_flTraceRadius = 0x4; +} + +namespace FootFixedSettings { + constexpr std::ptrdiff_t m_traceSettings = 0x0; + constexpr std::ptrdiff_t m_vFootBaseBindPosePositionMS = 0x10; + constexpr std::ptrdiff_t m_flFootBaseLength = 0x20; + constexpr std::ptrdiff_t m_flMaxRotationLeft = 0x24; + constexpr std::ptrdiff_t m_flMaxRotationRight = 0x28; + constexpr std::ptrdiff_t m_footstepLandedTagIndex = 0x2c; + constexpr std::ptrdiff_t m_bEnableTracing = 0x30; + constexpr std::ptrdiff_t m_flTraceAngleBlend = 0x34; + constexpr std::ptrdiff_t m_nDisableTagIndex = 0x38; + constexpr std::ptrdiff_t m_nFootIndex = 0x3c; +} + +namespace FootStepTrigger { + constexpr std::ptrdiff_t m_tags = 0x0; + constexpr std::ptrdiff_t m_nFootIndex = 0x18; + constexpr std::ptrdiff_t m_triggerPhase = 0x1c; +} + +namespace CLeafUpdateNode { +} + +namespace CLeanMatrixUpdateNode { + constexpr std::ptrdiff_t m_frameCorners = 0x5c; + constexpr std::ptrdiff_t m_poses = 0x80; + constexpr std::ptrdiff_t m_damping = 0xa8; + constexpr std::ptrdiff_t m_blendSource = 0xb8; + constexpr std::ptrdiff_t m_paramIndex = 0xbc; + constexpr std::ptrdiff_t m_verticalAxis = 0xc0; + constexpr std::ptrdiff_t m_horizontalAxis = 0xcc; + constexpr std::ptrdiff_t m_hSequence = 0xd8; + constexpr std::ptrdiff_t m_flMaxValue = 0xdc; + constexpr std::ptrdiff_t m_nSequenceMaxFrame = 0xe0; +} + +namespace CMotionGraphUpdateNode { + constexpr std::ptrdiff_t m_pMotionGraph = 0x58; +} + +namespace CMotionMatchingUpdateNode { + constexpr std::ptrdiff_t m_dataSet = 0x58; + constexpr std::ptrdiff_t m_metrics = 0x78; + constexpr std::ptrdiff_t m_weights = 0x90; + constexpr std::ptrdiff_t m_bSearchEveryTick = 0xe0; + constexpr std::ptrdiff_t m_flSearchInterval = 0xe4; + constexpr std::ptrdiff_t m_bSearchWhenClipEnds = 0xe8; + constexpr std::ptrdiff_t m_bSearchWhenGoalChanges = 0xe9; + constexpr std::ptrdiff_t m_blendCurve = 0xec; + constexpr std::ptrdiff_t m_flSampleRate = 0xf4; + constexpr std::ptrdiff_t m_flBlendTime = 0xf8; + constexpr std::ptrdiff_t m_bLockClipWhenWaning = 0xfc; + constexpr std::ptrdiff_t m_flSelectionThreshold = 0x100; + constexpr std::ptrdiff_t m_flReselectionTimeWindow = 0x104; + constexpr std::ptrdiff_t m_bEnableRotationCorrection = 0x108; + constexpr std::ptrdiff_t m_bGoalAssist = 0x109; + constexpr std::ptrdiff_t m_flGoalAssistDistance = 0x10c; + constexpr std::ptrdiff_t m_flGoalAssistTolerance = 0x110; + constexpr std::ptrdiff_t m_distanceScale_Damping = 0x118; + constexpr std::ptrdiff_t m_flDistanceScale_OuterRadius = 0x128; + constexpr std::ptrdiff_t m_flDistanceScale_InnerRadius = 0x12c; + constexpr std::ptrdiff_t m_flDistanceScale_MaxScale = 0x130; + constexpr std::ptrdiff_t m_flDistanceScale_MinScale = 0x134; + constexpr std::ptrdiff_t m_bEnableDistanceScaling = 0x138; +} + +namespace CSelectorUpdateNode { + constexpr std::ptrdiff_t m_children = 0x58; + constexpr std::ptrdiff_t m_tags = 0x70; + constexpr std::ptrdiff_t m_blendCurve = 0x8c; + constexpr std::ptrdiff_t m_flBlendTime = 0x94; + constexpr std::ptrdiff_t m_hParameter = 0x9c; + constexpr std::ptrdiff_t m_eTagBehavior = 0xa0; + constexpr std::ptrdiff_t m_bResetOnChange = 0xa4; + constexpr std::ptrdiff_t m_bSyncCyclesOnChange = 0xa5; +} + +namespace CSequenceUpdateNode { + constexpr std::ptrdiff_t m_paramSpans = 0x60; + constexpr std::ptrdiff_t m_tags = 0x78; + constexpr std::ptrdiff_t m_hSequence = 0x94; + constexpr std::ptrdiff_t m_playbackSpeed = 0x98; + constexpr std::ptrdiff_t m_duration = 0x9c; + constexpr std::ptrdiff_t m_bLoop = 0xa0; +} + +namespace CSingleFrameUpdateNode { + constexpr std::ptrdiff_t m_actions = 0x58; + constexpr std::ptrdiff_t m_hPoseCacheHandle = 0x70; + constexpr std::ptrdiff_t m_hSequence = 0x74; + constexpr std::ptrdiff_t m_flCycle = 0x78; +} + +namespace CSkeletalInputUpdateNode { + constexpr std::ptrdiff_t m_fixedOpData = 0x58; +} + +namespace CSolveIKTargetHandle_t { + constexpr std::ptrdiff_t m_positionHandle = 0x0; + constexpr std::ptrdiff_t m_orientationHandle = 0x2; +} + +namespace StanceInfo_t { + constexpr std::ptrdiff_t m_vPosition = 0x0; + constexpr std::ptrdiff_t m_flDirection = 0xc; +} + +namespace CStateNodeTransitionData { + constexpr std::ptrdiff_t m_curve = 0x0; + constexpr std::ptrdiff_t m_blendDuration = 0x8; + constexpr std::ptrdiff_t m_resetCycleValue = 0x10; + constexpr std::ptrdiff_t m_bReset = 0x0; + constexpr std::ptrdiff_t m_resetCycleOption = 0x0; +} + +namespace CStateNodeStateData { + constexpr std::ptrdiff_t m_pChild = 0x0; + constexpr std::ptrdiff_t m_bExclusiveRootMotion = 0x0; +} + +namespace CStateMachineUpdateNode { + constexpr std::ptrdiff_t m_stateMachine = 0x68; + constexpr std::ptrdiff_t m_stateData = 0xc0; + constexpr std::ptrdiff_t m_transitionData = 0xd8; + constexpr std::ptrdiff_t m_bBlockWaningTags = 0xf4; + constexpr std::ptrdiff_t m_bLockStateWhenWaning = 0xf5; +} + +namespace CSubtractUpdateNode { + constexpr std::ptrdiff_t m_footMotionTiming = 0x8c; + constexpr std::ptrdiff_t m_bApplyToFootMotion = 0x90; + constexpr std::ptrdiff_t m_bApplyChannelsSeparately = 0x91; + constexpr std::ptrdiff_t m_bUseModelSpace = 0x92; +} + +namespace TwoBoneIKSettings_t { + constexpr std::ptrdiff_t m_endEffectorType = 0x0; + constexpr std::ptrdiff_t m_endEffectorAttachment = 0x10; + constexpr std::ptrdiff_t m_targetType = 0x90; + constexpr std::ptrdiff_t m_targetAttachment = 0xa0; + constexpr std::ptrdiff_t m_targetBoneIndex = 0x120; + constexpr std::ptrdiff_t m_hPositionParam = 0x124; + constexpr std::ptrdiff_t m_hRotationParam = 0x126; + constexpr std::ptrdiff_t m_bAlwaysUseFallbackHinge = 0x128; + constexpr std::ptrdiff_t m_vLsFallbackHingeAxis = 0x130; + constexpr std::ptrdiff_t m_nFixedBoneIndex = 0x140; + constexpr std::ptrdiff_t m_nMiddleBoneIndex = 0x144; + constexpr std::ptrdiff_t m_nEndBoneIndex = 0x148; + constexpr std::ptrdiff_t m_bMatchTargetOrientation = 0x14c; + constexpr std::ptrdiff_t m_bConstrainTwist = 0x14d; + constexpr std::ptrdiff_t m_flMaxTwist = 0x150; +} + +namespace CUnaryUpdateNode { + constexpr std::ptrdiff_t m_pChildNode = 0x58; +} + +namespace CWayPointHelperUpdateNode { + constexpr std::ptrdiff_t m_flStartCycle = 0x6c; + constexpr std::ptrdiff_t m_flEndCycle = 0x70; + constexpr std::ptrdiff_t m_bOnlyGoals = 0x74; + constexpr std::ptrdiff_t m_bPreventOvershoot = 0x75; + constexpr std::ptrdiff_t m_bPreventUndershoot = 0x76; +} + +namespace CZeroPoseUpdateNode { +} + +namespace TagSpan_t { + constexpr std::ptrdiff_t m_tagIndex = 0x0; + constexpr std::ptrdiff_t m_startCycle = 0x4; + constexpr std::ptrdiff_t m_endCycle = 0x8; +} + +namespace CAnimNodePath { + constexpr std::ptrdiff_t m_path = 0x0; + constexpr std::ptrdiff_t m_nCount = 0x2c; +} + +namespace ConfigIndex { + constexpr std::ptrdiff_t m_nGroup = 0x0; + constexpr std::ptrdiff_t m_nConfig = 0x2; +} + +namespace MotionIndex { + constexpr std::ptrdiff_t m_nGroup = 0x0; + constexpr std::ptrdiff_t m_nMotion = 0x2; +} + +namespace CMotionGraphConfig { + constexpr std::ptrdiff_t m_paramValues = 0x0; + constexpr std::ptrdiff_t m_flDuration = 0x10; + constexpr std::ptrdiff_t m_nMotionIndex = 0x14; + constexpr std::ptrdiff_t m_nSampleStart = 0x18; + constexpr std::ptrdiff_t m_nSampleCount = 0x1c; +} + +namespace CPoseHandle { + constexpr std::ptrdiff_t m_nIndex = 0x0; + constexpr std::ptrdiff_t m_eType = 0x2; +} + +namespace CAnimationGraphVisualizerPrimitiveBase { + constexpr std::ptrdiff_t m_Type = 0x8; + constexpr std::ptrdiff_t m_OwningAnimNodePaths = 0xc; + constexpr std::ptrdiff_t m_nOwningAnimNodePathCount = 0x38; +} + +namespace CAnimationGraphVisualizerText { + constexpr std::ptrdiff_t m_vWsPosition = 0x40; + constexpr std::ptrdiff_t m_Color = 0x50; + constexpr std::ptrdiff_t m_Text = 0x58; +} + +namespace CAnimationGraphVisualizerSphere { + constexpr std::ptrdiff_t m_vWsPosition = 0x40; + constexpr std::ptrdiff_t m_flRadius = 0x50; + constexpr std::ptrdiff_t m_Color = 0x54; +} + +namespace CAnimationGraphVisualizerLine { + constexpr std::ptrdiff_t m_vWsPositionStart = 0x40; + constexpr std::ptrdiff_t m_vWsPositionEnd = 0x50; + constexpr std::ptrdiff_t m_Color = 0x60; +} + +namespace CAnimationGraphVisualizerPie { + constexpr std::ptrdiff_t m_vWsCenter = 0x40; + constexpr std::ptrdiff_t m_vWsStart = 0x50; + constexpr std::ptrdiff_t m_vWsEnd = 0x60; + constexpr std::ptrdiff_t m_Color = 0x70; +} + +namespace CAnimationGraphVisualizerAxis { + constexpr std::ptrdiff_t m_xWsTransform = 0x40; + constexpr std::ptrdiff_t m_flAxisSize = 0x60; +} + +namespace IKBoneNameAndIndex_t { + constexpr std::ptrdiff_t m_Name = 0x0; +} + +namespace IKSolverSettings_t { + constexpr std::ptrdiff_t m_SolverType = 0x0; + constexpr std::ptrdiff_t m_nNumIterations = 0x4; +} + +namespace IKTargetSettings_t { + constexpr std::ptrdiff_t m_TargetSource = 0x0; + constexpr std::ptrdiff_t m_Bone = 0x8; + constexpr std::ptrdiff_t m_AnimgraphParameterNamePosition = 0x18; + constexpr std::ptrdiff_t m_AnimgraphParameterNameOrientation = 0x1c; + constexpr std::ptrdiff_t m_TargetCoordSystem = 0x20; +} + +namespace CAnimGraphNetworkSettings { + constexpr std::ptrdiff_t m_bNetworkingEnabled = 0x20; +} + +namespace CActionComponentUpdater { + constexpr std::ptrdiff_t m_actions = 0x30; +} + +namespace CAddUpdateNode { + constexpr std::ptrdiff_t m_footMotionTiming = 0x8c; + constexpr std::ptrdiff_t m_bApplyToFootMotion = 0x90; + constexpr std::ptrdiff_t m_bApplyChannelsSeparately = 0x91; + constexpr std::ptrdiff_t m_bUseModelSpace = 0x92; +} + +namespace CAimMatrixUpdateNode { + constexpr std::ptrdiff_t m_opFixedSettings = 0x70; + constexpr std::ptrdiff_t m_target = 0x148; + constexpr std::ptrdiff_t m_paramIndex = 0x14c; + constexpr std::ptrdiff_t m_hSequence = 0x150; + constexpr std::ptrdiff_t m_bResetChild = 0x154; + constexpr std::ptrdiff_t m_bLockWhenWaning = 0x155; +} + +namespace CBindPoseUpdateNode { +} + +namespace CChoreoUpdateNode { +} + +namespace CCycleControlUpdateNode { + constexpr std::ptrdiff_t m_valueSource = 0x68; + constexpr std::ptrdiff_t m_paramIndex = 0x6c; +} + +namespace CCycleControlClipUpdateNode { + constexpr std::ptrdiff_t m_tags = 0x60; + constexpr std::ptrdiff_t m_hSequence = 0x7c; + constexpr std::ptrdiff_t m_duration = 0x80; + constexpr std::ptrdiff_t m_valueSource = 0x84; + constexpr std::ptrdiff_t m_paramIndex = 0x88; +} + +namespace CDirectionalBlendUpdateNode { + constexpr std::ptrdiff_t m_hSequences = 0x5c; + constexpr std::ptrdiff_t m_damping = 0x80; + constexpr std::ptrdiff_t m_blendValueSource = 0x90; + constexpr std::ptrdiff_t m_paramIndex = 0x94; + constexpr std::ptrdiff_t m_playbackSpeed = 0x98; + constexpr std::ptrdiff_t m_duration = 0x9c; + constexpr std::ptrdiff_t m_bLoop = 0xa0; + constexpr std::ptrdiff_t m_bLockBlendOnReset = 0xa1; +} + +namespace CDirectPlaybackUpdateNode { + constexpr std::ptrdiff_t m_bFinishEarly = 0x6c; + constexpr std::ptrdiff_t m_bResetOnFinish = 0x6d; + constexpr std::ptrdiff_t m_allTags = 0x70; +} + +namespace CFollowPathUpdateNode { + constexpr std::ptrdiff_t m_flBlendOutTime = 0x6c; + constexpr std::ptrdiff_t m_bBlockNonPathMovement = 0x70; + constexpr std::ptrdiff_t m_bStopFeetAtGoal = 0x71; + constexpr std::ptrdiff_t m_bScaleSpeed = 0x72; + constexpr std::ptrdiff_t m_flScale = 0x74; + constexpr std::ptrdiff_t m_flMinAngle = 0x78; + constexpr std::ptrdiff_t m_flMaxAngle = 0x7c; + constexpr std::ptrdiff_t m_flSpeedScaleBlending = 0x80; + constexpr std::ptrdiff_t m_turnDamping = 0x88; + constexpr std::ptrdiff_t m_facingTarget = 0x98; + constexpr std::ptrdiff_t m_hParam = 0x9c; + constexpr std::ptrdiff_t m_flTurnToFaceOffset = 0xa0; + constexpr std::ptrdiff_t m_bTurnToFace = 0xa4; +} + +namespace CFollowAttachmentUpdateNode { + constexpr std::ptrdiff_t m_opFixedData = 0x70; +} + +namespace CFootAdjustmentUpdateNode { + constexpr std::ptrdiff_t m_clips = 0x70; + constexpr std::ptrdiff_t m_hBasePoseCacheHandle = 0x88; + constexpr std::ptrdiff_t m_facingTarget = 0x8c; + constexpr std::ptrdiff_t m_flTurnTimeMin = 0x90; + constexpr std::ptrdiff_t m_flTurnTimeMax = 0x94; + constexpr std::ptrdiff_t m_flStepHeightMax = 0x98; + constexpr std::ptrdiff_t m_flStepHeightMaxAngle = 0x9c; + constexpr std::ptrdiff_t m_bResetChild = 0xa0; + constexpr std::ptrdiff_t m_bAnimationDriven = 0xa1; +} + +namespace CFootLockUpdateNode { + constexpr std::ptrdiff_t m_opFixedSettings = 0x68; + constexpr std::ptrdiff_t m_footSettings = 0xd0; + constexpr std::ptrdiff_t m_hipShiftDamping = 0xe8; + constexpr std::ptrdiff_t m_rootHeightDamping = 0xf8; + constexpr std::ptrdiff_t m_flStrideCurveScale = 0x108; + constexpr std::ptrdiff_t m_flStrideCurveLimitScale = 0x10c; + constexpr std::ptrdiff_t m_flStepHeightIncreaseScale = 0x110; + constexpr std::ptrdiff_t m_flStepHeightDecreaseScale = 0x114; + constexpr std::ptrdiff_t m_flHipShiftScale = 0x118; + constexpr std::ptrdiff_t m_flBlendTime = 0x11c; + constexpr std::ptrdiff_t m_flMaxRootHeightOffset = 0x120; + constexpr std::ptrdiff_t m_flMinRootHeightOffset = 0x124; + constexpr std::ptrdiff_t m_flTiltPlanePitchSpringStrength = 0x128; + constexpr std::ptrdiff_t m_flTiltPlaneRollSpringStrength = 0x12c; + constexpr std::ptrdiff_t m_bApplyFootRotationLimits = 0x130; + constexpr std::ptrdiff_t m_bApplyHipShift = 0x131; + constexpr std::ptrdiff_t m_bModulateStepHeight = 0x132; + constexpr std::ptrdiff_t m_bResetChild = 0x133; + constexpr std::ptrdiff_t m_bEnableVerticalCurvedPaths = 0x134; + constexpr std::ptrdiff_t m_bEnableRootHeightDamping = 0x135; +} + +namespace CFootPinningUpdateNode { + constexpr std::ptrdiff_t m_poseOpFixedData = 0x70; + constexpr std::ptrdiff_t m_eTimingSource = 0xa0; + constexpr std::ptrdiff_t m_params = 0xa8; + constexpr std::ptrdiff_t m_bResetChild = 0xc0; +} + +namespace CFootStepTriggerUpdateNode { + constexpr std::ptrdiff_t m_triggers = 0x68; + constexpr std::ptrdiff_t m_flTolerance = 0x84; +} + +namespace CHitReactUpdateNode { + constexpr std::ptrdiff_t m_opFixedSettings = 0x68; + constexpr std::ptrdiff_t m_triggerParam = 0xb4; + constexpr std::ptrdiff_t m_hitBoneParam = 0xb6; + constexpr std::ptrdiff_t m_hitOffsetParam = 0xb8; + constexpr std::ptrdiff_t m_hitDirectionParam = 0xba; + constexpr std::ptrdiff_t m_hitStrengthParam = 0xbc; + constexpr std::ptrdiff_t m_flMinDelayBetweenHits = 0xc0; + constexpr std::ptrdiff_t m_bResetChild = 0xc4; +} + +namespace CInputStreamUpdateNode { +} + +namespace CJiggleBoneUpdateNode { + constexpr std::ptrdiff_t m_opFixedData = 0x68; +} + +namespace CJumpHelperUpdateNode { + constexpr std::ptrdiff_t m_hTargetParam = 0xa8; + constexpr std::ptrdiff_t m_flOriginalJumpMovement = 0xac; + constexpr std::ptrdiff_t m_flOriginalJumpDuration = 0xb8; + constexpr std::ptrdiff_t m_flJumpStartCycle = 0xbc; + constexpr std::ptrdiff_t m_flJumpEndCycle = 0xc0; + constexpr std::ptrdiff_t m_eCorrectionMethod = 0xc4; + constexpr std::ptrdiff_t m_bTranslationAxis = 0xc8; + constexpr std::ptrdiff_t m_bScaleSpeed = 0xcb; +} + +namespace CLookAtUpdateNode { + constexpr std::ptrdiff_t m_opFixedSettings = 0x70; + constexpr std::ptrdiff_t m_target = 0x138; + constexpr std::ptrdiff_t m_paramIndex = 0x13c; + constexpr std::ptrdiff_t m_weightParamIndex = 0x13e; + constexpr std::ptrdiff_t m_bResetChild = 0x140; + constexpr std::ptrdiff_t m_bLockWhenWaning = 0x141; +} + +namespace CMoverUpdateNode { + constexpr std::ptrdiff_t m_damping = 0x70; + constexpr std::ptrdiff_t m_facingTarget = 0x80; + constexpr std::ptrdiff_t m_hMoveVecParam = 0x84; + constexpr std::ptrdiff_t m_hMoveHeadingParam = 0x86; + constexpr std::ptrdiff_t m_hTurnToFaceParam = 0x88; + constexpr std::ptrdiff_t m_flTurnToFaceOffset = 0x8c; + constexpr std::ptrdiff_t m_flTurnToFaceLimit = 0x90; + constexpr std::ptrdiff_t m_bAdditive = 0x94; + constexpr std::ptrdiff_t m_bApplyMovement = 0x95; + constexpr std::ptrdiff_t m_bOrientMovement = 0x96; + constexpr std::ptrdiff_t m_bApplyRotation = 0x97; + constexpr std::ptrdiff_t m_bLimitOnly = 0x98; +} + +namespace CPathHelperUpdateNode { + constexpr std::ptrdiff_t m_flStoppingRadius = 0x68; + constexpr std::ptrdiff_t m_flStoppingSpeedScale = 0x6c; +} + +namespace CRagdollUpdateNode { + constexpr std::ptrdiff_t m_nWeightListIndex = 0x68; + constexpr std::ptrdiff_t m_poseControlMethod = 0x6c; +} + +namespace CRootUpdateNode { +} + +namespace CSetFacingUpdateNode { + constexpr std::ptrdiff_t m_facingMode = 0x68; + constexpr std::ptrdiff_t m_bResetChild = 0x6c; +} + +namespace CSlowDownOnSlopesUpdateNode { + constexpr std::ptrdiff_t m_flSlowDownStrength = 0x68; +} + +namespace CSolveIKChainUpdateNode { + constexpr std::ptrdiff_t m_targetHandles = 0x68; + constexpr std::ptrdiff_t m_opFixedData = 0x80; +} + +namespace CSpeedScaleUpdateNode { + constexpr std::ptrdiff_t m_paramIndex = 0x68; +} + +namespace CStanceOverrideUpdateNode { + constexpr std::ptrdiff_t m_footStanceInfo = 0x68; + constexpr std::ptrdiff_t m_pStanceSourceNode = 0x80; + constexpr std::ptrdiff_t m_hParameter = 0x90; + constexpr std::ptrdiff_t m_eMode = 0x94; +} + +namespace CStanceScaleUpdateNode { + constexpr std::ptrdiff_t m_hParam = 0x68; +} + +namespace CStopAtGoalUpdateNode { + constexpr std::ptrdiff_t m_flOuterRadius = 0x6c; + constexpr std::ptrdiff_t m_flInnerRadius = 0x70; + constexpr std::ptrdiff_t m_flMaxScale = 0x74; + constexpr std::ptrdiff_t m_flMinScale = 0x78; + constexpr std::ptrdiff_t m_damping = 0x80; +} + +namespace CTurnHelperUpdateNode { + constexpr std::ptrdiff_t m_facingTarget = 0x6c; + constexpr std::ptrdiff_t m_turnStartTimeOffset = 0x70; + constexpr std::ptrdiff_t m_turnDuration = 0x74; + constexpr std::ptrdiff_t m_bMatchChildDuration = 0x78; + constexpr std::ptrdiff_t m_manualTurnOffset = 0x7c; + constexpr std::ptrdiff_t m_bUseManualTurnOffset = 0x80; +} + +namespace CTwoBoneIKUpdateNode { + constexpr std::ptrdiff_t m_opFixedData = 0x70; +} + diff --git a/generated/animationsystem.dll.json b/generated/animationsystem.dll.json new file mode 100644 index 0000000..0b79b99 --- /dev/null +++ b/generated/animationsystem.dll.json @@ -0,0 +1,2178 @@ +{ + "AimMatrixOpFixedSettings_t": { + "m_attachment": 0, + "m_bTargetIsPosition": 200, + "m_damping": 128, + "m_eBlendMode": 184, + "m_fAngleIncrement": 188, + "m_nBoneMaskIndex": 196, + "m_nSequenceMaxFrame": 192, + "m_poseCacheHandles": 144 + }, + "AnimComponentID": { + "m_id": 0 + }, + "AnimNodeID": { + "m_id": 0 + }, + "AnimNodeOutputID": { + "m_id": 0 + }, + "AnimParamID": { + "m_id": 0 + }, + "AnimScriptHandle": { + "m_id": 0 + }, + "AnimStateID": { + "m_id": 0 + }, + "AnimTagID": { + "m_id": 0 + }, + "AnimationDecodeDebugDumpElement_t": { + "m_decodeOps": 40, + "m_decodedAnims": 88, + "m_internalOps": 64, + "m_modelName": 8, + "m_nEntityIndex": 0, + "m_poseParams": 16 + }, + "AnimationDecodeDebugDump_t": { + "m_elems": 8, + "m_processingType": 0 + }, + "AnimationSnapshotBase_t": { + "m_DecodeDump": 152, + "m_SnapshotType": 144, + "m_bBonesInWorldSpace": 64, + "m_bHasDecodeDump": 148, + "m_boneSetupMask": 72, + "m_boneTransforms": 96, + "m_flRealTime": 0, + "m_flexControllers": 120, + "m_rootToWorld": 16 + }, + "AnimationSnapshot_t": { + "m_modelName": 280, + "m_nEntIndex": 272 + }, + "AttachmentHandle_t": { + "m_Value": 0 + }, + "BlendItem_t": { + "m_bUseCustomDuration": 56, + "m_flDuration": 52, + "m_hSequence": 40, + "m_pChild": 24, + "m_tags": 0, + "m_vPos": 44 + }, + "BoneDemoCaptureSettings_t": { + "m_boneName": 0 + }, + "CActionComponentUpdater": { + "m_actions": 48 + }, + "CAddUpdateNode": { + "m_bApplyChannelsSeparately": 145, + "m_bApplyToFootMotion": 144, + "m_bUseModelSpace": 146, + "m_footMotionTiming": 140 + }, + "CAimConstraint": { + "m_nUpType": 128, + "m_qAimOffset": 112 + }, + "CAimMatrixUpdateNode": { + "m_bLockWhenWaning": 341, + "m_bResetChild": 340, + "m_hSequence": 336, + "m_opFixedSettings": 112, + "m_paramIndex": 332, + "m_target": 328 + }, + "CAnimActivity": { + "m_nActivity": 16, + "m_nFlags": 20, + "m_nWeight": 24, + "m_name": 0 + }, + "CAnimAttachment": { + "m_influenceIndices": 96, + "m_influenceOffsets": 48, + "m_influenceRotations": 0, + "m_influenceWeights": 108, + "m_numInfluences": 120 + }, + "CAnimBone": { + "m_flags": 68, + "m_name": 0, + "m_parent": 16, + "m_pos": 20, + "m_qAlignment": 52, + "m_quat": 32, + "m_scale": 48 + }, + "CAnimBoneDifference": { + "m_bHasMovement": 45, + "m_bHasRotation": 44, + "m_name": 0, + "m_parent": 16, + "m_posError": 32 + }, + "CAnimComponentUpdater": { + "m_bStartEnabled": 40, + "m_id": 32, + "m_name": 24, + "m_networkMode": 36 + }, + "CAnimData": { + "m_animArray": 32, + "m_decoderArray": 56, + "m_nMaxUniqueFrameIndex": 80, + "m_name": 16, + "m_segmentArray": 88 + }, + "CAnimDataChannelDesc": { + "m_nElementIndexArray": 96, + "m_nElementMaskArray": 120, + "m_nFlags": 32, + "m_nType": 36, + "m_szChannelClass": 0, + "m_szDescription": 56, + "m_szElementNameArray": 72, + "m_szGrouping": 40, + "m_szVariableName": 16 + }, + "CAnimDecoder": { + "m_nType": 20, + "m_nVersion": 16, + "m_szName": 0 + }, + "CAnimDemoCaptureSettings": { + "m_baseSequence": 40, + "m_boneSelectionMode": 52, + "m_bones": 56, + "m_flIkRotation_MaxQuantizationError": 32, + "m_flIkRotation_MaxSplineError": 12, + "m_flIkTranslation_MaxQuantizationError": 36, + "m_flIkTranslation_MaxSplineError": 16, + "m_flMaxQuantizationErrorRotation": 20, + "m_flMaxQuantizationErrorScale": 28, + "m_flMaxQuantizationErrorTranslation": 24, + "m_flMaxSplineErrorRotation": 0, + "m_flMaxSplineErrorScale": 8, + "m_flMaxSplineErrorTranslation": 4, + "m_ikChains": 80, + "m_nBaseSequenceFrame": 48 + }, + "CAnimDesc": { + "fps": 24, + "framestalltime": 344, + "m_Data": 32, + "m_activityArray": 296, + "m_eventArray": 272, + "m_flags": 16, + "m_hierarchyArray": 320, + "m_movementArray": 248, + "m_name": 0, + "m_sequenceParams": 424, + "m_vecBoneWorldMax": 400, + "m_vecBoneWorldMin": 376, + "m_vecRootMax": 360, + "m_vecRootMin": 348 + }, + "CAnimDesc_Flag": { + "m_bAllZeros": 1, + "m_bAnimGraphAdditive": 7, + "m_bDelta": 3, + "m_bHidden": 2, + "m_bImplicitSeqIgnoreDelta": 6, + "m_bLegacyWorldspace": 4, + "m_bLooping": 0, + "m_bModelDoc": 5 + }, + "CAnimEncodeDifference": { + "m_bHasMorphBitArray": 120, + "m_bHasMovementBitArray": 96, + "m_bHasRotationBitArray": 72, + "m_bHasUserBitArray": 144, + "m_boneArray": 0, + "m_morphArray": 24, + "m_userArray": 48 + }, + "CAnimEncodedFrames": { + "m_fileName": 0, + "m_frameblockArray": 24, + "m_nFrames": 16, + "m_nFramesPerBlock": 20, + "m_usageDifferences": 48 + }, + "CAnimEnum": { + "m_value": 0 + }, + "CAnimEventDefinition": { + "m_EventData": 16, + "m_flCycle": 12, + "m_nFrame": 8, + "m_sEventName": 48, + "m_sLegacyOptions": 32 + }, + "CAnimFoot": { + "m_ankleBoneIndex": 32, + "m_name": 0, + "m_toeBoneIndex": 36, + "m_vBallOffset": 8, + "m_vHeelOffset": 20 + }, + "CAnimFrameBlockAnim": { + "m_nEndFrame": 4, + "m_nStartFrame": 0, + "m_segmentIndexArray": 8 + }, + "CAnimFrameSegment": { + "m_container": 16, + "m_nLocalChannel": 8, + "m_nLocalElementMasks": 4, + "m_nUniqueFrameIndex": 0 + }, + "CAnimGraphDebugReplay": { + "m_animGraphFileName": 64, + "m_frameCount": 104, + "m_frameList": 72, + "m_startIndex": 96, + "m_writeIndex": 100 + }, + "CAnimGraphModelBinding": { + "m_modelName": 8, + "m_pSharedData": 16 + }, + "CAnimGraphNetworkSettings": { + "m_bNetworkingEnabled": 32 + }, + "CAnimGraphSettingsManager": { + "m_settingsGroups": 24 + }, + "CAnimInputDamping": { + "m_fSpeedScale": 12, + "m_speedFunction": 8 + }, + "CAnimKeyData": { + "m_boneArray": 16, + "m_dataChannelArray": 96, + "m_morphArray": 64, + "m_nChannelElements": 88, + "m_name": 0, + "m_userArray": 40 + }, + "CAnimLocalHierarchy": { + "m_nEndFrame": 44, + "m_nPeakFrame": 36, + "m_nStartFrame": 32, + "m_nTailFrame": 40, + "m_sBone": 0, + "m_sNewParent": 16 + }, + "CAnimMorphDifference": { + "m_name": 0 + }, + "CAnimMotorUpdaterBase": { + "m_bDefault": 24, + "m_name": 16 + }, + "CAnimMovement": { + "angle": 16, + "endframe": 0, + "motionflags": 4, + "position": 32, + "v0": 8, + "v1": 12, + "vector": 20 + }, + "CAnimNodePath": { + "m_nCount": 44, + "m_path": 0 + }, + "CAnimParamHandle": { + "m_index": 1, + "m_type": 0 + }, + "CAnimParamHandleMap": { + "m_list": 0 + }, + "CAnimParameterBase": { + "m_bIsReferenced": 77, + "m_bNetworkingRequested": 76, + "m_componentName": 64, + "m_group": 32, + "m_id": 40, + "m_name": 24 + }, + "CAnimParameterManagerUpdater": { + "m_autoResetMap": 160, + "m_autoResetParams": 136, + "m_idToIndexMap": 48, + "m_indexToHandle": 112, + "m_nameToIndexMap": 80, + "m_parameters": 24 + }, + "CAnimReplayFrame": { + "m_inputDataBlocks": 16, + "m_instanceData": 40, + "m_localToWorldTransform": 96, + "m_startingLocalToWorldTransform": 64, + "m_timeStamp": 128 + }, + "CAnimScriptComponentUpdater": { + "m_hScript": 48 + }, + "CAnimScriptManager": { + "m_scriptInfo": 16 + }, + "CAnimSequenceParams": { + "m_flFadeInTime": 0, + "m_flFadeOutTime": 4 + }, + "CAnimSkeleton": { + "m_boneNames": 64, + "m_children": 88, + "m_feet": 136, + "m_localSpaceTransforms": 16, + "m_lodBoneCounts": 184, + "m_modelSpaceTransforms": 40, + "m_morphNames": 160, + "m_parents": 112 + }, + "CAnimStateMachineUpdater": { + "m_startStateIndex": 80, + "m_states": 8, + "m_transitions": 32 + }, + "CAnimTagBase": { + "m_bIsReferenced": 44, + "m_group": 32, + "m_name": 24, + "m_tagID": 40 + }, + "CAnimTagManagerUpdater": { + "m_tags": 24 + }, + "CAnimUpdateNodeBase": { + "m_name": 72, + "m_networkMode": 80, + "m_nodePath": 24 + }, + "CAnimUpdateNodeRef": { + "m_nodeIndex": 8 + }, + "CAnimUpdateSharedData": { + "m_components": 72, + "m_nodeIndexMap": 40, + "m_nodes": 16, + "m_pParamListUpdater": 96, + "m_pSkeleton": 176, + "m_pStaticPoseCache": 168, + "m_pTagManagerUpdater": 104, + "m_rootNodePath": 184, + "m_scriptManager": 112, + "m_settings": 120 + }, + "CAnimUser": { + "m_nType": 16, + "m_name": 0 + }, + "CAnimUserDifference": { + "m_nType": 16, + "m_name": 0 + }, + "CAnimationGraphVisualizerAxis": { + "m_flAxisSize": 96, + "m_xWsTransform": 64 + }, + "CAnimationGraphVisualizerLine": { + "m_Color": 96, + "m_vWsPositionEnd": 80, + "m_vWsPositionStart": 64 + }, + "CAnimationGraphVisualizerPie": { + "m_Color": 112, + "m_vWsCenter": 64, + "m_vWsEnd": 96, + "m_vWsStart": 80 + }, + "CAnimationGraphVisualizerPrimitiveBase": { + "m_OwningAnimNodePaths": 12, + "m_Type": 8, + "m_nOwningAnimNodePathCount": 56 + }, + "CAnimationGraphVisualizerSphere": { + "m_Color": 84, + "m_flRadius": 80, + "m_vWsPosition": 64 + }, + "CAnimationGraphVisualizerText": { + "m_Color": 80, + "m_Text": 88, + "m_vWsPosition": 64 + }, + "CAnimationGroup": { + "m_decodeKey": 152, + "m_directHSeqGroup_Handle": 144, + "m_includedGroupArray_Handle": 120, + "m_localHAnimArray_Handle": 96, + "m_nFlags": 16, + "m_name": 24, + "m_szScripts": 272 + }, + "CAttachment": { + "m_bIgnoreRotation": 132, + "m_bInfluenceRootTransform": 128, + "m_influenceNames": 8, + "m_influenceWeights": 116, + "m_nInfluences": 131, + "m_name": 0, + "m_vInfluenceOffsets": 80, + "m_vInfluenceRotations": 32 + }, + "CAudioAnimTag": { + "m_attachmentName": 64, + "m_bPlayOnClient": 79, + "m_bPlayOnServer": 78, + "m_bStopWhenGraphEnds": 77, + "m_bStopWhenTagEnds": 76, + "m_clipName": 56, + "m_flVolume": 72 + }, + "CBaseConstraint": { + "m_name": 40, + "m_slaves": 64, + "m_targets": 88, + "m_vUpVector": 48 + }, + "CBinaryUpdateNode": { + "m_bResetChild1": 128, + "m_bResetChild2": 129, + "m_flTimingBlend": 124, + "m_pChild1": 88, + "m_pChild2": 104, + "m_timingBehavior": 120 + }, + "CBlend2DUpdateNode": { + "m_bAnimEventsAndTagsOnMostWeightedOnly": 235, + "m_bLockBlendOnReset": 233, + "m_bLockWhenWaning": 234, + "m_bLoop": 232, + "m_blendSourceX": 208, + "m_blendSourceY": 216, + "m_damping": 192, + "m_eBlendMode": 224, + "m_items": 96, + "m_nodeItemIndices": 168, + "m_paramSpans": 144, + "m_paramX": 212, + "m_paramY": 220, + "m_playbackSpeed": 228, + "m_tags": 120 + }, + "CBlendCurve": { + "m_flControlPoint1": 0, + "m_flControlPoint2": 4 + }, + "CBlendUpdateNode": { + "m_bLockBlendOnReset": 204, + "m_bLockWhenWaning": 207, + "m_bLoop": 206, + "m_bSyncCycles": 205, + "m_blendKeyType": 200, + "m_blendValueSource": 172, + "m_children": 96, + "m_damping": 184, + "m_paramIndex": 176, + "m_sortedOrder": 120, + "m_targetValues": 144 + }, + "CBodyGroupAnimTag": { + "m_bodyGroupSettings": 64, + "m_nPriority": 56 + }, + "CBodyGroupSetting": { + "m_BodyGroupName": 0, + "m_nBodyGroupOption": 8 + }, + "CBoneConstraintDotToMorph": { + "m_flRemap": 64, + "m_sBoneName": 40, + "m_sMorphChannelName": 56, + "m_sTargetBoneName": 48 + }, + "CBoneConstraintPoseSpaceBone": { + "m_inputList": 112 + }, + "CBoneConstraintPoseSpaceBone::Input_t": { + "m_inputValue": 0, + "m_outputTransformList": 16 + }, + "CBoneConstraintPoseSpaceMorph::Input_t": { + "m_inputValue": 0, + "m_outputWeightList": 16 + }, + "CBoneMaskUpdateNode": { + "m_bUseBlendScale": 156, + "m_blendSpace": 148, + "m_blendValueSource": 160, + "m_flRootMotionBlend": 144, + "m_footMotionTiming": 152, + "m_hBlendParameter": 164, + "m_nWeightListIndex": 140 + }, + "CBonePositionMetricEvaluator": { + "m_nBoneIndex": 80 + }, + "CBoneVelocityMetricEvaluator": { + "m_nBoneIndex": 80 + }, + "CBoolAnimParameter": { + "m_bDefaultValue": 96 + }, + "CCPPScriptComponentUpdater": { + "m_scriptsToRun": 48 + }, + "CCachedPose": { + "m_flCycle": 60, + "m_hSequence": 56, + "m_morphWeights": 32, + "m_transforms": 8 + }, + "CChoiceUpdateNode": { + "m_bCrossFade": 176, + "m_bDontResetSameSelection": 178, + "m_bResetChosen": 177, + "m_blendMethod": 168, + "m_blendTime": 172, + "m_blendTimes": 136, + "m_children": 88, + "m_choiceChangeMethod": 164, + "m_choiceMethod": 160, + "m_weights": 112 + }, + "CClothSettingsAnimTag": { + "m_flEaseIn": 60, + "m_flEaseOut": 64, + "m_flStiffness": 56, + "m_nVertexSet": 72 + }, + "CCompressorGroup": { + "m_boolCompressor": 320, + "m_colorCompressor": 344, + "m_intCompressor": 296, + "m_nCompressorIndex": 128, + "m_nElementMask": 200, + "m_nElementUniqueID": 176, + "m_nFlags": 80, + "m_nTotalElementCount": 0, + "m_nType": 56, + "m_quaternionCompressor": 272, + "m_szChannelClass": 8, + "m_szElementNames": 152, + "m_szGrouping": 104, + "m_szVariableName": 32, + "m_vector2DCompressor": 368, + "m_vector4DCompressor": 392, + "m_vectorCompressor": 248 + }, + "CConcreteAnimParameter": { + "m_bAutoReset": 89, + "m_bGameWritable": 90, + "m_bGraphWritable": 91, + "m_bUseMostRecentValue": 88, + "m_eNetworkSetting": 84, + "m_previewButton": 80 + }, + "CConstraintSlave": { + "m_flWeight": 32, + "m_nBoneHash": 28, + "m_qBaseOrientation": 0, + "m_sName": 40, + "m_vBasePosition": 16 + }, + "CConstraintTarget": { + "m_bIsAttachment": 89, + "m_flWeight": 72, + "m_nBoneHash": 60, + "m_qOffset": 32, + "m_sName": 64, + "m_vOffset": 48 + }, + "CCycleBase": { + "m_flCycle": 0 + }, + "CCycleControlClipUpdateNode": { + "m_duration": 128, + "m_hSequence": 124, + "m_paramIndex": 136, + "m_tags": 96, + "m_valueSource": 132 + }, + "CCycleControlUpdateNode": { + "m_paramIndex": 108, + "m_valueSource": 104 + }, + "CDampedPathAnimMotorUpdater": { + "m_flAnticipationTime": 44, + "m_flMaxSpringTension": 64, + "m_flMinSpeedScale": 48, + "m_flMinSpringTension": 60, + "m_flSpringConstant": 56, + "m_hAnticipationHeadingParam": 54, + "m_hAnticipationPosParam": 52 + }, + "CDampedValueComponentUpdater": { + "m_items": 48 + }, + "CDampedValueUpdateItem": { + "m_damping": 0, + "m_hParamIn": 24, + "m_hParamOut": 26 + }, + "CDemoSettingsComponentUpdater": { + "m_settings": 48 + }, + "CDirectPlaybackTagData": { + "m_sequenceName": 0, + "m_tags": 8 + }, + "CDirectPlaybackUpdateNode": { + "m_allTags": 112, + "m_bFinishEarly": 108, + "m_bResetOnFinish": 109 + }, + "CDirectionalBlendUpdateNode": { + "m_bLockBlendOnReset": 161, + "m_bLoop": 160, + "m_blendValueSource": 144, + "m_damping": 128, + "m_duration": 156, + "m_hSequences": 92, + "m_paramIndex": 148, + "m_playbackSpeed": 152 + }, + "CDistanceRemainingMetricEvaluator": { + "m_bFilterFixedMinDistance": 96, + "m_bFilterGoalDistance": 97, + "m_bFilterGoalOvershoot": 98, + "m_flMaxDistance": 80, + "m_flMaxGoalOvershootScale": 92, + "m_flMinDistance": 84, + "m_flStartGoalFilterDistance": 88 + }, + "CDrawCullingData": { + "m_ConeAxis": 12, + "m_ConeCutoff": 15, + "m_vConeApex": 0 + }, + "CEmitTagActionUpdater": { + "m_bIsZeroDuration": 28, + "m_nTagIndex": 24 + }, + "CEnumAnimParameter": { + "m_defaultValue": 104, + "m_enumOptions": 112 + }, + "CExpressionActionUpdater": { + "m_eParamType": 26, + "m_hParam": 24, + "m_hScript": 28 + }, + "CFingerBone": { + "m_boneName": 0, + "m_flMaxAngle": 48, + "m_flMinAngle": 44, + "m_flRadius": 52, + "m_hingeAxis": 8, + "m_vCapsulePos1": 20, + "m_vCapsulePos2": 32 + }, + "CFingerChain": { + "m_bones": 24, + "m_flFingerScaleRatio": 108, + "m_flSplayMaxAngle": 104, + "m_flSplayMinAngle": 100, + "m_metacarpalBoneName": 80, + "m_name": 48, + "m_targets": 0, + "m_tipParentBoneName": 56, + "m_vSplayHingeAxis": 88, + "m_vTipOffset": 64 + }, + "CFingerSource": { + "m_flFingerWeight": 4, + "m_nFingerIndex": 0 + }, + "CFlexController": { + "m_szName": 0, + "m_szType": 8, + "max": 20, + "min": 16 + }, + "CFlexDesc": { + "m_szFacs": 0 + }, + "CFlexOp": { + "m_Data": 4, + "m_OpCode": 0 + }, + "CFlexRule": { + "m_FlexOps": 8, + "m_nFlex": 0 + }, + "CFloatAnimParameter": { + "m_bInterpolate": 108, + "m_fDefaultValue": 96, + "m_fMaxValue": 104, + "m_fMinValue": 100 + }, + "CFollowAttachmentUpdateNode": { + "m_opFixedData": 112 + }, + "CFollowPathUpdateNode": { + "m_bBlockNonPathMovement": 112, + "m_bScaleSpeed": 114, + "m_bStopFeetAtGoal": 113, + "m_bTurnToFace": 164, + "m_facingTarget": 152, + "m_flBlendOutTime": 108, + "m_flMaxAngle": 124, + "m_flMinAngle": 120, + "m_flScale": 116, + "m_flSpeedScaleBlending": 128, + "m_flTurnToFaceOffset": 160, + "m_hParam": 156, + "m_turnDamping": 136 + }, + "CFootAdjustmentUpdateNode": { + "m_bAnimationDriven": 161, + "m_bResetChild": 160, + "m_clips": 112, + "m_facingTarget": 140, + "m_flStepHeightMax": 152, + "m_flStepHeightMaxAngle": 156, + "m_flTurnTimeMax": 148, + "m_flTurnTimeMin": 144, + "m_hBasePoseCacheHandle": 136 + }, + "CFootCycleDefinition": { + "m_flStanceDirectionMS": 24, + "m_footLandCycle": 56, + "m_footLiftCycle": 44, + "m_footOffCycle": 48, + "m_footStrikeCycle": 52, + "m_stanceCycle": 40, + "m_vMidpointPositionMS": 12, + "m_vStancePositionMS": 0, + "m_vToStrideStartPos": 28 + }, + "CFootCycleMetricEvaluator": { + "m_footIndices": 80 + }, + "CFootDefinition": { + "m_ankleBoneName": 8, + "m_flBindPoseDirectionMS": 52, + "m_flFootLength": 48, + "m_flTraceHeight": 56, + "m_flTraceRadius": 60, + "m_name": 0, + "m_toeBoneName": 16, + "m_vBallOffset": 24, + "m_vHeelOffset": 36 + }, + "CFootFallAnimTag": { + "m_foot": 56 + }, + "CFootLockUpdateNode": { + "m_bApplyFootRotationLimits": 304, + "m_bApplyHipShift": 305, + "m_bEnableRootHeightDamping": 309, + "m_bEnableVerticalCurvedPaths": 308, + "m_bModulateStepHeight": 306, + "m_bResetChild": 307, + "m_flBlendTime": 284, + "m_flHipShiftScale": 280, + "m_flMaxRootHeightOffset": 288, + "m_flMinRootHeightOffset": 292, + "m_flStepHeightDecreaseScale": 276, + "m_flStepHeightIncreaseScale": 272, + "m_flStrideCurveLimitScale": 268, + "m_flStrideCurveScale": 264, + "m_flTiltPlanePitchSpringStrength": 296, + "m_flTiltPlaneRollSpringStrength": 300, + "m_footSettings": 208, + "m_hipShiftDamping": 232, + "m_opFixedSettings": 104, + "m_rootHeightDamping": 248 + }, + "CFootMotion": { + "m_bAdditive": 32, + "m_name": 24, + "m_strides": 0 + }, + "CFootPinningUpdateNode": { + "m_bResetChild": 192, + "m_eTimingSource": 160, + "m_params": 168, + "m_poseOpFixedData": 112 + }, + "CFootPositionMetricEvaluator": { + "m_bIgnoreSlope": 104, + "m_footIndices": 80 + }, + "CFootStepTriggerUpdateNode": { + "m_flTolerance": 132, + "m_triggers": 104 + }, + "CFootStride": { + "m_definition": 0, + "m_trajectories": 64 + }, + "CFootTrajectories": { + "m_trajectories": 0 + }, + "CFootTrajectory": { + "m_flProgression": 16, + "m_flRotationOffset": 12, + "m_vOffset": 0 + }, + "CFootstepLandedAnimTag": { + "m_BoneName": 80, + "m_DebugAnimSourceString": 72, + "m_FootstepType": 56, + "m_OverrideSoundName": 64 + }, + "CFutureFacingMetricEvaluator": { + "m_flDistance": 80, + "m_flTime": 84 + }, + "CFutureVelocityMetricEvaluator": { + "m_eMode": 92, + "m_flDistance": 80, + "m_flStoppingDistance": 84, + "m_flTargetSpeed": 88 + }, + "CHitBox": { + "m_CRC": 64, + "m_bTranslationOnly": 61, + "m_cRenderColor": 68, + "m_flShapeRadius": 48, + "m_nBoneNameHash": 52, + "m_nGroupId": 56, + "m_nHitBoxIndex": 72, + "m_nShapeType": 60, + "m_name": 0, + "m_sBoneName": 16, + "m_sSurfaceProperty": 8, + "m_vMaxBounds": 36, + "m_vMinBounds": 24 + }, + "CHitBoxSet": { + "m_HitBoxes": 16, + "m_SourceFilename": 40, + "m_nNameHash": 8, + "m_name": 0 + }, + "CHitBoxSetList": { + "m_HitBoxSets": 0 + }, + "CHitReactUpdateNode": { + "m_bResetChild": 196, + "m_flMinDelayBetweenHits": 192, + "m_hitBoneParam": 182, + "m_hitDirectionParam": 186, + "m_hitOffsetParam": 184, + "m_hitStrengthParam": 188, + "m_opFixedSettings": 104, + "m_triggerParam": 180 + }, + "CIntAnimParameter": { + "m_defaultValue": 96, + "m_maxValue": 104, + "m_minValue": 100 + }, + "CJiggleBoneUpdateNode": { + "m_opFixedData": 104 + }, + "CJumpHelperUpdateNode": { + "m_bScaleSpeed": 203, + "m_bTranslationAxis": 200, + "m_eCorrectionMethod": 196, + "m_flJumpEndCycle": 192, + "m_flJumpStartCycle": 188, + "m_flOriginalJumpDuration": 184, + "m_flOriginalJumpMovement": 172, + "m_hTargetParam": 168 + }, + "CLODComponentUpdater": { + "m_nServerLOD": 48 + }, + "CLeanMatrixUpdateNode": { + "m_blendSource": 184, + "m_damping": 168, + "m_flMaxValue": 220, + "m_frameCorners": 92, + "m_hSequence": 216, + "m_horizontalAxis": 204, + "m_nSequenceMaxFrame": 224, + "m_paramIndex": 188, + "m_poses": 128, + "m_verticalAxis": 192 + }, + "CLookAtUpdateNode": { + "m_bLockWhenWaning": 321, + "m_bResetChild": 320, + "m_opFixedSettings": 112, + "m_paramIndex": 316, + "m_target": 312, + "m_weightParamIndex": 318 + }, + "CLookComponentUpdater": { + "m_bNetworkLookTarget": 66, + "m_hLookDirection": 60, + "m_hLookDistance": 58, + "m_hLookHeading": 52, + "m_hLookHeadingVelocity": 54, + "m_hLookPitch": 56, + "m_hLookTarget": 62, + "m_hLookTargetWorldSpace": 64 + }, + "CMaterialAttributeAnimTag": { + "m_AttributeName": 56, + "m_AttributeType": 64, + "m_Color": 72, + "m_flValue": 68 + }, + "CMaterialDrawDescriptor": { + "m_flAlpha": 36, + "m_flUvDensity": 20, + "m_indexBuffer": 184, + "m_material": 224, + "m_nBaseVertex": 4, + "m_nFirstMeshlet": 44, + "m_nIndexCount": 16, + "m_nNumMeshlets": 48, + "m_nPrimitiveType": 0, + "m_nStartIndex": 12, + "m_nVertexCount": 8, + "m_vTintColor": 24 + }, + "CMeshletDescriptor": { + "m_CullingData": 8, + "m_PackedAABB": 0 + }, + "CModelConfig": { + "m_ConfigName": 0, + "m_Elements": 8, + "m_bTopLevel": 32 + }, + "CModelConfigElement": { + "m_ElementName": 8, + "m_NestedElements": 16 + }, + "CModelConfigElement_AttachedModel": { + "m_AttachmentName": 120, + "m_AttachmentType": 136, + "m_BodygroupOnOtherModels": 144, + "m_EntityClass": 80, + "m_InstanceName": 72, + "m_LocalAttachmentOffsetName": 128, + "m_MaterialGroupOnOtherModels": 152, + "m_aAngOffset": 108, + "m_bAcceptParentMaterialDrivenDecals": 143, + "m_bBoneMergeFlex": 140, + "m_bUserSpecifiedColor": 141, + "m_bUserSpecifiedMaterialGroup": 142, + "m_hModel": 88, + "m_vOffset": 96 + }, + "CModelConfigElement_Command": { + "m_Args": 80, + "m_Command": 72 + }, + "CModelConfigElement_RandomColor": { + "m_Gradient": 72 + }, + "CModelConfigElement_RandomPick": { + "m_ChoiceWeights": 96, + "m_Choices": 72 + }, + "CModelConfigElement_SetBodygroup": { + "m_GroupName": 72, + "m_nChoice": 80 + }, + "CModelConfigElement_SetBodygroupOnAttachedModels": { + "m_GroupName": 72, + "m_nChoice": 80 + }, + "CModelConfigElement_SetMaterialGroup": { + "m_MaterialGroupName": 72 + }, + "CModelConfigElement_SetMaterialGroupOnAttachedModels": { + "m_MaterialGroupName": 72 + }, + "CModelConfigElement_SetRenderColor": { + "m_Color": 72 + }, + "CModelConfigElement_UserPick": { + "m_Choices": 72 + }, + "CModelConfigList": { + "m_Configs": 8, + "m_bHideMaterialGroupInTools": 0, + "m_bHideRenderColorInTools": 1 + }, + "CMoodVData": { + "m_animationLayers": 232, + "m_nMoodType": 224, + "m_sModelName": 0 + }, + "CMorphBundleData": { + "m_flULeftSrc": 0, + "m_flVTopSrc": 4, + "m_offsets": 8, + "m_ranges": 32 + }, + "CMorphConstraint": { + "m_flMax": 128, + "m_flMin": 124, + "m_nSlaveChannel": 120, + "m_sTargetMorph": 112 + }, + "CMorphData": { + "m_morphRectDatas": 8, + "m_name": 0 + }, + "CMorphRectData": { + "m_bundleDatas": 16, + "m_flUWidthSrc": 4, + "m_flVHeightSrc": 8, + "m_nXLeftDst": 0, + "m_nYTopDst": 2 + }, + "CMorphSetData": { + "m_FlexControllers": 104, + "m_FlexDesc": 80, + "m_FlexRules": 128, + "m_bundleTypes": 24, + "m_morphDatas": 48, + "m_nHeight": 20, + "m_nWidth": 16, + "m_pTextureAtlas": 72 + }, + "CMotionDataSet": { + "m_groups": 0, + "m_nDimensionCount": 24 + }, + "CMotionGraph": { + "m_bLoop": 84, + "m_nConfigCount": 80, + "m_nConfigStartIndex": 76, + "m_nParameterCount": 72, + "m_pRootNode": 64, + "m_paramSpans": 16, + "m_tags": 40 + }, + "CMotionGraphConfig": { + "m_flDuration": 16, + "m_nMotionIndex": 20, + "m_nSampleCount": 28, + "m_nSampleStart": 24, + "m_paramValues": 0 + }, + "CMotionGraphGroup": { + "m_hIsActiveScript": 256, + "m_motionGraphConfigs": 208, + "m_motionGraphs": 184, + "m_sampleToConfig": 232, + "m_searchDB": 0 + }, + "CMotionGraphUpdateNode": { + "m_pMotionGraph": 88 + }, + "CMotionMatchingUpdateNode": { + "m_bEnableDistanceScaling": 312, + "m_bEnableRotationCorrection": 264, + "m_bGoalAssist": 265, + "m_bLockClipWhenWaning": 252, + "m_bSearchEveryTick": 224, + "m_bSearchWhenClipEnds": 232, + "m_bSearchWhenGoalChanges": 233, + "m_blendCurve": 236, + "m_dataSet": 88, + "m_distanceScale_Damping": 280, + "m_flBlendTime": 248, + "m_flDistanceScale_InnerRadius": 300, + "m_flDistanceScale_MaxScale": 304, + "m_flDistanceScale_MinScale": 308, + "m_flDistanceScale_OuterRadius": 296, + "m_flGoalAssistDistance": 268, + "m_flGoalAssistTolerance": 272, + "m_flReselectionTimeWindow": 260, + "m_flSampleRate": 244, + "m_flSearchInterval": 228, + "m_flSelectionThreshold": 256, + "m_metrics": 120, + "m_weights": 144 + }, + "CMotionMetricEvaluator": { + "m_flWeight": 72, + "m_means": 24, + "m_nDimensionStartIndex": 76, + "m_standardDeviations": 48 + }, + "CMotionNode": { + "m_id": 32, + "m_name": 24 + }, + "CMotionNodeBlend1D": { + "m_blendItems": 40, + "m_nParamIndex": 64 + }, + "CMotionNodeSequence": { + "m_flPlaybackSpeed": 68, + "m_hSequence": 64, + "m_tags": 40 + }, + "CMotionSearchDB": { + "m_codeIndices": 160, + "m_residualQuantizer": 128, + "m_rootNode": 0 + }, + "CMotionSearchNode": { + "m_children": 0, + "m_quantizer": 24, + "m_sampleCodes": 56, + "m_sampleIndices": 80, + "m_selectableSamples": 104 + }, + "CMovementComponentUpdater": { + "m_bMoveVarsDisabled": 128, + "m_bNetworkFacing": 130, + "m_bNetworkPath": 129, + "m_eDefaultFacingMode": 112, + "m_facingDamping": 96, + "m_motors": 72, + "m_movementModes": 48, + "m_nDefaultMotorIndex": 124, + "m_paramHandles": 131 + }, + "CMovementMode": { + "m_flSpeed": 8, + "m_name": 0 + }, + "CMoverUpdateNode": { + "m_bAdditive": 148, + "m_bApplyMovement": 149, + "m_bApplyRotation": 151, + "m_bLimitOnly": 152, + "m_bOrientMovement": 150, + "m_damping": 112, + "m_facingTarget": 128, + "m_flTurnToFaceLimit": 144, + "m_flTurnToFaceOffset": 140, + "m_hMoveHeadingParam": 134, + "m_hMoveVecParam": 132, + "m_hTurnToFaceParam": 136 + }, + "CParamSpanUpdater": { + "m_spans": 0 + }, + "CParticleAnimTag": { + "m_attachmentCP1Name": 104, + "m_attachmentCP1Type": 112, + "m_attachmentName": 88, + "m_attachmentType": 96, + "m_bDetachFromOwner": 80, + "m_bStopWhenTagEnds": 81, + "m_bTagEndStopIsInstant": 82, + "m_configName": 72, + "m_hParticleSystem": 56, + "m_particleSystemName": 64 + }, + "CPathAnimMotorUpdaterBase": { + "m_bLockToPath": 32 + }, + "CPathHelperUpdateNode": { + "m_flStoppingRadius": 104, + "m_flStoppingSpeedScale": 108 + }, + "CPathMetricEvaluator": { + "m_bExtrapolateMovement": 108, + "m_flDistance": 104, + "m_flMinExtrapolationSpeed": 112, + "m_pathTimeSamples": 80 + }, + "CPhysSurfaceProperties": { + "m_audioParams": 136, + "m_audioSounds": 72, + "m_bHidden": 24, + "m_baseNameHash": 12, + "m_description": 32, + "m_name": 0, + "m_nameHash": 8, + "m_physics": 40 + }, + "CPhysSurfacePropertiesAudio": { + "m_flOcclusionFactor": 28, + "m_flStaticImpactVolume": 24, + "m_hardThreshold": 16, + "m_hardVelocityThreshold": 20, + "m_hardnessFactor": 4, + "m_reflectivity": 0, + "m_roughThreshold": 12, + "m_roughnessFactor": 8 + }, + "CPhysSurfacePropertiesPhysics": { + "m_density": 8, + "m_elasticity": 4, + "m_friction": 0, + "m_softContactDampingRatio": 20, + "m_softContactFrequency": 16, + "m_thickness": 12, + "m_wheelDrag": 24 + }, + "CPhysSurfacePropertiesSoundNames": { + "m_break": 48, + "m_bulletImpact": 32, + "m_impactHard": 8, + "m_impactSoft": 0, + "m_rolling": 40, + "m_scrapeRough": 24, + "m_scrapeSmooth": 16, + "m_strain": 56 + }, + "CPlayerInputAnimMotorUpdater": { + "m_bUseAcceleration": 72, + "m_flAnticipationDistance": 64, + "m_flSpringConstant": 60, + "m_hAnticipationHeadingParam": 70, + "m_hAnticipationPosParam": 68, + "m_sampleTimes": 32 + }, + "CPoseHandle": { + "m_eType": 2, + "m_nIndex": 0 + }, + "CProductQuantizer": { + "m_nDimensions": 24, + "m_subQuantizers": 0 + }, + "CQuaternionAnimParameter": { + "m_bInterpolate": 112, + "m_defaultValue": 96 + }, + "CRagdollAnimTag": { + "m_bDestroy": 76, + "m_flDampingRatio": 64, + "m_flDecayBias": 72, + "m_flDecayDuration": 68, + "m_flFrequency": 60, + "m_nPoseControl": 56 + }, + "CRagdollComponentUpdater": { + "m_boneIndices": 72, + "m_boneNames": 96, + "m_flMaxStretch": 152, + "m_flSpringFrequencyMax": 148, + "m_flSpringFrequencyMin": 144, + "m_ragdollNodePaths": 48, + "m_weightLists": 120 + }, + "CRagdollUpdateNode": { + "m_nWeightListIndex": 104, + "m_poseControlMethod": 108 + }, + "CRenderBufferBinding": { + "m_hBuffer": 0, + "m_nBindOffsetBytes": 16 + }, + "CRenderMesh": { + "m_constraints": 160, + "m_sceneObjects": 16, + "m_skeleton": 184 + }, + "CRenderSkeleton": { + "m_boneParents": 48, + "m_bones": 0, + "m_nBoneWeightCount": 72 + }, + "CSceneObjectData": { + "m_drawBounds": 48, + "m_drawCalls": 24, + "m_meshlets": 72, + "m_vMaxBounds": 12, + "m_vMinBounds": 0, + "m_vTintColor": 96 + }, + "CSelectorUpdateNode": { + "m_bResetOnChange": 164, + "m_bSyncCyclesOnChange": 165, + "m_blendCurve": 140, + "m_children": 88, + "m_eTagBehavior": 160, + "m_flBlendTime": 148, + "m_hParameter": 156, + "m_tags": 112 + }, + "CSeqAutoLayer": { + "m_end": 24, + "m_flags": 4, + "m_nLocalPose": 2, + "m_nLocalReference": 0, + "m_peak": 16, + "m_start": 12, + "m_tail": 20 + }, + "CSeqAutoLayerFlag": { + "m_bFetchFrame": 6, + "m_bLocal": 4, + "m_bNoBlend": 3, + "m_bPose": 5, + "m_bPost": 0, + "m_bSpline": 1, + "m_bSubtract": 7, + "m_bXFade": 2 + }, + "CSeqBoneMaskList": { + "m_flBoneWeightArray": 40, + "m_flDefaultMorphCtrlWeight": 64, + "m_morphCtrlWeightArray": 72, + "m_nLocalBoneArray": 16, + "m_sName": 0 + }, + "CSeqCmdLayer": { + "m_bSpline": 10, + "m_cmd": 0, + "m_flVar1": 12, + "m_flVar2": 16, + "m_nDstResult": 6, + "m_nLineNumber": 20, + "m_nLocalBonemask": 4, + "m_nLocalReference": 2, + "m_nSrcResult": 8 + }, + "CSeqCmdSeqDesc": { + "m_activityArray": 96, + "m_cmdLayerArray": 48, + "m_eventArray": 72, + "m_flFPS": 40, + "m_flags": 16, + "m_nFrameCount": 38, + "m_nFrameRangeSequence": 36, + "m_nSubCycles": 44, + "m_numLocalResults": 46, + "m_poseSettingArray": 120, + "m_sName": 0, + "m_transition": 28 + }, + "CSeqIKLock": { + "m_bBonesOrientedAlongPositiveX": 10, + "m_flAngleWeight": 4, + "m_flPosWeight": 0, + "m_nLocalBone": 8 + }, + "CSeqMultiFetch": { + "m_bCalculatePoseParameters": 100, + "m_flags": 0, + "m_localReferenceArray": 8, + "m_nGroupSize": 32, + "m_nLocalCyclePoseParameter": 96, + "m_nLocalPose": 40, + "m_poseKeyArray0": 48, + "m_poseKeyArray1": 72 + }, + "CSeqMultiFetchFlag": { + "m_b0D": 2, + "m_b1D": 3, + "m_b2D": 4, + "m_b2D_TRI": 5, + "m_bCylepose": 1, + "m_bRealtime": 0 + }, + "CSeqPoseParamDesc": { + "m_bLooping": 28, + "m_flEnd": 20, + "m_flLoop": 24, + "m_flStart": 16, + "m_sName": 0 + }, + "CSeqPoseSetting": { + "m_bX": 52, + "m_bY": 53, + "m_bZ": 54, + "m_eType": 56, + "m_flValue": 48, + "m_sAttachment": 16, + "m_sPoseParameter": 0, + "m_sReferenceSequence": 32 + }, + "CSeqS1SeqDesc": { + "m_IKLockArray": 168, + "m_LegacyKeyValueText": 216, + "m_SequenceKeys": 200, + "m_activityArray": 232, + "m_autoLayerArray": 144, + "m_fetch": 32, + "m_flags": 16, + "m_footMotion": 256, + "m_nLocalWeightlist": 136, + "m_sName": 0, + "m_transition": 192 + }, + "CSeqScaleSet": { + "m_bRootOffset": 16, + "m_flBoneScaleArray": 56, + "m_nLocalBoneArray": 32, + "m_sName": 0, + "m_vRootOffset": 20 + }, + "CSeqSeqDescFlag": { + "m_bAutoplay": 2, + "m_bHidden": 4, + "m_bLegacyCyclepose": 8, + "m_bLegacyDelta": 6, + "m_bLegacyRealtime": 9, + "m_bLegacyWorldspace": 7, + "m_bLooping": 0, + "m_bModelDoc": 10, + "m_bMulti": 5, + "m_bPost": 3, + "m_bSnap": 1 + }, + "CSeqSynthAnimDesc": { + "m_activityArray": 40, + "m_flags": 16, + "m_nLocalBaseReference": 36, + "m_nLocalBoneMask": 38, + "m_sName": 0, + "m_transition": 28 + }, + "CSeqTransition": { + "m_flFadeInTime": 0, + "m_flFadeOutTime": 4 + }, + "CSequenceFinishedAnimTag": { + "m_sequenceName": 56 + }, + "CSequenceGroupData": { + "m_keyValues": 272, + "m_localBoneMaskArray": 160, + "m_localBoneNameArray": 208, + "m_localCmdSeqDescArray": 136, + "m_localIKAutoplayLockArray": 288, + "m_localMultiSeqDescArray": 88, + "m_localNodeName": 232, + "m_localPoseParamArray": 248, + "m_localS1SeqDescArray": 64, + "m_localScaleSetArray": 184, + "m_localSequenceNameArray": 40, + "m_localSynthAnimDescArray": 112, + "m_nFlags": 32, + "m_sName": 16 + }, + "CSequenceUpdateNode": { + "m_bLoop": 160, + "m_duration": 156, + "m_hSequence": 148, + "m_paramSpans": 96, + "m_playbackSpeed": 152, + "m_tags": 120 + }, + "CSetFacingUpdateNode": { + "m_bResetChild": 108, + "m_facingMode": 104 + }, + "CSetParameterActionUpdater": { + "m_hParam": 24, + "m_value": 26 + }, + "CSingleFrameUpdateNode": { + "m_actions": 88, + "m_flCycle": 120, + "m_hPoseCacheHandle": 112, + "m_hSequence": 116 + }, + "CSkeletalInputUpdateNode": { + "m_fixedOpData": 88 + }, + "CSlopeComponentUpdater": { + "m_flTraceDistance": 52, + "m_hSlopeAngle": 56, + "m_hSlopeAngleFront": 58, + "m_hSlopeAngleSide": 60, + "m_hSlopeHeading": 62, + "m_hSlopeNormal": 64, + "m_hSlopeNormal_WorldSpace": 66 + }, + "CSlowDownOnSlopesUpdateNode": { + "m_flSlowDownStrength": 104 + }, + "CSolveIKChainUpdateNode": { + "m_opFixedData": 128, + "m_targetHandles": 104 + }, + "CSolveIKTargetHandle_t": { + "m_orientationHandle": 2, + "m_positionHandle": 0 + }, + "CSpeedScaleUpdateNode": { + "m_paramIndex": 104 + }, + "CStanceOverrideUpdateNode": { + "m_eMode": 148, + "m_footStanceInfo": 104, + "m_hParameter": 144, + "m_pStanceSourceNode": 128 + }, + "CStanceScaleUpdateNode": { + "m_hParam": 104 + }, + "CStateActionUpdater": { + "m_eBehavior": 8, + "m_pAction": 0 + }, + "CStateMachineComponentUpdater": { + "m_stateMachine": 48 + }, + "CStateMachineUpdateNode": { + "m_bBlockWaningTags": 244, + "m_bLockStateWhenWaning": 245, + "m_stateData": 192, + "m_stateMachine": 104, + "m_transitionData": 216 + }, + "CStateNodeStateData": { + "m_bExclusiveRootMotion": 0, + "m_pChild": 0 + }, + "CStateNodeTransitionData": { + "m_bReset": 0, + "m_blendDuration": 8, + "m_curve": 0, + "m_resetCycleOption": 0, + "m_resetCycleValue": 16 + }, + "CStateUpdateData": { + "m_actions": 40, + "m_bIsEndState": 0, + "m_bIsPassthrough": 0, + "m_bIsStartState": 0, + "m_hScript": 8, + "m_name": 0, + "m_stateID": 64, + "m_transitionIndices": 16 + }, + "CStaticPoseCache": { + "m_nBoneCount": 40, + "m_nMorphCount": 44, + "m_poses": 16 + }, + "CStepsRemainingMetricEvaluator": { + "m_flMinStepsRemaining": 104, + "m_footIndices": 80 + }, + "CStopAtGoalUpdateNode": { + "m_damping": 128, + "m_flInnerRadius": 112, + "m_flMaxScale": 116, + "m_flMinScale": 120, + "m_flOuterRadius": 108 + }, + "CSubtractUpdateNode": { + "m_bApplyChannelsSeparately": 145, + "m_bApplyToFootMotion": 144, + "m_bUseModelSpace": 146, + "m_footMotionTiming": 140 + }, + "CTiltTwistConstraint": { + "m_nSlaveAxis": 116, + "m_nTargetAxis": 112 + }, + "CTimeRemainingMetricEvaluator": { + "m_bFilterByTimeRemaining": 88, + "m_bMatchByTimeRemaining": 80, + "m_flMaxTimeRemaining": 84, + "m_flMinTimeRemaining": 92 + }, + "CToggleComponentActionUpdater": { + "m_bSetEnabled": 28, + "m_componentID": 24 + }, + "CTransitionUpdateData": { + "m_bDisabled": 0, + "m_destStateIndex": 1, + "m_srcStateIndex": 0 + }, + "CTurnHelperUpdateNode": { + "m_bMatchChildDuration": 120, + "m_bUseManualTurnOffset": 128, + "m_facingTarget": 108, + "m_manualTurnOffset": 124, + "m_turnDuration": 116, + "m_turnStartTimeOffset": 112 + }, + "CTwistConstraint": { + "m_bInverse": 112, + "m_qChildBindRotation": 144, + "m_qParentBindRotation": 128 + }, + "CTwoBoneIKUpdateNode": { + "m_opFixedData": 112 + }, + "CUnaryUpdateNode": { + "m_pChildNode": 88 + }, + "CVPhysXSurfacePropertiesList": { + "m_surfacePropertiesList": 0 + }, + "CVRInputComponentUpdater": { + "m_FingerCurl_Index": 54, + "m_FingerCurl_Middle": 56, + "m_FingerCurl_Pinky": 60, + "m_FingerCurl_Ring": 58, + "m_FingerCurl_Thumb": 52, + "m_FingerSplay_Index_Middle": 64, + "m_FingerSplay_Middle_Ring": 66, + "m_FingerSplay_Ring_Pinky": 68, + "m_FingerSplay_Thumb_Index": 62 + }, + "CVectorAnimParameter": { + "m_bInterpolate": 108, + "m_defaultValue": 96 + }, + "CVectorQuantizer": { + "m_centroidVectors": 0, + "m_nCentroids": 24, + "m_nDimensions": 28 + }, + "CVirtualAnimParameter": { + "m_eParamType": 88, + "m_expressionString": 80 + }, + "CVrSkeletalInputSettings": { + "m_eHand": 72, + "m_fingers": 24, + "m_name": 48, + "m_outerKnuckle1": 56, + "m_outerKnuckle2": 64, + "m_wristBones": 0 + }, + "CWayPointHelperUpdateNode": { + "m_bOnlyGoals": 116, + "m_bPreventOvershoot": 117, + "m_bPreventUndershoot": 118, + "m_flEndCycle": 112, + "m_flStartCycle": 108 + }, + "CWristBone": { + "m_name": 0, + "m_vForwardLS": 8, + "m_vOffset": 32, + "m_vUpLS": 20 + }, + "ChainToSolveData_t": { + "m_DebugSetting": 56, + "m_SolverSettings": 4, + "m_TargetSettings": 16, + "m_flDebugNormalizedValue": 60, + "m_nChainIndex": 0, + "m_vDebugOffset": 64 + }, + "ConfigIndex": { + "m_nConfig": 2, + "m_nGroup": 0 + }, + "FingerBone_t": { + "m_boneIndex": 0, + "m_flMaxAngle": 44, + "m_flMinAngle": 40, + "m_flRadius": 48, + "m_hingeAxis": 4, + "m_vCapsulePos1": 16, + "m_vCapsulePos2": 28 + }, + "FingerChain_t": { + "m_bones": 24, + "m_flFingerScaleRatio": 88, + "m_flSplayMaxAngle": 84, + "m_flSplayMinAngle": 80, + "m_metacarpalBoneIndex": 76, + "m_targets": 0, + "m_tipParentBoneIndex": 72, + "m_vSplayHingeAxis": 60, + "m_vTipOffset": 48 + }, + "FingerSource_t": { + "m_flFingerWeight": 4, + "m_nFingerIndex": 0 + }, + "FollowAttachmentSettings_t": { + "m_attachment": 0, + "m_bMatchRotation": 133, + "m_bMatchTranslation": 132, + "m_boneIndex": 128 + }, + "FootFixedData_t": { + "m_flMaxIKLength": 48, + "m_flMaxRotationLeft": 60, + "m_flMaxRotationRight": 64, + "m_ikChainIndex": 44, + "m_nAnkleBoneIndex": 36, + "m_nFootIndex": 52, + "m_nIKAnchorBoneIndex": 40, + "m_nTagIndex": 56, + "m_nTargetBoneIndex": 32, + "m_vHeelOffset": 16, + "m_vToeOffset": 0 + }, + "FootFixedSettings": { + "m_bEnableTracing": 48, + "m_flFootBaseLength": 32, + "m_flMaxRotationLeft": 36, + "m_flMaxRotationRight": 40, + "m_flTraceAngleBlend": 52, + "m_footstepLandedTagIndex": 44, + "m_nDisableTagIndex": 56, + "m_nFootIndex": 60, + "m_traceSettings": 0, + "m_vFootBaseBindPosePositionMS": 16 + }, + "FootLockPoseOpFixedSettings": { + "m_bAlwaysUseFallbackHinge": 50, + "m_bApplyFootRotationLimits": 51, + "m_bApplyHipDrop": 49, + "m_bApplyLegTwistLimits": 52, + "m_bApplyTilt": 48, + "m_bEnableLockBreaking": 68, + "m_bEnableStretching": 80, + "m_flExtensionScale": 60, + "m_flLockBlendTime": 76, + "m_flLockBreakTolerance": 72, + "m_flMaxFootHeight": 56, + "m_flMaxLegTwist": 64, + "m_flMaxStretchAmount": 84, + "m_flStretchExtensionScale": 88, + "m_footInfo": 0, + "m_hipDampingSettings": 24, + "m_ikSolverType": 44, + "m_nHipBoneIndex": 40 + }, + "FootPinningPoseOpFixedData_t": { + "m_bApplyFootRotationLimits": 41, + "m_bApplyLegTwistLimits": 40, + "m_flBlendTime": 24, + "m_flLockBreakDistance": 28, + "m_flMaxLegTwist": 32, + "m_footInfo": 0, + "m_nHipBoneIndex": 36 + }, + "FootStepTrigger": { + "m_nFootIndex": 24, + "m_tags": 0, + "m_triggerPhase": 28 + }, + "HSequence": { + "m_Value": 0 + }, + "HitReactFixedSettings_t": { + "m_flCounterRotationScale": 20, + "m_flDistanceFadeScale": 24, + "m_flHipBoneTranslationScale": 52, + "m_flHipDipDelay": 64, + "m_flHipDipImpactScale": 60, + "m_flHipDipSpringStrength": 56, + "m_flMaxAngleRadians": 44, + "m_flMaxImpactForce": 8, + "m_flMinImpactForce": 12, + "m_flPropagationScale": 28, + "m_flSpringStrength": 36, + "m_flWhipDelay": 32, + "m_flWhipImpactScale": 16, + "m_flWhipSpringStrength": 40, + "m_nEffectedBoneCount": 4, + "m_nHipBoneIndex": 48, + "m_nWeightListIndex": 0 + }, + "IKBoneNameAndIndex_t": { + "m_Name": 0 + }, + "IKDemoCaptureSettings_t": { + "m_eMode": 8, + "m_ikChainName": 16, + "m_oneBoneEnd": 32, + "m_oneBoneStart": 24, + "m_parentBoneName": 0 + }, + "IKSolverSettings_t": { + "m_SolverType": 0, + "m_nNumIterations": 4 + }, + "IKTargetSettings_t": { + "m_AnimgraphParameterNameOrientation": 28, + "m_AnimgraphParameterNamePosition": 24, + "m_Bone": 8, + "m_TargetCoordSystem": 32, + "m_TargetSource": 0 + }, + "JiggleBoneSettingsList_t": { + "m_boneSettings": 0 + }, + "JiggleBoneSettings_t": { + "m_eSimSpace": 40, + "m_flDamping": 12, + "m_flMaxTimeStep": 8, + "m_flSpringStrength": 4, + "m_nBoneIndex": 0, + "m_vBoundsMaxLS": 16, + "m_vBoundsMinLS": 28 + }, + "LookAtBone_t": { + "m_index": 0, + "m_weight": 4 + }, + "LookAtOpFixedSettings_t": { + "m_attachment": 0, + "m_bMaintainUpDirection": 185, + "m_bRotateYawForward": 184, + "m_bTargetIsPosition": 186, + "m_bUseHysteresis": 187, + "m_bones": 144, + "m_damping": 128, + "m_flHysteresisInnerAngle": 176, + "m_flHysteresisOuterAngle": 180, + "m_flPitchLimit": 172, + "m_flYawLimit": 168 + }, + "MaterialGroup_t": { + "m_materials": 8, + "m_name": 0 + }, + "ModelBoneFlexDriverControl_t": { + "m_flMax": 24, + "m_flMin": 20, + "m_flexController": 8, + "m_flexControllerToken": 16, + "m_nBoneComponent": 0 + }, + "ModelBoneFlexDriver_t": { + "m_boneName": 0, + "m_boneNameToken": 8, + "m_controls": 16 + }, + "ModelSkeletonData_t": { + "m_boneName": 0, + "m_bonePosParent": 96, + "m_boneRotParent": 120, + "m_boneScaleParent": 144, + "m_boneSphere": 48, + "m_nFlag": 72, + "m_nParent": 24 + }, + "MoodAnimationLayer_t": { + "m_bActiveListening": 8, + "m_bActiveTalking": 9, + "m_bScaleWithInts": 56, + "m_flDurationScale": 48, + "m_flEndOffset": 76, + "m_flFadeIn": 84, + "m_flFadeOut": 88, + "m_flIntensity": 40, + "m_flNextStart": 60, + "m_flStartOffset": 68, + "m_layerAnimations": 16, + "m_sName": 0 + }, + "MoodAnimation_t": { + "m_flWeight": 8, + "m_sName": 0 + }, + "MotionBlendItem": { + "m_flKeyValue": 8, + "m_pChild": 0 + }, + "MotionDBIndex": { + "m_nIndex": 0 + }, + "MotionIndex": { + "m_nGroup": 0, + "m_nMotion": 2 + }, + "ParamSpanSample_t": { + "m_flCycle": 20, + "m_value": 0 + }, + "ParamSpan_t": { + "m_eParamType": 26, + "m_flEndCycle": 32, + "m_flStartCycle": 28, + "m_hParam": 24, + "m_samples": 0 + }, + "PermModelDataAnimatedMaterialAttribute_t": { + "m_AttributeName": 0, + "m_nNumChannels": 8 + }, + "PermModelData_t": { + "m_AnimatedMaterialAttributes": 688, + "m_BodyGroupsHiddenInTools": 640, + "m_ExtParts": 96, + "m_boneFlexDrivers": 608, + "m_lodGroupSwitchDistances": 216, + "m_materialGroups": 360, + "m_meshGroups": 336, + "m_modelInfo": 8, + "m_modelSkeleton": 392, + "m_nDefaultMeshGroupMask": 384, + "m_name": 0, + "m_pModelConfigList": 632, + "m_refAnimGroups": 288, + "m_refAnimIncludeModels": 664, + "m_refLODGroupMasks": 192, + "m_refMeshGroupMasks": 144, + "m_refMeshes": 120, + "m_refPhysGroupMasks": 168, + "m_refPhysicsData": 240, + "m_refPhysicsHitboxData": 264, + "m_refSequenceGroups": 312, + "m_remappingTable": 560, + "m_remappingTableStarts": 584 + }, + "PermModelExtPart_t": { + "m_Name": 32, + "m_Transform": 0, + "m_nParent": 40, + "m_refModel": 48 + }, + "PermModelInfo_t": { + "m_flMass": 52, + "m_flMaxEyeDeflection": 68, + "m_keyValueText": 80, + "m_nFlags": 0, + "m_sSurfaceProperty": 72, + "m_vEyePosition": 56, + "m_vHullMax": 16, + "m_vHullMin": 4, + "m_vViewMax": 40, + "m_vViewMin": 28 + }, + "PhysSoftbodyDesc_t": { + "m_Capsules": 72, + "m_InitPose": 96, + "m_ParticleBoneHash": 0, + "m_ParticleBoneName": 120, + "m_Particles": 24, + "m_Springs": 48 + }, + "RenderSkeletonBone_t": { + "m_bbox": 64, + "m_boneName": 0, + "m_flSphereRadius": 88, + "m_invBindPose": 16, + "m_parentName": 8 + }, + "SampleCode": { + "m_subCode": 0 + }, + "ScriptInfo_t": { + "m_code": 0, + "m_eScriptType": 80, + "m_paramsModified": 8, + "m_proxyReadParams": 32, + "m_proxyWriteParams": 56 + }, + "SkeletalInputOpFixedSettings_t": { + "m_bEnableCollision": 69, + "m_bEnableIK": 68, + "m_eHand": 56, + "m_eMotionRange": 60, + "m_eTransformSource": 64, + "m_fingers": 24, + "m_outerKnuckle1": 48, + "m_outerKnuckle2": 52, + "m_wristBones": 0 + }, + "SkeletonBoneBounds_t": { + "m_vecCenter": 0, + "m_vecSize": 12 + }, + "SolveIKChainPoseOpFixedSettings_t": { + "m_ChainsToSolveData": 0, + "m_bMatchTargetOrientation": 24 + }, + "StanceInfo_t": { + "m_flDirection": 12, + "m_vPosition": 0 + }, + "TagSpan_t": { + "m_endCycle": 8, + "m_startCycle": 4, + "m_tagIndex": 0 + }, + "TraceSettings_t": { + "m_flTraceHeight": 0, + "m_flTraceRadius": 4 + }, + "TwoBoneIKSettings_t": { + "m_bAlwaysUseFallbackHinge": 296, + "m_bConstrainTwist": 333, + "m_bMatchTargetOrientation": 332, + "m_endEffectorAttachment": 16, + "m_endEffectorType": 0, + "m_flMaxTwist": 336, + "m_hPositionParam": 292, + "m_hRotationParam": 294, + "m_nEndBoneIndex": 328, + "m_nFixedBoneIndex": 320, + "m_nMiddleBoneIndex": 324, + "m_targetAttachment": 160, + "m_targetBoneIndex": 288, + "m_targetType": 144, + "m_vLsFallbackHingeAxis": 304 + }, + "VPhysXAggregateData_t": { + "m_bindPose": 104, + "m_boneNames": 32, + "m_boneParents": 208, + "m_bonesHash": 8, + "m_collisionAttributes": 256, + "m_constraints2": 152, + "m_debugPartNames": 280, + "m_embeddedKeyvalues": 304, + "m_indexHash": 80, + "m_indexNames": 56, + "m_joints": 176, + "m_nFlags": 0, + "m_nRefCounter": 2, + "m_pFeModel": 200, + "m_parts": 128, + "m_surfacePropertyHashes": 232 + }, + "VPhysXBodyPart_t": { + "m_bOverrideMassCenter": 144, + "m_flAngularDamping": 140, + "m_flInertiaScale": 132, + "m_flLinearDamping": 136, + "m_flMass": 4, + "m_nCollisionAttributeIndex": 128, + "m_nFlags": 0, + "m_nReserved": 130, + "m_rnShape": 8, + "m_vMassCenterOverride": 148 + }, + "VPhysXCollisionAttributes_t": { + "m_CollisionGroup": 0, + "m_CollisionGroupString": 80, + "m_InteractAs": 8, + "m_InteractAsStrings": 88, + "m_InteractExclude": 56, + "m_InteractExcludeStrings": 136, + "m_InteractWith": 32, + "m_InteractWithStrings": 112 + }, + "VPhysXConstraint2_t": { + "m_nChild": 6, + "m_nFlags": 0, + "m_nParent": 4, + "m_params": 8 + }, + "VPhysXConstraintParams_t": { + "m_anchor": 4, + "m_axes": 28, + "m_driveDampingSlerp": 232, + "m_driveDampingSwing": 228, + "m_driveDampingTwist": 224, + "m_driveDampingX": 200, + "m_driveDampingY": 204, + "m_driveDampingZ": 208, + "m_driveSpringSlerp": 220, + "m_driveSpringSwing": 216, + "m_driveSpringTwist": 212, + "m_driveSpringX": 188, + "m_driveSpringY": 192, + "m_driveSpringZ": 196, + "m_goalAngularVelocity": 176, + "m_goalOrientation": 160, + "m_goalPosition": 148, + "m_linearLimitDamping": 80, + "m_linearLimitRestitution": 72, + "m_linearLimitSpring": 76, + "m_linearLimitValue": 68, + "m_maxForce": 60, + "m_maxTorque": 64, + "m_nFlags": 3, + "m_nRotateMotion": 2, + "m_nTranslateMotion": 1, + "m_nType": 0, + "m_projectionAngularTolerance": 244, + "m_projectionLinearTolerance": 240, + "m_solverIterationCount": 236, + "m_swing1LimitDamping": 128, + "m_swing1LimitRestitution": 120, + "m_swing1LimitSpring": 124, + "m_swing1LimitValue": 116, + "m_swing2LimitDamping": 144, + "m_swing2LimitRestitution": 136, + "m_swing2LimitSpring": 140, + "m_swing2LimitValue": 132, + "m_twistHighLimitDamping": 112, + "m_twistHighLimitRestitution": 104, + "m_twistHighLimitSpring": 108, + "m_twistHighLimitValue": 100, + "m_twistLowLimitDamping": 96, + "m_twistLowLimitRestitution": 88, + "m_twistLowLimitSpring": 92, + "m_twistLowLimitValue": 84 + }, + "VPhysXJoint_t": { + "m_Frame1": 16, + "m_Frame2": 48, + "m_LinearLimit": 84, + "m_SwingLimit": 116, + "m_TwistLimit": 128, + "m_bEnableAngularMotor": 136, + "m_bEnableCollision": 80, + "m_bEnableLinearLimit": 81, + "m_bEnableLinearMotor": 92, + "m_bEnableSwingLimit": 112, + "m_bEnableTwistLimit": 124, + "m_flAngularDampingRatio": 168, + "m_flAngularFrequency": 164, + "m_flFriction": 172, + "m_flLinearDampingRatio": 160, + "m_flLinearFrequency": 156, + "m_flMaxForce": 108, + "m_flMaxTorque": 152, + "m_nBody1": 2, + "m_nBody2": 4, + "m_nFlags": 6, + "m_nType": 0, + "m_vAngularTargetVelocity": 140, + "m_vLinearTargetVelocity": 96 + }, + "VPhysXRange_t": { + "m_flMax": 4, + "m_flMin": 0 + }, + "VPhysics2ShapeDef_t": { + "m_CollisionAttributeIndices": 96, + "m_capsules": 24, + "m_hulls": 48, + "m_meshes": 72, + "m_spheres": 0 + }, + "WeightList": { + "m_name": 0, + "m_weights": 8 + }, + "WristBone_t": { + "m_boneIndex": 32, + "m_xOffsetTransformMS": 0 + } +} \ No newline at end of file diff --git a/generated/client.dll.hpp b/generated/client.dll.hpp new file mode 100644 index 0000000..40e49ea --- /dev/null +++ b/generated/client.dll.hpp @@ -0,0 +1,4343 @@ +#pragma once + +#include + +namespace CEntityIdentity { + constexpr std::ptrdiff_t m_nameStringableIndex = 0x14; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_designerName = 0x20; + constexpr std::ptrdiff_t m_flags = 0x30; + constexpr std::ptrdiff_t m_worldGroupId = 0x38; + constexpr std::ptrdiff_t m_fDataObjectTypes = 0x3c; + constexpr std::ptrdiff_t m_PathIndex = 0x40; + constexpr std::ptrdiff_t m_pPrev = 0x58; + constexpr std::ptrdiff_t m_pNext = 0x60; + constexpr std::ptrdiff_t m_pPrevByClass = 0x68; + constexpr std::ptrdiff_t m_pNextByClass = 0x70; +} + +namespace CEntityInstance { + constexpr std::ptrdiff_t m_iszPrivateVScripts = 0x8; + constexpr std::ptrdiff_t m_pEntity = 0x10; + constexpr std::ptrdiff_t m_CScriptComponent = 0x28; +} + +namespace CScriptComponent { + constexpr std::ptrdiff_t m_scriptClassName = 0x30; +} + +namespace CBodyComponent { + constexpr std::ptrdiff_t m_pSceneNode = 0x8; + constexpr std::ptrdiff_t __m_pChainEntity = 0x20; +} + +namespace CBodyComponentPoint { + constexpr std::ptrdiff_t m_sceneNode = 0x50; + constexpr std::ptrdiff_t __m_pChainEntity = 0x1a0; +} + +namespace CBodyComponentSkeletonInstance { + constexpr std::ptrdiff_t m_skeletonInstance = 0x50; + constexpr std::ptrdiff_t __m_pChainEntity = 0x440; +} + +namespace CHitboxComponent { + constexpr std::ptrdiff_t m_bvDisabledHitGroups = 0x24; +} + +namespace CLightComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x48; + constexpr std::ptrdiff_t m_Color = 0x85; + constexpr std::ptrdiff_t m_SecondaryColor = 0x89; + constexpr std::ptrdiff_t m_flBrightness = 0x90; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x94; + constexpr std::ptrdiff_t m_flBrightnessMult = 0x98; + constexpr std::ptrdiff_t m_flRange = 0x9c; + constexpr std::ptrdiff_t m_flFalloff = 0xa0; + constexpr std::ptrdiff_t m_flAttenuation0 = 0xa4; + constexpr std::ptrdiff_t m_flAttenuation1 = 0xa8; + constexpr std::ptrdiff_t m_flAttenuation2 = 0xac; + constexpr std::ptrdiff_t m_flTheta = 0xb0; + constexpr std::ptrdiff_t m_flPhi = 0xb4; + constexpr std::ptrdiff_t m_hLightCookie = 0xb8; + constexpr std::ptrdiff_t m_nCascades = 0xc0; + constexpr std::ptrdiff_t m_nCastShadows = 0xc4; + constexpr std::ptrdiff_t m_nShadowWidth = 0xc8; + constexpr std::ptrdiff_t m_nShadowHeight = 0xcc; + constexpr std::ptrdiff_t m_bRenderDiffuse = 0xd0; + constexpr std::ptrdiff_t m_nRenderSpecular = 0xd4; + constexpr std::ptrdiff_t m_bRenderTransmissive = 0xd8; + constexpr std::ptrdiff_t m_flOrthoLightWidth = 0xdc; + constexpr std::ptrdiff_t m_flOrthoLightHeight = 0xe0; + constexpr std::ptrdiff_t m_nStyle = 0xe4; + constexpr std::ptrdiff_t m_Pattern = 0xe8; + constexpr std::ptrdiff_t m_nCascadeRenderStaticObjects = 0xf0; + constexpr std::ptrdiff_t m_flShadowCascadeCrossFade = 0xf4; + constexpr std::ptrdiff_t m_flShadowCascadeDistanceFade = 0xf8; + constexpr std::ptrdiff_t m_flShadowCascadeDistance0 = 0xfc; + constexpr std::ptrdiff_t m_flShadowCascadeDistance1 = 0x100; + constexpr std::ptrdiff_t m_flShadowCascadeDistance2 = 0x104; + constexpr std::ptrdiff_t m_flShadowCascadeDistance3 = 0x108; + constexpr std::ptrdiff_t m_nShadowCascadeResolution0 = 0x10c; + constexpr std::ptrdiff_t m_nShadowCascadeResolution1 = 0x110; + constexpr std::ptrdiff_t m_nShadowCascadeResolution2 = 0x114; + constexpr std::ptrdiff_t m_nShadowCascadeResolution3 = 0x118; + constexpr std::ptrdiff_t m_bUsesBakedShadowing = 0x11c; + constexpr std::ptrdiff_t m_nShadowPriority = 0x120; + constexpr std::ptrdiff_t m_nBakedShadowIndex = 0x124; + constexpr std::ptrdiff_t m_bRenderToCubemaps = 0x128; + constexpr std::ptrdiff_t m_LightGroups = 0x130; + constexpr std::ptrdiff_t m_nDirectLight = 0x138; + constexpr std::ptrdiff_t m_nIndirectLight = 0x13c; + constexpr std::ptrdiff_t m_flFadeMinDist = 0x140; + constexpr std::ptrdiff_t m_flFadeMaxDist = 0x144; + constexpr std::ptrdiff_t m_flShadowFadeMinDist = 0x148; + constexpr std::ptrdiff_t m_flShadowFadeMaxDist = 0x14c; + constexpr std::ptrdiff_t m_bEnabled = 0x150; + constexpr std::ptrdiff_t m_bFlicker = 0x151; + constexpr std::ptrdiff_t m_bPrecomputedFieldsValid = 0x152; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMins = 0x154; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMaxs = 0x160; + constexpr std::ptrdiff_t m_vPrecomputedOBBOrigin = 0x16c; + constexpr std::ptrdiff_t m_vPrecomputedOBBAngles = 0x178; + constexpr std::ptrdiff_t m_vPrecomputedOBBExtent = 0x184; + constexpr std::ptrdiff_t m_flPrecomputedMaxRange = 0x190; + constexpr std::ptrdiff_t m_nFogLightingMode = 0x194; + constexpr std::ptrdiff_t m_flFogContributionStength = 0x198; + constexpr std::ptrdiff_t m_flNearClipPlane = 0x19c; + constexpr std::ptrdiff_t m_SkyColor = 0x1a0; + constexpr std::ptrdiff_t m_flSkyIntensity = 0x1a4; + constexpr std::ptrdiff_t m_SkyAmbientBounce = 0x1a8; + constexpr std::ptrdiff_t m_bUseSecondaryColor = 0x1ac; + constexpr std::ptrdiff_t m_bMixedShadows = 0x1ad; + constexpr std::ptrdiff_t m_flLightStyleStartTime = 0x1b0; + constexpr std::ptrdiff_t m_flCapsuleLength = 0x1b4; + constexpr std::ptrdiff_t m_flMinRoughness = 0x1b8; +} + +namespace CRenderComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x10; + constexpr std::ptrdiff_t m_bIsRenderingWithViewModels = 0x50; + constexpr std::ptrdiff_t m_nSplitscreenFlags = 0x54; + constexpr std::ptrdiff_t m_bEnableRendering = 0x60; + constexpr std::ptrdiff_t m_bInterpolationReadyToDraw = 0xb0; +} + +namespace CBuoyancyHelper { + constexpr std::ptrdiff_t m_flFluidDensity = 0x18; + constexpr std::ptrdiff_t m_flDisplacementFromObjects = 0x1c; +} + +namespace C_CommandContext { + constexpr std::ptrdiff_t needsprocessing = 0x0; + constexpr std::ptrdiff_t command_number = 0x78; +} + +namespace ViewAngleServerChange_t { + constexpr std::ptrdiff_t nType = 0x30; + constexpr std::ptrdiff_t qAngle = 0x34; + constexpr std::ptrdiff_t nIndex = 0x40; +} + +namespace CPlayer_AutoaimServices { +} + +namespace audioparams_t { + constexpr std::ptrdiff_t localSound = 0x8; + constexpr std::ptrdiff_t soundscapeIndex = 0x68; + constexpr std::ptrdiff_t localBits = 0x6c; + constexpr std::ptrdiff_t soundscapeEntityListIndex = 0x70; + constexpr std::ptrdiff_t soundEventHash = 0x74; +} + +namespace CPlayer_CameraServices { + constexpr std::ptrdiff_t m_vecCsViewPunchAngle = 0x40; + constexpr std::ptrdiff_t m_nCsViewPunchAngleTick = 0x4c; + constexpr std::ptrdiff_t m_flCsViewPunchAngleTickRatio = 0x50; + constexpr std::ptrdiff_t m_PlayerFog = 0x58; + constexpr std::ptrdiff_t m_hColorCorrectionCtrl = 0x98; + constexpr std::ptrdiff_t m_hViewEntity = 0x9c; + constexpr std::ptrdiff_t m_hTonemapController = 0xa0; + constexpr std::ptrdiff_t m_audio = 0xa8; + constexpr std::ptrdiff_t m_PostProcessingVolumes = 0x120; + constexpr std::ptrdiff_t m_flOldPlayerZ = 0x138; + constexpr std::ptrdiff_t m_flOldPlayerViewOffsetZ = 0x13c; + constexpr std::ptrdiff_t m_CurrentFog = 0x140; + constexpr std::ptrdiff_t m_hOldFogController = 0x1a8; + constexpr std::ptrdiff_t m_bOverrideFogColor = 0x1ac; + constexpr std::ptrdiff_t m_OverrideFogColor = 0x1b1; + constexpr std::ptrdiff_t m_bOverrideFogStartEnd = 0x1c5; + constexpr std::ptrdiff_t m_fOverrideFogStart = 0x1cc; + constexpr std::ptrdiff_t m_fOverrideFogEnd = 0x1e0; + constexpr std::ptrdiff_t m_hActivePostProcessingVolume = 0x1f4; + constexpr std::ptrdiff_t m_angDemoViewAngles = 0x1f8; +} + +namespace CPlayer_FlashlightServices { +} + +namespace CPlayer_ItemServices { +} + +namespace CPlayer_MovementServices { + constexpr std::ptrdiff_t m_nImpulse = 0x40; + constexpr std::ptrdiff_t m_nButtons = 0x48; + constexpr std::ptrdiff_t m_nQueuedButtonDownMask = 0x68; + constexpr std::ptrdiff_t m_nQueuedButtonChangeMask = 0x70; + constexpr std::ptrdiff_t m_nButtonDoublePressed = 0x78; + constexpr std::ptrdiff_t m_pButtonPressedCmdNumber = 0x80; + constexpr std::ptrdiff_t m_nLastCommandNumberProcessed = 0x180; + constexpr std::ptrdiff_t m_nToggleButtonDownMask = 0x188; + constexpr std::ptrdiff_t m_flMaxspeed = 0x190; + constexpr std::ptrdiff_t m_arrForceSubtickMoveWhen = 0x194; + constexpr std::ptrdiff_t m_flForwardMove = 0x1a4; + constexpr std::ptrdiff_t m_flLeftMove = 0x1a8; + constexpr std::ptrdiff_t m_flUpMove = 0x1ac; + constexpr std::ptrdiff_t m_vecLastMovementImpulses = 0x1b0; + constexpr std::ptrdiff_t m_vecOldViewAngles = 0x1bc; +} + +namespace CPlayer_MovementServices_Humanoid { + constexpr std::ptrdiff_t m_flStepSoundTime = 0x1d0; + constexpr std::ptrdiff_t m_flFallVelocity = 0x1d4; + constexpr std::ptrdiff_t m_bInCrouch = 0x1d8; + constexpr std::ptrdiff_t m_nCrouchState = 0x1dc; + constexpr std::ptrdiff_t m_flCrouchTransitionStartTime = 0x1e0; + constexpr std::ptrdiff_t m_bDucked = 0x1e4; + constexpr std::ptrdiff_t m_bDucking = 0x1e5; + constexpr std::ptrdiff_t m_bInDuckJump = 0x1e6; + constexpr std::ptrdiff_t m_groundNormal = 0x1e8; + constexpr std::ptrdiff_t m_flSurfaceFriction = 0x1f4; + constexpr std::ptrdiff_t m_surfaceProps = 0x1f8; + constexpr std::ptrdiff_t m_nStepside = 0x208; +} + +namespace CPlayer_ObserverServices { + constexpr std::ptrdiff_t m_iObserverMode = 0x40; + constexpr std::ptrdiff_t m_hObserverTarget = 0x44; + constexpr std::ptrdiff_t m_iObserverLastMode = 0x48; + constexpr std::ptrdiff_t m_bForcedObserverMode = 0x4c; + constexpr std::ptrdiff_t m_flObserverChaseDistance = 0x50; + constexpr std::ptrdiff_t m_flObserverChaseDistanceCalcTime = 0x54; +} + +namespace CPlayer_UseServices { +} + +namespace CPlayer_WaterServices { +} + +namespace CPlayer_WeaponServices { + constexpr std::ptrdiff_t m_bAllowSwitchToNoWeapon = 0x40; + constexpr std::ptrdiff_t m_hMyWeapons = 0x48; + constexpr std::ptrdiff_t m_hActiveWeapon = 0x60; + constexpr std::ptrdiff_t m_hLastWeapon = 0x64; + constexpr std::ptrdiff_t m_iAmmo = 0x68; +} + +namespace CBodyComponentBaseAnimGraph { + constexpr std::ptrdiff_t m_animationController = 0x470; + constexpr std::ptrdiff_t __m_pChainEntity = 0x1810; +} + +namespace EntityRenderAttribute_t { + constexpr std::ptrdiff_t m_ID = 0x30; + constexpr std::ptrdiff_t m_Values = 0x34; +} + +namespace ActiveModelConfig_t { + constexpr std::ptrdiff_t m_Handle = 0x28; + constexpr std::ptrdiff_t m_Name = 0x30; + constexpr std::ptrdiff_t m_AssociatedEntities = 0x38; + constexpr std::ptrdiff_t m_AssociatedEntityNames = 0x50; +} + +namespace CBodyComponentBaseModelEntity { + constexpr std::ptrdiff_t __m_pChainEntity = 0x470; +} + +namespace CGameSceneNodeHandle { + constexpr std::ptrdiff_t m_hOwner = 0x8; + constexpr std::ptrdiff_t m_name = 0xc; +} + +namespace CGameSceneNode { + constexpr std::ptrdiff_t m_nodeToWorld = 0x10; + constexpr std::ptrdiff_t m_pOwner = 0x30; + constexpr std::ptrdiff_t m_pParent = 0x38; + constexpr std::ptrdiff_t m_pChild = 0x40; + constexpr std::ptrdiff_t m_pNextSibling = 0x48; + constexpr std::ptrdiff_t m_hParent = 0x70; + constexpr std::ptrdiff_t m_vecOrigin = 0x80; + constexpr std::ptrdiff_t m_angRotation = 0xb8; + constexpr std::ptrdiff_t m_flScale = 0xc4; + constexpr std::ptrdiff_t m_vecAbsOrigin = 0xc8; + constexpr std::ptrdiff_t m_angAbsRotation = 0xd4; + constexpr std::ptrdiff_t m_flAbsScale = 0xe0; + constexpr std::ptrdiff_t m_nParentAttachmentOrBone = 0xe4; + constexpr std::ptrdiff_t m_bDebugAbsOriginChanges = 0xe6; + constexpr std::ptrdiff_t m_bDormant = 0xe7; + constexpr std::ptrdiff_t m_bForceParentToBeNetworked = 0xe8; + constexpr std::ptrdiff_t m_bDirtyHierarchy = 0x0; + constexpr std::ptrdiff_t m_bDirtyBoneMergeInfo = 0x0; + constexpr std::ptrdiff_t m_bNetworkedPositionChanged = 0x0; + constexpr std::ptrdiff_t m_bNetworkedAnglesChanged = 0x0; + constexpr std::ptrdiff_t m_bNetworkedScaleChanged = 0x0; + constexpr std::ptrdiff_t m_bWillBeCallingPostDataUpdate = 0x0; + constexpr std::ptrdiff_t m_bNotifyBoneTransformsChanged = 0x0; + constexpr std::ptrdiff_t m_bBoneMergeFlex = 0x0; + constexpr std::ptrdiff_t m_nLatchAbsOrigin = 0x0; + constexpr std::ptrdiff_t m_bDirtyBoneMergeBoneToRoot = 0x0; + constexpr std::ptrdiff_t m_nHierarchicalDepth = 0xeb; + constexpr std::ptrdiff_t m_nHierarchyType = 0xec; + constexpr std::ptrdiff_t m_nDoNotSetAnimTimeInInvalidatePhysicsCount = 0xed; + constexpr std::ptrdiff_t m_name = 0xf0; + constexpr std::ptrdiff_t m_hierarchyAttachName = 0x130; + constexpr std::ptrdiff_t m_flZOffset = 0x134; + constexpr std::ptrdiff_t m_vRenderOrigin = 0x138; +} + +namespace CNetworkedSequenceOperation { + constexpr std::ptrdiff_t m_hSequence = 0x8; + constexpr std::ptrdiff_t m_flPrevCycle = 0xc; + constexpr std::ptrdiff_t m_flCycle = 0x10; + constexpr std::ptrdiff_t m_flWeight = 0x14; + constexpr std::ptrdiff_t m_bSequenceChangeNetworked = 0x1c; + constexpr std::ptrdiff_t m_bDiscontinuity = 0x1d; + constexpr std::ptrdiff_t m_flPrevCycleFromDiscontinuity = 0x20; + constexpr std::ptrdiff_t m_flPrevCycleForAnimEventDetection = 0x24; +} + +namespace CModelState { + constexpr std::ptrdiff_t m_hModel = 0xa0; + constexpr std::ptrdiff_t m_ModelName = 0xa8; + constexpr std::ptrdiff_t m_bClientClothCreationSuppressed = 0xe8; + constexpr std::ptrdiff_t m_MeshGroupMask = 0x180; + constexpr std::ptrdiff_t m_nIdealMotionType = 0x222; + constexpr std::ptrdiff_t m_nForceLOD = 0x223; + constexpr std::ptrdiff_t m_nClothUpdateFlags = 0x224; +} + +namespace CSkeletonInstance { + constexpr std::ptrdiff_t m_modelState = 0x160; + constexpr std::ptrdiff_t m_bIsAnimationEnabled = 0x390; + constexpr std::ptrdiff_t m_bUseParentRenderBounds = 0x391; + constexpr std::ptrdiff_t m_bDisableSolidCollisionsForHierarchy = 0x392; + constexpr std::ptrdiff_t m_bDirtyMotionType = 0x0; + constexpr std::ptrdiff_t m_bIsGeneratingLatchedParentSpaceState = 0x0; + constexpr std::ptrdiff_t m_materialGroup = 0x394; + constexpr std::ptrdiff_t m_nHitboxSet = 0x398; +} + +namespace IntervalTimer { + constexpr std::ptrdiff_t m_timestamp = 0x8; + constexpr std::ptrdiff_t m_nWorldGroupId = 0xc; +} + +namespace CountdownTimer { + constexpr std::ptrdiff_t m_duration = 0x8; + constexpr std::ptrdiff_t m_timestamp = 0xc; + constexpr std::ptrdiff_t m_timescale = 0x10; + constexpr std::ptrdiff_t m_nWorldGroupId = 0x14; +} + +namespace EngineCountdownTimer { + constexpr std::ptrdiff_t m_duration = 0x8; + constexpr std::ptrdiff_t m_timestamp = 0xc; + constexpr std::ptrdiff_t m_timescale = 0x10; +} + +namespace CTimeline { + constexpr std::ptrdiff_t m_flValues = 0x10; + constexpr std::ptrdiff_t m_nValueCounts = 0x110; + constexpr std::ptrdiff_t m_nBucketCount = 0x210; + constexpr std::ptrdiff_t m_flInterval = 0x214; + constexpr std::ptrdiff_t m_flFinalValue = 0x218; + constexpr std::ptrdiff_t m_nCompressionType = 0x21c; + constexpr std::ptrdiff_t m_bStopped = 0x220; +} + +namespace CAnimGraphNetworkedVariables { + constexpr std::ptrdiff_t m_PredNetBoolVariables = 0x8; + constexpr std::ptrdiff_t m_PredNetByteVariables = 0x20; + constexpr std::ptrdiff_t m_PredNetUInt16Variables = 0x38; + constexpr std::ptrdiff_t m_PredNetIntVariables = 0x50; + constexpr std::ptrdiff_t m_PredNetUInt32Variables = 0x68; + constexpr std::ptrdiff_t m_PredNetUInt64Variables = 0x80; + constexpr std::ptrdiff_t m_PredNetFloatVariables = 0x98; + constexpr std::ptrdiff_t m_PredNetVectorVariables = 0xb0; + constexpr std::ptrdiff_t m_PredNetQuaternionVariables = 0xc8; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetBoolVariables = 0xe0; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetByteVariables = 0xf8; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt16Variables = 0x110; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetIntVariables = 0x128; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt32Variables = 0x140; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt64Variables = 0x158; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetFloatVariables = 0x170; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetVectorVariables = 0x188; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetQuaternionVariables = 0x1a0; + constexpr std::ptrdiff_t m_nBoolVariablesCount = 0x1b8; + constexpr std::ptrdiff_t m_nOwnerOnlyBoolVariablesCount = 0x1bc; + constexpr std::ptrdiff_t m_nRandomSeedOffset = 0x1c0; + constexpr std::ptrdiff_t m_flLastTeleportTime = 0x1c4; +} + +namespace C_BaseEntity { + constexpr std::ptrdiff_t m_CBodyComponent = 0x30; + constexpr std::ptrdiff_t m_NetworkTransmitComponent = 0x38; + constexpr std::ptrdiff_t m_nLastThinkTick = 0x308; + constexpr std::ptrdiff_t m_pGameSceneNode = 0x310; + constexpr std::ptrdiff_t m_pRenderComponent = 0x318; + constexpr std::ptrdiff_t m_pCollision = 0x320; + constexpr std::ptrdiff_t m_iMaxHealth = 0x328; + constexpr std::ptrdiff_t m_iHealth = 0x32c; + constexpr std::ptrdiff_t m_lifeState = 0x330; + constexpr std::ptrdiff_t m_bTakesDamage = 0x331; + constexpr std::ptrdiff_t m_nTakeDamageFlags = 0x334; + constexpr std::ptrdiff_t m_ubInterpolationFrame = 0x338; + constexpr std::ptrdiff_t m_hSceneObjectController = 0x33c; + constexpr std::ptrdiff_t m_nNoInterpolationTick = 0x340; + constexpr std::ptrdiff_t m_nVisibilityNoInterpolationTick = 0x344; + constexpr std::ptrdiff_t m_flProxyRandomValue = 0x348; + constexpr std::ptrdiff_t m_iEFlags = 0x34c; + constexpr std::ptrdiff_t m_nWaterType = 0x350; + constexpr std::ptrdiff_t m_bInterpolateEvenWithNoModel = 0x351; + constexpr std::ptrdiff_t m_bPredictionEligible = 0x352; + constexpr std::ptrdiff_t m_bApplyLayerMatchIDToModel = 0x353; + constexpr std::ptrdiff_t m_tokLayerMatchID = 0x354; + constexpr std::ptrdiff_t m_nSubclassID = 0x358; + constexpr std::ptrdiff_t m_nSimulationTick = 0x368; + constexpr std::ptrdiff_t m_iCurrentThinkContext = 0x36c; + constexpr std::ptrdiff_t m_aThinkFunctions = 0x370; + constexpr std::ptrdiff_t m_flAnimTime = 0x388; + constexpr std::ptrdiff_t m_flSimulationTime = 0x38c; + constexpr std::ptrdiff_t m_nSceneObjectOverrideFlags = 0x390; + constexpr std::ptrdiff_t m_bHasSuccessfullyInterpolated = 0x391; + constexpr std::ptrdiff_t m_bHasAddedVarsToInterpolation = 0x392; + constexpr std::ptrdiff_t m_bRenderEvenWhenNotSuccessfullyInterpolated = 0x393; + constexpr std::ptrdiff_t m_nInterpolationLatchDirtyFlags = 0x394; + constexpr std::ptrdiff_t m_ListEntry = 0x39c; + constexpr std::ptrdiff_t m_flCreateTime = 0x3b4; + constexpr std::ptrdiff_t m_flSpeed = 0x3b8; + constexpr std::ptrdiff_t m_EntClientFlags = 0x3bc; + constexpr std::ptrdiff_t m_bClientSideRagdoll = 0x3be; + constexpr std::ptrdiff_t m_iTeamNum = 0x3bf; + constexpr std::ptrdiff_t m_spawnflags = 0x3c0; + constexpr std::ptrdiff_t m_nNextThinkTick = 0x3c4; + constexpr std::ptrdiff_t m_fFlags = 0x3c8; + constexpr std::ptrdiff_t m_vecAbsVelocity = 0x3cc; + constexpr std::ptrdiff_t m_vecVelocity = 0x3d8; + constexpr std::ptrdiff_t m_vecBaseVelocity = 0x408; + constexpr std::ptrdiff_t m_hEffectEntity = 0x414; + constexpr std::ptrdiff_t m_hOwnerEntity = 0x418; + constexpr std::ptrdiff_t m_MoveCollide = 0x41c; + constexpr std::ptrdiff_t m_MoveType = 0x41d; + constexpr std::ptrdiff_t m_flWaterLevel = 0x420; + constexpr std::ptrdiff_t m_fEffects = 0x424; + constexpr std::ptrdiff_t m_hGroundEntity = 0x428; + constexpr std::ptrdiff_t m_flFriction = 0x42c; + constexpr std::ptrdiff_t m_flElasticity = 0x430; + constexpr std::ptrdiff_t m_flGravityScale = 0x434; + constexpr std::ptrdiff_t m_flTimeScale = 0x438; + constexpr std::ptrdiff_t m_bSimulatedEveryTick = 0x43c; + constexpr std::ptrdiff_t m_bAnimatedEveryTick = 0x43d; + constexpr std::ptrdiff_t m_flNavIgnoreUntilTime = 0x440; + constexpr std::ptrdiff_t m_hThink = 0x444; + constexpr std::ptrdiff_t m_fBBoxVisFlags = 0x450; + constexpr std::ptrdiff_t m_bPredictable = 0x451; + constexpr std::ptrdiff_t m_bRenderWithViewModels = 0x452; + constexpr std::ptrdiff_t m_nSplitUserPlayerPredictionSlot = 0x454; + constexpr std::ptrdiff_t m_nFirstPredictableCommand = 0x458; + constexpr std::ptrdiff_t m_nLastPredictableCommand = 0x45c; + constexpr std::ptrdiff_t m_hOldMoveParent = 0x460; + constexpr std::ptrdiff_t m_Particles = 0x468; + constexpr std::ptrdiff_t m_vecPredictedScriptFloats = 0x490; + constexpr std::ptrdiff_t m_vecPredictedScriptFloatIDs = 0x4a8; + constexpr std::ptrdiff_t m_nNextScriptVarRecordID = 0x4d8; + constexpr std::ptrdiff_t m_vecAngVelocity = 0x4e8; + constexpr std::ptrdiff_t m_DataChangeEventRef = 0x4f4; + constexpr std::ptrdiff_t m_dependencies = 0x4f8; + constexpr std::ptrdiff_t m_nCreationTick = 0x510; + constexpr std::ptrdiff_t m_bAnimTimeChanged = 0x529; + constexpr std::ptrdiff_t m_bSimulationTimeChanged = 0x52a; + constexpr std::ptrdiff_t m_sUniqueHammerID = 0x538; +} + +namespace CLogicalEntity { +} + +namespace C_BaseFlex::Emphasized_Phoneme { + constexpr std::ptrdiff_t m_sClassName = 0x0; + constexpr std::ptrdiff_t m_flAmount = 0x18; + constexpr std::ptrdiff_t m_bRequired = 0x1c; + constexpr std::ptrdiff_t m_bBasechecked = 0x1d; + constexpr std::ptrdiff_t m_bValid = 0x1e; +} + +namespace C_ColorCorrection { + constexpr std::ptrdiff_t m_vecOrigin = 0x540; + constexpr std::ptrdiff_t m_MinFalloff = 0x54c; + constexpr std::ptrdiff_t m_MaxFalloff = 0x550; + constexpr std::ptrdiff_t m_flFadeInDuration = 0x554; + constexpr std::ptrdiff_t m_flFadeOutDuration = 0x558; + constexpr std::ptrdiff_t m_flMaxWeight = 0x55c; + constexpr std::ptrdiff_t m_flCurWeight = 0x560; + constexpr std::ptrdiff_t m_netlookupFilename = 0x564; + constexpr std::ptrdiff_t m_bEnabled = 0x764; + constexpr std::ptrdiff_t m_bMaster = 0x765; + constexpr std::ptrdiff_t m_bClientSide = 0x766; + constexpr std::ptrdiff_t m_bExclusive = 0x767; + constexpr std::ptrdiff_t m_bEnabledOnClient = 0x768; + constexpr std::ptrdiff_t m_flCurWeightOnClient = 0x76c; + constexpr std::ptrdiff_t m_bFadingIn = 0x770; + constexpr std::ptrdiff_t m_flFadeStartWeight = 0x774; + constexpr std::ptrdiff_t m_flFadeStartTime = 0x778; + constexpr std::ptrdiff_t m_flFadeDuration = 0x77c; +} + +namespace C_EnvWindClientside { + constexpr std::ptrdiff_t m_EnvWindShared = 0x540; +} + +namespace C_EntityFlame { + constexpr std::ptrdiff_t m_hEntAttached = 0x540; + constexpr std::ptrdiff_t m_hOldAttached = 0x568; + constexpr std::ptrdiff_t m_bCheapEffect = 0x56c; +} + +namespace CProjectedTextureBase { + constexpr std::ptrdiff_t m_hTargetEntity = 0xc; + constexpr std::ptrdiff_t m_bState = 0x10; + constexpr std::ptrdiff_t m_bAlwaysUpdate = 0x11; + constexpr std::ptrdiff_t m_flLightFOV = 0x14; + constexpr std::ptrdiff_t m_bEnableShadows = 0x18; + constexpr std::ptrdiff_t m_bSimpleProjection = 0x19; + constexpr std::ptrdiff_t m_bLightOnlyTarget = 0x1a; + constexpr std::ptrdiff_t m_bLightWorld = 0x1b; + constexpr std::ptrdiff_t m_bCameraSpace = 0x1c; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x20; + constexpr std::ptrdiff_t m_LightColor = 0x24; + constexpr std::ptrdiff_t m_flIntensity = 0x28; + constexpr std::ptrdiff_t m_flLinearAttenuation = 0x2c; + constexpr std::ptrdiff_t m_flQuadraticAttenuation = 0x30; + constexpr std::ptrdiff_t m_bVolumetric = 0x34; + constexpr std::ptrdiff_t m_flVolumetricIntensity = 0x38; + constexpr std::ptrdiff_t m_flNoiseStrength = 0x3c; + constexpr std::ptrdiff_t m_flFlashlightTime = 0x40; + constexpr std::ptrdiff_t m_nNumPlanes = 0x44; + constexpr std::ptrdiff_t m_flPlaneOffset = 0x48; + constexpr std::ptrdiff_t m_flColorTransitionTime = 0x4c; + constexpr std::ptrdiff_t m_flAmbient = 0x50; + constexpr std::ptrdiff_t m_SpotlightTextureName = 0x54; + constexpr std::ptrdiff_t m_nSpotlightTextureFrame = 0x254; + constexpr std::ptrdiff_t m_nShadowQuality = 0x258; + constexpr std::ptrdiff_t m_flNearZ = 0x25c; + constexpr std::ptrdiff_t m_flFarZ = 0x260; + constexpr std::ptrdiff_t m_flProjectionSize = 0x264; + constexpr std::ptrdiff_t m_flRotation = 0x268; + constexpr std::ptrdiff_t m_bFlipHorizontal = 0x26c; +} + +namespace C_BaseFire { + constexpr std::ptrdiff_t m_flScale = 0x540; + constexpr std::ptrdiff_t m_flStartScale = 0x544; + constexpr std::ptrdiff_t m_flScaleTime = 0x548; + constexpr std::ptrdiff_t m_nFlags = 0x54c; +} + +namespace C_FireSmoke { + constexpr std::ptrdiff_t m_nFlameModelIndex = 0x550; + constexpr std::ptrdiff_t m_nFlameFromAboveModelIndex = 0x554; + constexpr std::ptrdiff_t m_flScaleRegister = 0x558; + constexpr std::ptrdiff_t m_flScaleStart = 0x55c; + constexpr std::ptrdiff_t m_flScaleEnd = 0x560; + constexpr std::ptrdiff_t m_flScaleTimeStart = 0x564; + constexpr std::ptrdiff_t m_flScaleTimeEnd = 0x568; + constexpr std::ptrdiff_t m_flChildFlameSpread = 0x56c; + constexpr std::ptrdiff_t m_flClipPerc = 0x580; + constexpr std::ptrdiff_t m_bClipTested = 0x584; + constexpr std::ptrdiff_t m_bFadingOut = 0x585; + constexpr std::ptrdiff_t m_tParticleSpawn = 0x588; + constexpr std::ptrdiff_t m_pFireOverlay = 0x590; +} + +namespace C_RopeKeyframe::CPhysicsDelegate { + constexpr std::ptrdiff_t m_pKeyframe = 0x8; +} + +namespace C_SceneEntity::QueuedEvents_t { + constexpr std::ptrdiff_t starttime = 0x0; +} + +namespace C_TintController { +} + +namespace CFlashlightEffect { + constexpr std::ptrdiff_t m_bIsOn = 0x10; + constexpr std::ptrdiff_t m_bMuzzleFlashEnabled = 0x20; + constexpr std::ptrdiff_t m_flMuzzleFlashBrightness = 0x24; + constexpr std::ptrdiff_t m_quatMuzzleFlashOrientation = 0x30; + constexpr std::ptrdiff_t m_vecMuzzleFlashOrigin = 0x40; + constexpr std::ptrdiff_t m_flFov = 0x4c; + constexpr std::ptrdiff_t m_flFarZ = 0x50; + constexpr std::ptrdiff_t m_flLinearAtten = 0x54; + constexpr std::ptrdiff_t m_bCastsShadows = 0x58; + constexpr std::ptrdiff_t m_flCurrentPullBackDist = 0x5c; + constexpr std::ptrdiff_t m_FlashlightTexture = 0x60; + constexpr std::ptrdiff_t m_MuzzleFlashTexture = 0x68; + constexpr std::ptrdiff_t m_textureName = 0x70; +} + +namespace CInterpolatedValue { + constexpr std::ptrdiff_t m_flStartTime = 0x0; + constexpr std::ptrdiff_t m_flEndTime = 0x4; + constexpr std::ptrdiff_t m_flStartValue = 0x8; + constexpr std::ptrdiff_t m_flEndValue = 0xc; + constexpr std::ptrdiff_t m_nInterpType = 0x10; +} + +namespace CGlowSprite { + constexpr std::ptrdiff_t m_vColor = 0x0; + constexpr std::ptrdiff_t m_flHorzSize = 0xc; + constexpr std::ptrdiff_t m_flVertSize = 0x10; + constexpr std::ptrdiff_t m_hMaterial = 0x18; +} + +namespace CGlowOverlay { + constexpr std::ptrdiff_t m_vPos = 0x8; + constexpr std::ptrdiff_t m_bDirectional = 0x14; + constexpr std::ptrdiff_t m_vDirection = 0x18; + constexpr std::ptrdiff_t m_bInSky = 0x24; + constexpr std::ptrdiff_t m_skyObstructionScale = 0x28; + constexpr std::ptrdiff_t m_Sprites = 0x30; + constexpr std::ptrdiff_t m_nSprites = 0xb0; + constexpr std::ptrdiff_t m_flProxyRadius = 0xb4; + constexpr std::ptrdiff_t m_flHDRColorScale = 0xb8; + constexpr std::ptrdiff_t m_flGlowObstructionScale = 0xbc; + constexpr std::ptrdiff_t m_bCacheGlowObstruction = 0xc0; + constexpr std::ptrdiff_t m_bCacheSkyObstruction = 0xc1; + constexpr std::ptrdiff_t m_bActivated = 0xc2; + constexpr std::ptrdiff_t m_ListIndex = 0xc4; + constexpr std::ptrdiff_t m_queryHandle = 0xc8; +} + +namespace IClientAlphaProperty { +} + +namespace CSkyboxReference { + constexpr std::ptrdiff_t m_worldGroupId = 0x540; + constexpr std::ptrdiff_t m_hSkyCamera = 0x544; +} + +namespace C_SkyCamera { + constexpr std::ptrdiff_t m_skyboxData = 0x540; + constexpr std::ptrdiff_t m_skyboxSlotToken = 0x5d0; + constexpr std::ptrdiff_t m_bUseAngles = 0x5d4; + constexpr std::ptrdiff_t m_pNext = 0x5d8; +} + +namespace TimedEvent { + constexpr std::ptrdiff_t m_TimeBetweenEvents = 0x0; + constexpr std::ptrdiff_t m_fNextEvent = 0x4; +} + +namespace VPhysicsCollisionAttribute_t { + constexpr std::ptrdiff_t m_nInteractsAs = 0x8; + constexpr std::ptrdiff_t m_nInteractsWith = 0x10; + constexpr std::ptrdiff_t m_nInteractsExclude = 0x18; + constexpr std::ptrdiff_t m_nEntityId = 0x20; + constexpr std::ptrdiff_t m_nOwnerId = 0x24; + constexpr std::ptrdiff_t m_nHierarchyId = 0x28; + constexpr std::ptrdiff_t m_nCollisionGroup = 0x2a; + constexpr std::ptrdiff_t m_nCollisionFunctionMask = 0x2b; +} + +namespace CCollisionProperty { + constexpr std::ptrdiff_t m_collisionAttribute = 0x10; + constexpr std::ptrdiff_t m_vecMins = 0x40; + constexpr std::ptrdiff_t m_vecMaxs = 0x4c; + constexpr std::ptrdiff_t m_usSolidFlags = 0x5a; + constexpr std::ptrdiff_t m_nSolidType = 0x5b; + constexpr std::ptrdiff_t m_triggerBloat = 0x5c; + constexpr std::ptrdiff_t m_nSurroundType = 0x5d; + constexpr std::ptrdiff_t m_CollisionGroup = 0x5e; + constexpr std::ptrdiff_t m_nEnablePhysics = 0x5f; + constexpr std::ptrdiff_t m_flBoundingRadius = 0x60; + constexpr std::ptrdiff_t m_vecSpecifiedSurroundingMins = 0x64; + constexpr std::ptrdiff_t m_vecSpecifiedSurroundingMaxs = 0x70; + constexpr std::ptrdiff_t m_vecSurroundingMaxs = 0x7c; + constexpr std::ptrdiff_t m_vecSurroundingMins = 0x88; + constexpr std::ptrdiff_t m_vCapsuleCenter1 = 0x94; + constexpr std::ptrdiff_t m_vCapsuleCenter2 = 0xa0; + constexpr std::ptrdiff_t m_flCapsuleRadius = 0xac; +} + +namespace CDecalInfo { + constexpr std::ptrdiff_t m_flAnimationScale = 0x0; + constexpr std::ptrdiff_t m_flAnimationLifeSpan = 0x4; + constexpr std::ptrdiff_t m_flPlaceTime = 0x8; + constexpr std::ptrdiff_t m_flFadeStartTime = 0xc; + constexpr std::ptrdiff_t m_flFadeDuration = 0x10; + constexpr std::ptrdiff_t m_nVBSlot = 0x14; + constexpr std::ptrdiff_t m_nBoneIndex = 0x18; + constexpr std::ptrdiff_t m_pNext = 0x28; + constexpr std::ptrdiff_t m_pPrev = 0x30; + constexpr std::ptrdiff_t m_nDecalMaterialIndex = 0x90; +} + +namespace CEffectData { + constexpr std::ptrdiff_t m_vOrigin = 0x8; + constexpr std::ptrdiff_t m_vStart = 0x14; + constexpr std::ptrdiff_t m_vNormal = 0x20; + constexpr std::ptrdiff_t m_vAngles = 0x2c; + constexpr std::ptrdiff_t m_hEntity = 0x38; + constexpr std::ptrdiff_t m_hOtherEntity = 0x3c; + constexpr std::ptrdiff_t m_flScale = 0x40; + constexpr std::ptrdiff_t m_flMagnitude = 0x44; + constexpr std::ptrdiff_t m_flRadius = 0x48; + constexpr std::ptrdiff_t m_nSurfaceProp = 0x4c; + constexpr std::ptrdiff_t m_nEffectIndex = 0x50; + constexpr std::ptrdiff_t m_nDamageType = 0x58; + constexpr std::ptrdiff_t m_nPenetrate = 0x5c; + constexpr std::ptrdiff_t m_nMaterial = 0x5e; + constexpr std::ptrdiff_t m_nHitBox = 0x60; + constexpr std::ptrdiff_t m_nColor = 0x62; + constexpr std::ptrdiff_t m_fFlags = 0x63; + constexpr std::ptrdiff_t m_nAttachmentIndex = 0x64; + constexpr std::ptrdiff_t m_nAttachmentName = 0x68; + constexpr std::ptrdiff_t m_iEffectName = 0x6c; + constexpr std::ptrdiff_t m_nExplosionType = 0x6e; +} + +namespace C_EnvDetailController { + constexpr std::ptrdiff_t m_flFadeStartDist = 0x540; + constexpr std::ptrdiff_t m_flFadeEndDist = 0x544; +} + +namespace C_EnvWindShared { + constexpr std::ptrdiff_t m_flStartTime = 0x8; + constexpr std::ptrdiff_t m_iWindSeed = 0xc; + constexpr std::ptrdiff_t m_iMinWind = 0x10; + constexpr std::ptrdiff_t m_iMaxWind = 0x12; + constexpr std::ptrdiff_t m_windRadius = 0x14; + constexpr std::ptrdiff_t m_iMinGust = 0x18; + constexpr std::ptrdiff_t m_iMaxGust = 0x1a; + constexpr std::ptrdiff_t m_flMinGustDelay = 0x1c; + constexpr std::ptrdiff_t m_flMaxGustDelay = 0x20; + constexpr std::ptrdiff_t m_flGustDuration = 0x24; + constexpr std::ptrdiff_t m_iGustDirChange = 0x28; + constexpr std::ptrdiff_t m_location = 0x2c; + constexpr std::ptrdiff_t m_iszGustSound = 0x38; + constexpr std::ptrdiff_t m_iWindDir = 0x3c; + constexpr std::ptrdiff_t m_flWindSpeed = 0x40; + constexpr std::ptrdiff_t m_currentWindVector = 0x44; + constexpr std::ptrdiff_t m_CurrentSwayVector = 0x50; + constexpr std::ptrdiff_t m_PrevSwayVector = 0x5c; + constexpr std::ptrdiff_t m_iInitialWindDir = 0x68; + constexpr std::ptrdiff_t m_flInitialWindSpeed = 0x6c; + constexpr std::ptrdiff_t m_flVariationTime = 0x70; + constexpr std::ptrdiff_t m_flSwayTime = 0x74; + constexpr std::ptrdiff_t m_flSimTime = 0x78; + constexpr std::ptrdiff_t m_flSwitchTime = 0x7c; + constexpr std::ptrdiff_t m_flAveWindSpeed = 0x80; + constexpr std::ptrdiff_t m_bGusting = 0x84; + constexpr std::ptrdiff_t m_flWindAngleVariation = 0x88; + constexpr std::ptrdiff_t m_flWindSpeedVariation = 0x8c; + constexpr std::ptrdiff_t m_iEntIndex = 0x90; +} + +namespace C_EnvWindShared::WindAveEvent_t { + constexpr std::ptrdiff_t m_flStartWindSpeed = 0x0; + constexpr std::ptrdiff_t m_flAveWindSpeed = 0x4; +} + +namespace C_EnvWindShared::WindVariationEvent_t { + constexpr std::ptrdiff_t m_flWindAngleVariation = 0x0; + constexpr std::ptrdiff_t m_flWindSpeedVariation = 0x4; +} + +namespace C_InfoLadderDismount { +} + +namespace shard_model_desc_t { + constexpr std::ptrdiff_t m_nModelID = 0x8; + constexpr std::ptrdiff_t m_hMaterial = 0x10; + constexpr std::ptrdiff_t m_solid = 0x18; + constexpr std::ptrdiff_t m_ShatterPanelMode = 0x19; + constexpr std::ptrdiff_t m_vecPanelSize = 0x1c; + constexpr std::ptrdiff_t m_vecStressPositionA = 0x24; + constexpr std::ptrdiff_t m_vecStressPositionB = 0x2c; + constexpr std::ptrdiff_t m_vecPanelVertices = 0x38; + constexpr std::ptrdiff_t m_flGlassHalfThickness = 0x50; + constexpr std::ptrdiff_t m_bHasParent = 0x54; + constexpr std::ptrdiff_t m_bParentFrozen = 0x55; + constexpr std::ptrdiff_t m_SurfacePropStringToken = 0x58; + constexpr std::ptrdiff_t m_LightGroup = 0x5c; +} + +namespace C_GameRulesProxy { +} + +namespace C_GameRules { +} + +namespace CGlowProperty { + constexpr std::ptrdiff_t m_fGlowColor = 0x8; + constexpr std::ptrdiff_t m_iGlowType = 0x30; + constexpr std::ptrdiff_t m_iGlowTeam = 0x34; + constexpr std::ptrdiff_t m_nGlowRange = 0x38; + constexpr std::ptrdiff_t m_nGlowRangeMin = 0x3c; + constexpr std::ptrdiff_t m_glowColorOverride = 0x40; + constexpr std::ptrdiff_t m_bFlashing = 0x44; + constexpr std::ptrdiff_t m_flGlowTime = 0x48; + constexpr std::ptrdiff_t m_flGlowStartTime = 0x4c; + constexpr std::ptrdiff_t m_bEligibleForScreenHighlight = 0x50; + constexpr std::ptrdiff_t m_bGlowing = 0x51; +} + +namespace C_MultiplayRules { +} + +namespace fogparams_t { + constexpr std::ptrdiff_t dirPrimary = 0x8; + constexpr std::ptrdiff_t colorPrimary = 0x14; + constexpr std::ptrdiff_t colorSecondary = 0x18; + constexpr std::ptrdiff_t colorPrimaryLerpTo = 0x1c; + constexpr std::ptrdiff_t colorSecondaryLerpTo = 0x20; + constexpr std::ptrdiff_t start = 0x24; + constexpr std::ptrdiff_t end = 0x28; + constexpr std::ptrdiff_t farz = 0x2c; + constexpr std::ptrdiff_t maxdensity = 0x30; + constexpr std::ptrdiff_t exponent = 0x34; + constexpr std::ptrdiff_t HDRColorScale = 0x38; + constexpr std::ptrdiff_t skyboxFogFactor = 0x3c; + constexpr std::ptrdiff_t skyboxFogFactorLerpTo = 0x40; + constexpr std::ptrdiff_t startLerpTo = 0x44; + constexpr std::ptrdiff_t endLerpTo = 0x48; + constexpr std::ptrdiff_t maxdensityLerpTo = 0x4c; + constexpr std::ptrdiff_t lerptime = 0x50; + constexpr std::ptrdiff_t duration = 0x54; + constexpr std::ptrdiff_t blendtobackground = 0x58; + constexpr std::ptrdiff_t scattering = 0x5c; + constexpr std::ptrdiff_t locallightscale = 0x60; + constexpr std::ptrdiff_t enable = 0x64; + constexpr std::ptrdiff_t blend = 0x65; + constexpr std::ptrdiff_t m_bNoReflectionFog = 0x66; + constexpr std::ptrdiff_t m_bPadding = 0x67; +} + +namespace C_fogplayerparams_t { + constexpr std::ptrdiff_t m_hCtrl = 0x8; + constexpr std::ptrdiff_t m_flTransitionTime = 0xc; + constexpr std::ptrdiff_t m_OldColor = 0x10; + constexpr std::ptrdiff_t m_flOldStart = 0x14; + constexpr std::ptrdiff_t m_flOldEnd = 0x18; + constexpr std::ptrdiff_t m_flOldMaxDensity = 0x1c; + constexpr std::ptrdiff_t m_flOldHDRColorScale = 0x20; + constexpr std::ptrdiff_t m_flOldFarZ = 0x24; + constexpr std::ptrdiff_t m_NewColor = 0x28; + constexpr std::ptrdiff_t m_flNewStart = 0x2c; + constexpr std::ptrdiff_t m_flNewEnd = 0x30; + constexpr std::ptrdiff_t m_flNewMaxDensity = 0x34; + constexpr std::ptrdiff_t m_flNewHDRColorScale = 0x38; + constexpr std::ptrdiff_t m_flNewFarZ = 0x3c; +} + +namespace sky3dparams_t { + constexpr std::ptrdiff_t scale = 0x8; + constexpr std::ptrdiff_t origin = 0xc; + constexpr std::ptrdiff_t bClip3DSkyBoxNearToWorldFar = 0x18; + constexpr std::ptrdiff_t flClip3DSkyBoxNearToWorldFarOffset = 0x1c; + constexpr std::ptrdiff_t fog = 0x20; + constexpr std::ptrdiff_t m_nWorldGroupID = 0x88; +} + +namespace PhysicsRagdollPose_t { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; + constexpr std::ptrdiff_t m_Transforms = 0x30; + constexpr std::ptrdiff_t m_hOwner = 0x48; + constexpr std::ptrdiff_t m_bDirty = 0x68; +} + +namespace C_SingleplayRules { +} + +namespace C_SoundOpvarSetPointBase { + constexpr std::ptrdiff_t m_iszStackName = 0x540; + constexpr std::ptrdiff_t m_iszOperatorName = 0x548; + constexpr std::ptrdiff_t m_iszOpvarName = 0x550; + constexpr std::ptrdiff_t m_iOpvarIndex = 0x558; + constexpr std::ptrdiff_t m_bUseAutoCompare = 0x55c; +} + +namespace C_SoundOpvarSetPointEntity { +} + +namespace C_SoundOpvarSetAABBEntity { +} + +namespace C_SoundOpvarSetOBBEntity { +} + +namespace C_SoundOpvarSetPathCornerEntity { +} + +namespace C_SoundOpvarSetOBBWindEntity { +} + +namespace C_TeamplayRules { +} + +namespace C_TeamRoundTimer { + constexpr std::ptrdiff_t m_bTimerPaused = 0x540; + constexpr std::ptrdiff_t m_flTimeRemaining = 0x544; + constexpr std::ptrdiff_t m_flTimerEndTime = 0x548; + constexpr std::ptrdiff_t m_bIsDisabled = 0x54c; + constexpr std::ptrdiff_t m_bShowInHUD = 0x54d; + constexpr std::ptrdiff_t m_nTimerLength = 0x550; + constexpr std::ptrdiff_t m_nTimerInitialLength = 0x554; + constexpr std::ptrdiff_t m_nTimerMaxLength = 0x558; + constexpr std::ptrdiff_t m_bAutoCountdown = 0x55c; + constexpr std::ptrdiff_t m_nSetupTimeLength = 0x560; + constexpr std::ptrdiff_t m_nState = 0x564; + constexpr std::ptrdiff_t m_bStartPaused = 0x568; + constexpr std::ptrdiff_t m_bInCaptureWatchState = 0x569; + constexpr std::ptrdiff_t m_flTotalTime = 0x56c; + constexpr std::ptrdiff_t m_bStopWatchTimer = 0x570; + constexpr std::ptrdiff_t m_bFireFinished = 0x571; + constexpr std::ptrdiff_t m_bFire5MinRemain = 0x572; + constexpr std::ptrdiff_t m_bFire4MinRemain = 0x573; + constexpr std::ptrdiff_t m_bFire3MinRemain = 0x574; + constexpr std::ptrdiff_t m_bFire2MinRemain = 0x575; + constexpr std::ptrdiff_t m_bFire1MinRemain = 0x576; + constexpr std::ptrdiff_t m_bFire30SecRemain = 0x577; + constexpr std::ptrdiff_t m_bFire10SecRemain = 0x578; + constexpr std::ptrdiff_t m_bFire5SecRemain = 0x579; + constexpr std::ptrdiff_t m_bFire4SecRemain = 0x57a; + constexpr std::ptrdiff_t m_bFire3SecRemain = 0x57b; + constexpr std::ptrdiff_t m_bFire2SecRemain = 0x57c; + constexpr std::ptrdiff_t m_bFire1SecRemain = 0x57d; + constexpr std::ptrdiff_t m_nOldTimerLength = 0x580; + constexpr std::ptrdiff_t m_nOldTimerState = 0x584; +} + +namespace CComicBook { + constexpr std::ptrdiff_t m_CoverImage = 0x8; + constexpr std::ptrdiff_t m_XmlFile = 0x18; +} + +namespace CAttributeList { + constexpr std::ptrdiff_t m_Attributes = 0x8; + constexpr std::ptrdiff_t m_pManager = 0x58; +} + +namespace CEconItemAttribute { + constexpr std::ptrdiff_t m_iAttributeDefinitionIndex = 0x30; + constexpr std::ptrdiff_t m_flValue = 0x34; + constexpr std::ptrdiff_t m_flInitialValue = 0x38; + constexpr std::ptrdiff_t m_nRefundableCurrency = 0x3c; + constexpr std::ptrdiff_t m_bSetBonus = 0x40; +} + +namespace CAttributeManager { + constexpr std::ptrdiff_t m_Providers = 0x8; + constexpr std::ptrdiff_t m_iReapplyProvisionParity = 0x20; + constexpr std::ptrdiff_t m_hOuter = 0x24; + constexpr std::ptrdiff_t m_bPreventLoopback = 0x28; + constexpr std::ptrdiff_t m_ProviderType = 0x2c; + constexpr std::ptrdiff_t m_CachedResults = 0x30; +} + +namespace CAttributeManager::cached_attribute_float_t { + constexpr std::ptrdiff_t flIn = 0x0; + constexpr std::ptrdiff_t iAttribHook = 0x8; + constexpr std::ptrdiff_t flOut = 0x10; +} + +namespace C_AttributeContainer { + constexpr std::ptrdiff_t m_Item = 0x50; + constexpr std::ptrdiff_t m_iExternalItemProviderRegisteredToken = 0x498; + constexpr std::ptrdiff_t m_ullRegisteredAsItemID = 0x4a0; +} + +namespace C_EconEntity::AttachedModelData_t { + constexpr std::ptrdiff_t m_iModelDisplayFlags = 0x0; +} + +namespace EntitySpottedState_t { + constexpr std::ptrdiff_t m_bSpotted = 0x8; + constexpr std::ptrdiff_t m_bSpottedByMask = 0xc; +} + +namespace C_CSGameRulesProxy { + constexpr std::ptrdiff_t m_pGameRules = 0x540; +} + +namespace C_CSGameRules { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; + constexpr std::ptrdiff_t m_bFreezePeriod = 0x30; + constexpr std::ptrdiff_t m_bWarmupPeriod = 0x31; + constexpr std::ptrdiff_t m_fWarmupPeriodEnd = 0x34; + constexpr std::ptrdiff_t m_fWarmupPeriodStart = 0x38; + constexpr std::ptrdiff_t m_nTotalPausedTicks = 0x3c; + constexpr std::ptrdiff_t m_nPauseStartTick = 0x40; + constexpr std::ptrdiff_t m_bServerPaused = 0x44; + constexpr std::ptrdiff_t m_bGamePaused = 0x45; + constexpr std::ptrdiff_t m_bTerroristTimeOutActive = 0x46; + constexpr std::ptrdiff_t m_bCTTimeOutActive = 0x47; + constexpr std::ptrdiff_t m_flTerroristTimeOutRemaining = 0x48; + constexpr std::ptrdiff_t m_flCTTimeOutRemaining = 0x4c; + constexpr std::ptrdiff_t m_nTerroristTimeOuts = 0x50; + constexpr std::ptrdiff_t m_nCTTimeOuts = 0x54; + constexpr std::ptrdiff_t m_bTechnicalTimeOut = 0x58; + constexpr std::ptrdiff_t m_bMatchWaitingForResume = 0x59; + constexpr std::ptrdiff_t m_iRoundTime = 0x5c; + constexpr std::ptrdiff_t m_fMatchStartTime = 0x60; + constexpr std::ptrdiff_t m_fRoundStartTime = 0x64; + constexpr std::ptrdiff_t m_flRestartRoundTime = 0x68; + constexpr std::ptrdiff_t m_bGameRestart = 0x6c; + constexpr std::ptrdiff_t m_flGameStartTime = 0x70; + constexpr std::ptrdiff_t m_timeUntilNextPhaseStarts = 0x74; + constexpr std::ptrdiff_t m_gamePhase = 0x78; + constexpr std::ptrdiff_t m_totalRoundsPlayed = 0x7c; + constexpr std::ptrdiff_t m_nRoundsPlayedThisPhase = 0x80; + constexpr std::ptrdiff_t m_nOvertimePlaying = 0x84; + constexpr std::ptrdiff_t m_iHostagesRemaining = 0x88; + constexpr std::ptrdiff_t m_bAnyHostageReached = 0x8c; + constexpr std::ptrdiff_t m_bMapHasBombTarget = 0x8d; + constexpr std::ptrdiff_t m_bMapHasRescueZone = 0x8e; + constexpr std::ptrdiff_t m_bMapHasBuyZone = 0x8f; + constexpr std::ptrdiff_t m_bIsQueuedMatchmaking = 0x90; + constexpr std::ptrdiff_t m_nQueuedMatchmakingMode = 0x94; + constexpr std::ptrdiff_t m_bIsValveDS = 0x98; + constexpr std::ptrdiff_t m_bLogoMap = 0x99; + constexpr std::ptrdiff_t m_bPlayAllStepSoundsOnServer = 0x9a; + constexpr std::ptrdiff_t m_iNumGunGameProgressiveWeaponsCT = 0x9c; + constexpr std::ptrdiff_t m_iNumGunGameProgressiveWeaponsT = 0xa0; + constexpr std::ptrdiff_t m_iSpectatorSlotCount = 0xa4; + constexpr std::ptrdiff_t m_GGProgressiveWeaponOrderCT = 0xa8; + constexpr std::ptrdiff_t m_GGProgressiveWeaponOrderT = 0x198; + constexpr std::ptrdiff_t m_GGProgressiveWeaponKillUpgradeOrderCT = 0x288; + constexpr std::ptrdiff_t m_GGProgressiveWeaponKillUpgradeOrderT = 0x378; + constexpr std::ptrdiff_t m_MatchDevice = 0x468; + constexpr std::ptrdiff_t m_bHasMatchStarted = 0x46c; + constexpr std::ptrdiff_t m_nNextMapInMapgroup = 0x470; + constexpr std::ptrdiff_t m_szTournamentEventName = 0x474; + constexpr std::ptrdiff_t m_szTournamentEventStage = 0x674; + constexpr std::ptrdiff_t m_szMatchStatTxt = 0x874; + constexpr std::ptrdiff_t m_szTournamentPredictionsTxt = 0xa74; + constexpr std::ptrdiff_t m_nTournamentPredictionsPct = 0xc74; + constexpr std::ptrdiff_t m_flCMMItemDropRevealStartTime = 0xc78; + constexpr std::ptrdiff_t m_flCMMItemDropRevealEndTime = 0xc7c; + constexpr std::ptrdiff_t m_bIsDroppingItems = 0xc80; + constexpr std::ptrdiff_t m_bIsQuestEligible = 0xc81; + constexpr std::ptrdiff_t m_nGuardianModeWaveNumber = 0xc84; + constexpr std::ptrdiff_t m_nGuardianModeSpecialKillsRemaining = 0xc88; + constexpr std::ptrdiff_t m_nGuardianModeSpecialWeaponNeeded = 0xc8c; + constexpr std::ptrdiff_t m_nGuardianGrenadesToGiveBots = 0xc90; + constexpr std::ptrdiff_t m_nNumHeaviesToSpawn = 0xc94; + constexpr std::ptrdiff_t m_numGlobalGiftsGiven = 0xc98; + constexpr std::ptrdiff_t m_numGlobalGifters = 0xc9c; + constexpr std::ptrdiff_t m_numGlobalGiftsPeriodSeconds = 0xca0; + constexpr std::ptrdiff_t m_arrFeaturedGiftersAccounts = 0xca4; + constexpr std::ptrdiff_t m_arrFeaturedGiftersGifts = 0xcb4; + constexpr std::ptrdiff_t m_arrProhibitedItemIndices = 0xcc4; + constexpr std::ptrdiff_t m_arrTournamentActiveCasterAccounts = 0xd8c; + constexpr std::ptrdiff_t m_numBestOfMaps = 0xd9c; + constexpr std::ptrdiff_t m_nHalloweenMaskListSeed = 0xda0; + constexpr std::ptrdiff_t m_bBombDropped = 0xda4; + constexpr std::ptrdiff_t m_bBombPlanted = 0xda5; + constexpr std::ptrdiff_t m_iRoundWinStatus = 0xda8; + constexpr std::ptrdiff_t m_eRoundWinReason = 0xdac; + constexpr std::ptrdiff_t m_bTCantBuy = 0xdb0; + constexpr std::ptrdiff_t m_bCTCantBuy = 0xdb1; + constexpr std::ptrdiff_t m_flGuardianBuyUntilTime = 0xdb4; + constexpr std::ptrdiff_t m_iMatchStats_RoundResults = 0xdb8; + constexpr std::ptrdiff_t m_iMatchStats_PlayersAlive_CT = 0xe30; + constexpr std::ptrdiff_t m_iMatchStats_PlayersAlive_T = 0xea8; + constexpr std::ptrdiff_t m_TeamRespawnWaveTimes = 0xf20; + constexpr std::ptrdiff_t m_flNextRespawnWave = 0xfa0; + constexpr std::ptrdiff_t m_nServerQuestID = 0x1020; + constexpr std::ptrdiff_t m_vMinimapMins = 0x1024; + constexpr std::ptrdiff_t m_vMinimapMaxs = 0x1030; + constexpr std::ptrdiff_t m_MinimapVerticalSectionHeights = 0x103c; + constexpr std::ptrdiff_t m_bDontIncrementCoopWave = 0x105c; + constexpr std::ptrdiff_t m_bSpawnedTerrorHuntHeavy = 0x105d; + constexpr std::ptrdiff_t m_nEndMatchMapGroupVoteTypes = 0x1060; + constexpr std::ptrdiff_t m_nEndMatchMapGroupVoteOptions = 0x1088; + constexpr std::ptrdiff_t m_nEndMatchMapVoteWinner = 0x10b0; + constexpr std::ptrdiff_t m_iNumConsecutiveCTLoses = 0x10b4; + constexpr std::ptrdiff_t m_iNumConsecutiveTerroristLoses = 0x10b8; + constexpr std::ptrdiff_t m_bMarkClientStopRecordAtRoundEnd = 0x10d8; + constexpr std::ptrdiff_t m_bMatchAbortedDueToPlayerBan = 0x1130; + constexpr std::ptrdiff_t m_bHasTriggeredRoundStartMusic = 0x1131; + constexpr std::ptrdiff_t m_bHasTriggeredCoopSpawnReset = 0x1132; + constexpr std::ptrdiff_t m_bSwitchingTeamsAtRoundReset = 0x1133; + constexpr std::ptrdiff_t m_iMaxGunGameProgressiveWeaponIndex = 0x1134; + constexpr std::ptrdiff_t m_pGameModeRules = 0x1150; + constexpr std::ptrdiff_t m_SurvivalRules = 0x1158; + constexpr std::ptrdiff_t m_RetakeRules = 0x1818; + constexpr std::ptrdiff_t m_nMatchEndCount = 0x1930; + constexpr std::ptrdiff_t m_nTTeamIntroVariant = 0x1934; + constexpr std::ptrdiff_t m_nCTTeamIntroVariant = 0x1938; + constexpr std::ptrdiff_t m_bTeamIntroPeriod = 0x193c; +} + +namespace CCSGameModeRules { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; +} + +namespace CCSGameModeRules_Noop { +} + +namespace CCSGameModeScript { +} + +namespace CCSGameModeRules_Scripted { +} + +namespace CCSGameModeRules_Deathmatch { + constexpr std::ptrdiff_t m_bFirstThink = 0x30; + constexpr std::ptrdiff_t m_bFirstThinkAfterConnected = 0x31; + constexpr std::ptrdiff_t m_flDMBonusStartTime = 0x34; + constexpr std::ptrdiff_t m_flDMBonusTimeLength = 0x38; + constexpr std::ptrdiff_t m_nDMBonusWeaponLoadoutSlot = 0x3c; +} + +namespace C_RetakeGameRules { + constexpr std::ptrdiff_t m_nMatchSeed = 0xf8; + constexpr std::ptrdiff_t m_bBlockersPresent = 0xfc; + constexpr std::ptrdiff_t m_bRoundInProgress = 0xfd; + constexpr std::ptrdiff_t m_iFirstSecondHalfRound = 0x100; + constexpr std::ptrdiff_t m_iBombSite = 0x104; +} + +namespace CSPerRoundStats_t { + constexpr std::ptrdiff_t m_iKills = 0x30; + constexpr std::ptrdiff_t m_iDeaths = 0x34; + constexpr std::ptrdiff_t m_iAssists = 0x38; + constexpr std::ptrdiff_t m_iDamage = 0x3c; + constexpr std::ptrdiff_t m_iEquipmentValue = 0x40; + constexpr std::ptrdiff_t m_iMoneySaved = 0x44; + constexpr std::ptrdiff_t m_iKillReward = 0x48; + constexpr std::ptrdiff_t m_iLiveTime = 0x4c; + constexpr std::ptrdiff_t m_iHeadShotKills = 0x50; + constexpr std::ptrdiff_t m_iObjective = 0x54; + constexpr std::ptrdiff_t m_iCashEarned = 0x58; + constexpr std::ptrdiff_t m_iUtilityDamage = 0x5c; + constexpr std::ptrdiff_t m_iEnemiesFlashed = 0x60; +} + +namespace CSMatchStats_t { + constexpr std::ptrdiff_t m_iEnemy5Ks = 0x68; + constexpr std::ptrdiff_t m_iEnemy4Ks = 0x6c; + constexpr std::ptrdiff_t m_iEnemy3Ks = 0x70; +} + +namespace C_CSGO_TeamPreviewCharacterPosition { + constexpr std::ptrdiff_t m_nVariant = 0x540; + constexpr std::ptrdiff_t m_nRandom = 0x544; + constexpr std::ptrdiff_t m_nOrdinal = 0x548; + constexpr std::ptrdiff_t m_sWeaponName = 0x550; + constexpr std::ptrdiff_t m_xuid = 0x558; + constexpr std::ptrdiff_t m_weaponItem = 0x560; +} + +namespace C_CSGO_TeamSelectCharacterPosition { +} + +namespace C_CSGO_TeamSelectTerroristPosition { +} + +namespace C_CSGO_TeamSelectCounterTerroristPosition { +} + +namespace C_CSGO_TeamIntroCharacterPosition { +} + +namespace C_CSGO_TeamIntroTerroristPosition { +} + +namespace C_CSGO_TeamIntroCounterTerroristPosition { +} + +namespace CCSGO_WingmanIntroCharacterPosition { +} + +namespace CCSGO_WingmanIntroTerroristPosition { +} + +namespace CCSGO_WingmanIntroCounterTerroristPosition { +} + +namespace C_CSMinimapBoundary { +} + +namespace WeaponPurchaseCount_t { + constexpr std::ptrdiff_t m_nItemDefIndex = 0x30; + constexpr std::ptrdiff_t m_nCount = 0x32; +} + +namespace WeaponPurchaseTracker_t { + constexpr std::ptrdiff_t m_weaponPurchases = 0x8; +} + +namespace CCSPlayer_ActionTrackingServices { + constexpr std::ptrdiff_t m_hLastWeaponBeforeC4AutoSwitch = 0x40; + constexpr std::ptrdiff_t m_bIsRescuing = 0x44; + constexpr std::ptrdiff_t m_weaponPurchasesThisMatch = 0x48; + constexpr std::ptrdiff_t m_weaponPurchasesThisRound = 0xa0; +} + +namespace C_PlayerPing { + constexpr std::ptrdiff_t m_hPlayer = 0x570; + constexpr std::ptrdiff_t m_hPingedEntity = 0x574; + constexpr std::ptrdiff_t m_iType = 0x578; + constexpr std::ptrdiff_t m_bUrgent = 0x57c; + constexpr std::ptrdiff_t m_szPlaceName = 0x57d; +} + +namespace CCSPlayer_PingServices { + constexpr std::ptrdiff_t m_hPlayerPing = 0x40; +} + +namespace C_CSPlayerResource { + constexpr std::ptrdiff_t m_bHostageAlive = 0x540; + constexpr std::ptrdiff_t m_isHostageFollowingSomeone = 0x54c; + constexpr std::ptrdiff_t m_iHostageEntityIDs = 0x558; + constexpr std::ptrdiff_t m_bombsiteCenterA = 0x588; + constexpr std::ptrdiff_t m_bombsiteCenterB = 0x594; + constexpr std::ptrdiff_t m_hostageRescueX = 0x5a0; + constexpr std::ptrdiff_t m_hostageRescueY = 0x5b0; + constexpr std::ptrdiff_t m_hostageRescueZ = 0x5c0; + constexpr std::ptrdiff_t m_bEndMatchNextMapAllVoted = 0x5d0; + constexpr std::ptrdiff_t m_foundGoalPositions = 0x5d1; +} + +namespace CCSPlayer_BulletServices { + constexpr std::ptrdiff_t m_totalHitsOnServer = 0x40; +} + +namespace SellbackPurchaseEntry_t { + constexpr std::ptrdiff_t m_unDefIdx = 0x30; + constexpr std::ptrdiff_t m_nCost = 0x34; + constexpr std::ptrdiff_t m_nPrevArmor = 0x38; + constexpr std::ptrdiff_t m_bPrevHelmet = 0x3c; + constexpr std::ptrdiff_t m_hItem = 0x40; +} + +namespace CCSPlayer_BuyServices { + constexpr std::ptrdiff_t m_vecSellbackPurchaseEntries = 0x40; +} + +namespace CCSPlayer_CameraServices { + constexpr std::ptrdiff_t m_iFOV = 0x210; + constexpr std::ptrdiff_t m_iFOVStart = 0x214; + constexpr std::ptrdiff_t m_flFOVTime = 0x218; + constexpr std::ptrdiff_t m_flFOVRate = 0x21c; + constexpr std::ptrdiff_t m_hZoomOwner = 0x220; + constexpr std::ptrdiff_t m_flLastShotFOV = 0x224; + constexpr std::ptrdiff_t m_flDeathCamTilt = 0x228; +} + +namespace CCSPlayer_HostageServices { + constexpr std::ptrdiff_t m_hCarriedHostage = 0x40; + constexpr std::ptrdiff_t m_hCarriedHostageProp = 0x44; +} + +namespace CCSPlayer_ItemServices { + constexpr std::ptrdiff_t m_bHasDefuser = 0x40; + constexpr std::ptrdiff_t m_bHasHelmet = 0x41; + constexpr std::ptrdiff_t m_bHasHeavyArmor = 0x42; +} + +namespace CCSPlayer_MovementServices { + constexpr std::ptrdiff_t m_flMaxFallVelocity = 0x210; + constexpr std::ptrdiff_t m_vecLadderNormal = 0x214; + constexpr std::ptrdiff_t m_nLadderSurfacePropIndex = 0x220; + constexpr std::ptrdiff_t m_flDuckAmount = 0x224; + constexpr std::ptrdiff_t m_flDuckSpeed = 0x228; + constexpr std::ptrdiff_t m_bDuckOverride = 0x22c; + constexpr std::ptrdiff_t m_bDesiresDuck = 0x22d; + constexpr std::ptrdiff_t m_flDuckOffset = 0x230; + constexpr std::ptrdiff_t m_nDuckTimeMsecs = 0x234; + constexpr std::ptrdiff_t m_nDuckJumpTimeMsecs = 0x238; + constexpr std::ptrdiff_t m_nJumpTimeMsecs = 0x23c; + constexpr std::ptrdiff_t m_flLastDuckTime = 0x240; + constexpr std::ptrdiff_t m_vecLastPositionAtFullCrouchSpeed = 0x250; + constexpr std::ptrdiff_t m_duckUntilOnGround = 0x258; + constexpr std::ptrdiff_t m_bHasWalkMovedSinceLastJump = 0x259; + constexpr std::ptrdiff_t m_bInStuckTest = 0x25a; + constexpr std::ptrdiff_t m_flStuckCheckTime = 0x268; + constexpr std::ptrdiff_t m_nTraceCount = 0x468; + constexpr std::ptrdiff_t m_StuckLast = 0x46c; + constexpr std::ptrdiff_t m_bSpeedCropped = 0x470; + constexpr std::ptrdiff_t m_nOldWaterLevel = 0x474; + constexpr std::ptrdiff_t m_flWaterEntryTime = 0x478; + constexpr std::ptrdiff_t m_vecForward = 0x47c; + constexpr std::ptrdiff_t m_vecLeft = 0x488; + constexpr std::ptrdiff_t m_vecUp = 0x494; + constexpr std::ptrdiff_t m_vecPreviouslyPredictedOrigin = 0x4a0; + constexpr std::ptrdiff_t m_bOldJumpPressed = 0x4ac; + constexpr std::ptrdiff_t m_flJumpPressedTime = 0x4b0; + constexpr std::ptrdiff_t m_flJumpUntil = 0x4b4; + constexpr std::ptrdiff_t m_flJumpVel = 0x4b8; + constexpr std::ptrdiff_t m_fStashGrenadeParameterWhen = 0x4bc; + constexpr std::ptrdiff_t m_nButtonDownMaskPrev = 0x4c0; + constexpr std::ptrdiff_t m_flOffsetTickCompleteTime = 0x4c8; + constexpr std::ptrdiff_t m_flOffsetTickStashedSpeed = 0x4cc; + constexpr std::ptrdiff_t m_bUpdatePredictedOriginAfterDataUpdate = 0x4d0; +} + +namespace CCSPlayer_ObserverServices { + constexpr std::ptrdiff_t m_hLastObserverTarget = 0x58; + constexpr std::ptrdiff_t m_vecObserverInterpolateOffset = 0x5c; + constexpr std::ptrdiff_t m_vecObserverInterpStartPos = 0x68; + constexpr std::ptrdiff_t m_flObsInterp_PathLength = 0x74; + constexpr std::ptrdiff_t m_qObsInterp_OrientationStart = 0x80; + constexpr std::ptrdiff_t m_qObsInterp_OrientationTravelDir = 0x90; + constexpr std::ptrdiff_t m_obsInterpState = 0xa0; + constexpr std::ptrdiff_t m_bObserverInterpolationNeedsDeferredSetup = 0xa4; + constexpr std::ptrdiff_t m_nLastKillerDamageTaken = 0xa8; + constexpr std::ptrdiff_t m_nLastKillerHitsTaken = 0xac; + constexpr std::ptrdiff_t m_nLastKillerDamageGiven = 0xb0; + constexpr std::ptrdiff_t m_nLastKillerHitsGiven = 0xb4; + constexpr std::ptrdiff_t m_nLastKillerActualDamageGiven = 0xb8; + constexpr std::ptrdiff_t m_nLastKillerActualDamageTaken = 0xbc; + constexpr std::ptrdiff_t m_bCanShowDeathPanelNow = 0xc0; + constexpr std::ptrdiff_t m_bWasShowingDeathPanel = 0xc1; +} + +namespace CCSPlayer_UseServices { +} + +namespace CCSPlayer_ViewModelServices { + constexpr std::ptrdiff_t m_hViewModel = 0x40; +} + +namespace CCSPlayer_WaterServices { + constexpr std::ptrdiff_t m_flWaterJumpTime = 0x40; + constexpr std::ptrdiff_t m_vecWaterJumpVel = 0x44; + constexpr std::ptrdiff_t m_flSwimSoundTime = 0x50; +} + +namespace CCSPlayer_WeaponServices { + constexpr std::ptrdiff_t m_flNextAttack = 0xa8; + constexpr std::ptrdiff_t m_bIsLookingAtWeapon = 0xac; + constexpr std::ptrdiff_t m_bIsHoldingLookAtWeapon = 0xad; +} + +namespace CCSPlayerController_ActionTrackingServices { + constexpr std::ptrdiff_t m_perRoundStats = 0x40; + constexpr std::ptrdiff_t m_matchStats = 0x90; + constexpr std::ptrdiff_t m_iNumRoundKills = 0x108; + constexpr std::ptrdiff_t m_iNumRoundKillsHeadshots = 0x10c; +} + +namespace CDamageRecord { + constexpr std::ptrdiff_t m_PlayerDamager = 0x28; + constexpr std::ptrdiff_t m_PlayerRecipient = 0x2c; + constexpr std::ptrdiff_t m_hPlayerControllerDamager = 0x30; + constexpr std::ptrdiff_t m_hPlayerControllerRecipient = 0x34; + constexpr std::ptrdiff_t m_szPlayerDamagerName = 0x38; + constexpr std::ptrdiff_t m_szPlayerRecipientName = 0x40; + constexpr std::ptrdiff_t m_DamagerXuid = 0x48; + constexpr std::ptrdiff_t m_RecipientXuid = 0x50; + constexpr std::ptrdiff_t m_iDamage = 0x58; + constexpr std::ptrdiff_t m_iActualHealthRemoved = 0x5c; + constexpr std::ptrdiff_t m_iNumHits = 0x60; + constexpr std::ptrdiff_t m_iLastBulletUpdate = 0x64; + constexpr std::ptrdiff_t m_bIsOtherEnemy = 0x68; + constexpr std::ptrdiff_t m_killType = 0x69; +} + +namespace CCSPlayerController_DamageServices { + constexpr std::ptrdiff_t m_nSendUpdate = 0x40; + constexpr std::ptrdiff_t m_DamageList = 0x48; +} + +namespace CCSPlayerController_InGameMoneyServices { + constexpr std::ptrdiff_t m_iAccount = 0x40; + constexpr std::ptrdiff_t m_iStartAccount = 0x44; + constexpr std::ptrdiff_t m_iTotalCashSpent = 0x48; + constexpr std::ptrdiff_t m_iCashSpentThisRound = 0x4c; + constexpr std::ptrdiff_t m_nPreviousAccount = 0x50; +} + +namespace CCSPlayerController_InventoryServices { + constexpr std::ptrdiff_t m_unMusicID = 0x40; + constexpr std::ptrdiff_t m_rank = 0x44; + constexpr std::ptrdiff_t m_nPersonaDataPublicLevel = 0x5c; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsLeader = 0x60; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsTeacher = 0x64; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsFriendly = 0x68; + constexpr std::ptrdiff_t m_vecTerroristLoadoutCache = 0x70; + constexpr std::ptrdiff_t m_vecCounterTerroristLoadoutCache = 0xc0; +} + +namespace C_SurvivalGameRules { + constexpr std::ptrdiff_t m_vecPlayAreaMins = 0x8; + constexpr std::ptrdiff_t m_vecPlayAreaMaxs = 0x14; + constexpr std::ptrdiff_t m_iPlayerSpawnHexIndices = 0x20; + constexpr std::ptrdiff_t m_SpawnTileState = 0x120; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeStartCurrentStage = 0x200; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeEndCurrentStage = 0x204; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeEndLastStage = 0x208; + constexpr std::ptrdiff_t m_spawnStage = 0x20c; + constexpr std::ptrdiff_t m_flTabletHexOriginX = 0x210; + constexpr std::ptrdiff_t m_flTabletHexOriginY = 0x214; + constexpr std::ptrdiff_t m_flTabletHexSize = 0x218; + constexpr std::ptrdiff_t m_roundData_playerXuids = 0x220; + constexpr std::ptrdiff_t m_roundData_playerPositions = 0x420; + constexpr std::ptrdiff_t m_roundData_playerTeams = 0x520; + constexpr std::ptrdiff_t m_SurvivalGameRuleDecisionTypes = 0x620; + constexpr std::ptrdiff_t m_SurvivalGameRuleDecisionValues = 0x660; + constexpr std::ptrdiff_t m_flSurvivalStartTime = 0x6a0; + constexpr std::ptrdiff_t m_flLastThinkTime = 0x6a4; +} + +namespace C_DangerZone { + constexpr std::ptrdiff_t m_vecDangerZoneOriginStartedAt = 0x540; + constexpr std::ptrdiff_t m_flBombLaunchTime = 0x54c; + constexpr std::ptrdiff_t m_flExtraRadius = 0x550; + constexpr std::ptrdiff_t m_flExtraRadiusStartTime = 0x554; + constexpr std::ptrdiff_t m_flExtraRadiusTotalLerpTime = 0x558; + constexpr std::ptrdiff_t m_nDropOrder = 0x55c; + constexpr std::ptrdiff_t m_iWave = 0x560; +} + +namespace C_DangerZoneController { + constexpr std::ptrdiff_t m_bDangerZoneControllerEnabled = 0x540; + constexpr std::ptrdiff_t m_bMissionControlledExplosions = 0x541; + constexpr std::ptrdiff_t m_vecEndGameCircleStart = 0x544; + constexpr std::ptrdiff_t m_vecEndGameCircleEnd = 0x550; + constexpr std::ptrdiff_t m_flStartTime = 0x55c; + constexpr std::ptrdiff_t m_flFinalExpansionTime = 0x560; + constexpr std::ptrdiff_t m_DangerZones = 0x564; + constexpr std::ptrdiff_t m_flWaveEndTimes = 0x60c; + constexpr std::ptrdiff_t m_hTheFinalZone = 0x620; +} + +namespace C_GrassBurn { + constexpr std::ptrdiff_t m_flGrassBurnClearTime = 0x540; + constexpr std::ptrdiff_t m_bClientPendingClear = 0x544; + constexpr std::ptrdiff_t m_flGrassBurnClearTimeLocal = 0x548; + constexpr std::ptrdiff_t m_vecGrassBurnPositions = 0x550; +} + +namespace C_IronSightController { + constexpr std::ptrdiff_t m_bIronSightAvailable = 0x10; + constexpr std::ptrdiff_t m_flIronSightAmount = 0x14; + constexpr std::ptrdiff_t m_flIronSightAmountGained = 0x18; + constexpr std::ptrdiff_t m_flIronSightAmountBiased = 0x1c; + constexpr std::ptrdiff_t m_flIronSightAmount_Interpolated = 0x20; + constexpr std::ptrdiff_t m_flIronSightAmountGained_Interpolated = 0x24; + constexpr std::ptrdiff_t m_flIronSightAmountBiased_Interpolated = 0x28; + constexpr std::ptrdiff_t m_flInterpolationLastUpdated = 0x2c; + constexpr std::ptrdiff_t m_angDeltaAverage = 0x30; + constexpr std::ptrdiff_t m_angViewLast = 0x90; + constexpr std::ptrdiff_t m_vecDotCoords = 0x9c; + constexpr std::ptrdiff_t m_flDotBlur = 0xa4; + constexpr std::ptrdiff_t m_flSpeedRatio = 0xa8; +} + +namespace CompositeMaterialMatchFilter_t { + constexpr std::ptrdiff_t m_nCompositeMaterialMatchFilterType = 0x0; + constexpr std::ptrdiff_t m_strMatchFilter = 0x8; + constexpr std::ptrdiff_t m_strMatchValue = 0x10; + constexpr std::ptrdiff_t m_bPassWhenTrue = 0x18; +} + +namespace CompositeMaterialInputLooseVariable_t { + constexpr std::ptrdiff_t m_strName = 0x0; + constexpr std::ptrdiff_t m_bExposeExternally = 0x8; + constexpr std::ptrdiff_t m_strExposedFriendlyName = 0x10; + constexpr std::ptrdiff_t m_strExposedFriendlyGroupName = 0x18; + constexpr std::ptrdiff_t m_bExposedVariableIsFixedRange = 0x20; + constexpr std::ptrdiff_t m_strExposedVisibleWhenTrue = 0x28; + constexpr std::ptrdiff_t m_strExposedHiddenWhenTrue = 0x30; + constexpr std::ptrdiff_t m_nVariableType = 0x38; + constexpr std::ptrdiff_t m_bValueBoolean = 0x3c; + constexpr std::ptrdiff_t m_nValueIntX = 0x40; + constexpr std::ptrdiff_t m_nValueIntY = 0x44; + constexpr std::ptrdiff_t m_nValueIntZ = 0x48; + constexpr std::ptrdiff_t m_nValueIntW = 0x4c; + constexpr std::ptrdiff_t m_bHasFloatBounds = 0x50; + constexpr std::ptrdiff_t m_flValueFloatX = 0x54; + constexpr std::ptrdiff_t m_flValueFloatX_Min = 0x58; + constexpr std::ptrdiff_t m_flValueFloatX_Max = 0x5c; + constexpr std::ptrdiff_t m_flValueFloatY = 0x60; + constexpr std::ptrdiff_t m_flValueFloatY_Min = 0x64; + constexpr std::ptrdiff_t m_flValueFloatY_Max = 0x68; + constexpr std::ptrdiff_t m_flValueFloatZ = 0x6c; + constexpr std::ptrdiff_t m_flValueFloatZ_Min = 0x70; + constexpr std::ptrdiff_t m_flValueFloatZ_Max = 0x74; + constexpr std::ptrdiff_t m_flValueFloatW = 0x78; + constexpr std::ptrdiff_t m_flValueFloatW_Min = 0x7c; + constexpr std::ptrdiff_t m_flValueFloatW_Max = 0x80; + constexpr std::ptrdiff_t m_cValueColor4 = 0x84; + constexpr std::ptrdiff_t m_nValueSystemVar = 0x88; + constexpr std::ptrdiff_t m_strResourceMaterial = 0x90; + constexpr std::ptrdiff_t m_strTextureContentAssetPath = 0x170; + constexpr std::ptrdiff_t m_strTextureRuntimeResourcePath = 0x178; + constexpr std::ptrdiff_t m_strTextureCompilationVtexTemplate = 0x258; + constexpr std::ptrdiff_t m_nTextureType = 0x260; + constexpr std::ptrdiff_t m_strString = 0x268; +} + +namespace CompMatMutatorCondition_t { + constexpr std::ptrdiff_t m_nMutatorCondition = 0x0; + constexpr std::ptrdiff_t m_strMutatorConditionContainerName = 0x8; + constexpr std::ptrdiff_t m_strMutatorConditionContainerVarName = 0x10; + constexpr std::ptrdiff_t m_strMutatorConditionContainerVarValue = 0x18; + constexpr std::ptrdiff_t m_bPassWhenTrue = 0x20; +} + +namespace CompMatPropertyMutator_t { + constexpr std::ptrdiff_t m_bEnabled = 0x0; + constexpr std::ptrdiff_t m_nMutatorCommandType = 0x4; + constexpr std::ptrdiff_t m_strInitWith_Container = 0x8; + constexpr std::ptrdiff_t m_strCopyProperty_InputContainerSrc = 0x10; + constexpr std::ptrdiff_t m_strCopyProperty_InputContainerProperty = 0x18; + constexpr std::ptrdiff_t m_strCopyProperty_TargetProperty = 0x20; + constexpr std::ptrdiff_t m_strRandomRollInputVars_SeedInputVar = 0x28; + constexpr std::ptrdiff_t m_vecRandomRollInputVars_InputVarsToRoll = 0x30; + constexpr std::ptrdiff_t m_strCopyMatchingKeys_InputContainerSrc = 0x48; + constexpr std::ptrdiff_t m_strCopyKeysWithSuffix_InputContainerSrc = 0x50; + constexpr std::ptrdiff_t m_strCopyKeysWithSuffix_FindSuffix = 0x58; + constexpr std::ptrdiff_t m_strCopyKeysWithSuffix_ReplaceSuffix = 0x60; + constexpr std::ptrdiff_t m_nSetValue_Value = 0x68; + constexpr std::ptrdiff_t m_strGenerateTexture_TargetParam = 0x2d8; + constexpr std::ptrdiff_t m_strGenerateTexture_InitialContainer = 0x2e0; + constexpr std::ptrdiff_t m_nResolution = 0x2e8; + constexpr std::ptrdiff_t m_bIsScratchTarget = 0x2ec; + constexpr std::ptrdiff_t m_bSplatDebugInfo = 0x2ed; + constexpr std::ptrdiff_t m_bCaptureInRenderDoc = 0x2ee; + constexpr std::ptrdiff_t m_vecTexGenInstructions = 0x2f0; + constexpr std::ptrdiff_t m_vecConditionalMutators = 0x308; + constexpr std::ptrdiff_t m_strPopInputQueue_Container = 0x320; + constexpr std::ptrdiff_t m_strDrawText_InputContainerSrc = 0x328; + constexpr std::ptrdiff_t m_strDrawText_InputContainerProperty = 0x330; + constexpr std::ptrdiff_t m_vecDrawText_Position = 0x338; + constexpr std::ptrdiff_t m_colDrawText_Color = 0x340; + constexpr std::ptrdiff_t m_strDrawText_Font = 0x348; + constexpr std::ptrdiff_t m_vecConditions = 0x350; +} + +namespace CompositeMaterialInputContainer_t { + constexpr std::ptrdiff_t m_bEnabled = 0x0; + constexpr std::ptrdiff_t m_nCompositeMaterialInputContainerSourceType = 0x4; + constexpr std::ptrdiff_t m_strSpecificContainerMaterial = 0x8; + constexpr std::ptrdiff_t m_strAttrName = 0xe8; + constexpr std::ptrdiff_t m_strAlias = 0xf0; + constexpr std::ptrdiff_t m_vecLooseVariables = 0xf8; + constexpr std::ptrdiff_t m_strAttrNameForVar = 0x110; + constexpr std::ptrdiff_t m_bExposeExternally = 0x118; +} + +namespace CompositeMaterialAssemblyProcedure_t { + constexpr std::ptrdiff_t m_vecCompMatIncludes = 0x0; + constexpr std::ptrdiff_t m_vecMatchFilters = 0x18; + constexpr std::ptrdiff_t m_vecCompositeInputContainers = 0x30; + constexpr std::ptrdiff_t m_vecPropertyMutators = 0x48; +} + +namespace GeneratedTextureHandle_t { + constexpr std::ptrdiff_t m_strBitmapName = 0x0; +} + +namespace CompositeMaterial_t { + constexpr std::ptrdiff_t m_TargetKVs = 0x8; + constexpr std::ptrdiff_t m_PreGenerationKVs = 0x18; + constexpr std::ptrdiff_t m_FinalKVs = 0x28; + constexpr std::ptrdiff_t m_vecGeneratedTextures = 0x40; +} + +namespace CompositeMaterialEditorPoint_t { + constexpr std::ptrdiff_t m_ModelName = 0x0; + constexpr std::ptrdiff_t m_nSequenceIndex = 0xe0; + constexpr std::ptrdiff_t m_flCycle = 0xe4; + constexpr std::ptrdiff_t m_KVModelStateChoices = 0xe8; + constexpr std::ptrdiff_t m_bEnableChildModel = 0xf8; + constexpr std::ptrdiff_t m_ChildModelName = 0x100; + constexpr std::ptrdiff_t m_vecCompositeMaterialAssemblyProcedures = 0x1e0; + constexpr std::ptrdiff_t m_vecCompositeMaterials = 0x1f8; +} + +namespace CCompositeMaterialEditorDoc { + constexpr std::ptrdiff_t m_nVersion = 0x8; + constexpr std::ptrdiff_t m_Points = 0x10; + constexpr std::ptrdiff_t m_KVthumbnail = 0x28; +} + +namespace CGlobalLightBase { + constexpr std::ptrdiff_t m_bSpotLight = 0x10; + constexpr std::ptrdiff_t m_SpotLightOrigin = 0x14; + constexpr std::ptrdiff_t m_SpotLightAngles = 0x20; + constexpr std::ptrdiff_t m_ShadowDirection = 0x2c; + constexpr std::ptrdiff_t m_AmbientDirection = 0x38; + constexpr std::ptrdiff_t m_SpecularDirection = 0x44; + constexpr std::ptrdiff_t m_InspectorSpecularDirection = 0x50; + constexpr std::ptrdiff_t m_flSpecularPower = 0x5c; + constexpr std::ptrdiff_t m_flSpecularIndependence = 0x60; + constexpr std::ptrdiff_t m_SpecularColor = 0x64; + constexpr std::ptrdiff_t m_bStartDisabled = 0x68; + constexpr std::ptrdiff_t m_bEnabled = 0x69; + constexpr std::ptrdiff_t m_LightColor = 0x6a; + constexpr std::ptrdiff_t m_AmbientColor1 = 0x6e; + constexpr std::ptrdiff_t m_AmbientColor2 = 0x72; + constexpr std::ptrdiff_t m_AmbientColor3 = 0x76; + constexpr std::ptrdiff_t m_flSunDistance = 0x7c; + constexpr std::ptrdiff_t m_flFOV = 0x80; + constexpr std::ptrdiff_t m_flNearZ = 0x84; + constexpr std::ptrdiff_t m_flFarZ = 0x88; + constexpr std::ptrdiff_t m_bEnableShadows = 0x8c; + constexpr std::ptrdiff_t m_bOldEnableShadows = 0x8d; + constexpr std::ptrdiff_t m_bBackgroundClearNotRequired = 0x8e; + constexpr std::ptrdiff_t m_flCloudScale = 0x90; + constexpr std::ptrdiff_t m_flCloud1Speed = 0x94; + constexpr std::ptrdiff_t m_flCloud1Direction = 0x98; + constexpr std::ptrdiff_t m_flCloud2Speed = 0x9c; + constexpr std::ptrdiff_t m_flCloud2Direction = 0xa0; + constexpr std::ptrdiff_t m_flAmbientScale1 = 0xb0; + constexpr std::ptrdiff_t m_flAmbientScale2 = 0xb4; + constexpr std::ptrdiff_t m_flGroundScale = 0xb8; + constexpr std::ptrdiff_t m_flLightScale = 0xbc; + constexpr std::ptrdiff_t m_flFoWDarkness = 0xc0; + constexpr std::ptrdiff_t m_bEnableSeparateSkyboxFog = 0xc4; + constexpr std::ptrdiff_t m_vFowColor = 0xc8; + constexpr std::ptrdiff_t m_ViewOrigin = 0xd4; + constexpr std::ptrdiff_t m_ViewAngles = 0xe0; + constexpr std::ptrdiff_t m_flViewFoV = 0xec; + constexpr std::ptrdiff_t m_WorldPoints = 0xf0; + constexpr std::ptrdiff_t m_vFogOffsetLayer0 = 0x4a8; + constexpr std::ptrdiff_t m_vFogOffsetLayer1 = 0x4b0; + constexpr std::ptrdiff_t m_hEnvWind = 0x4b8; + constexpr std::ptrdiff_t m_hEnvSky = 0x4bc; +} + +namespace C_GlobalLight { + constexpr std::ptrdiff_t m_WindClothForceHandle = 0xa00; +} + +namespace C_CSGO_MapPreviewCameraPathNode { + constexpr std::ptrdiff_t m_szParentPathUniqueID = 0x540; + constexpr std::ptrdiff_t m_nPathIndex = 0x548; + constexpr std::ptrdiff_t m_vInTangentLocal = 0x54c; + constexpr std::ptrdiff_t m_vOutTangentLocal = 0x558; + constexpr std::ptrdiff_t m_flFOV = 0x564; + constexpr std::ptrdiff_t m_flSpeed = 0x568; + constexpr std::ptrdiff_t m_flEaseIn = 0x56c; + constexpr std::ptrdiff_t m_flEaseOut = 0x570; + constexpr std::ptrdiff_t m_vInTangentWorld = 0x574; + constexpr std::ptrdiff_t m_vOutTangentWorld = 0x580; +} + +namespace C_CSGO_MapPreviewCameraPath { + constexpr std::ptrdiff_t m_flZFar = 0x540; + constexpr std::ptrdiff_t m_flZNear = 0x544; + constexpr std::ptrdiff_t m_bLoop = 0x548; + constexpr std::ptrdiff_t m_bVerticalFOV = 0x549; + constexpr std::ptrdiff_t m_bConstantSpeed = 0x54a; + constexpr std::ptrdiff_t m_flDuration = 0x54c; + constexpr std::ptrdiff_t m_flPathLength = 0x590; + constexpr std::ptrdiff_t m_flPathDuration = 0x594; +} + +namespace CCSPlayer_GlowServices { +} + +namespace C_VoteController { + constexpr std::ptrdiff_t m_iActiveIssueIndex = 0x550; + constexpr std::ptrdiff_t m_iOnlyTeamToVote = 0x554; + constexpr std::ptrdiff_t m_nVoteOptionCount = 0x558; + constexpr std::ptrdiff_t m_nPotentialVotes = 0x56c; + constexpr std::ptrdiff_t m_bVotesDirty = 0x570; + constexpr std::ptrdiff_t m_bTypeDirty = 0x571; + constexpr std::ptrdiff_t m_bIsYesNoVote = 0x572; +} + +namespace C_MapVetoPickController { + constexpr std::ptrdiff_t m_nDraftType = 0x550; + constexpr std::ptrdiff_t m_nTeamWinningCoinToss = 0x554; + constexpr std::ptrdiff_t m_nTeamWithFirstChoice = 0x558; + constexpr std::ptrdiff_t m_nVoteMapIdsList = 0x658; + constexpr std::ptrdiff_t m_nAccountIDs = 0x674; + constexpr std::ptrdiff_t m_nMapId0 = 0x774; + constexpr std::ptrdiff_t m_nMapId1 = 0x874; + constexpr std::ptrdiff_t m_nMapId2 = 0x974; + constexpr std::ptrdiff_t m_nMapId3 = 0xa74; + constexpr std::ptrdiff_t m_nMapId4 = 0xb74; + constexpr std::ptrdiff_t m_nMapId5 = 0xc74; + constexpr std::ptrdiff_t m_nStartingSide0 = 0xd74; + constexpr std::ptrdiff_t m_nCurrentPhase = 0xe74; + constexpr std::ptrdiff_t m_nPhaseStartTick = 0xe78; + constexpr std::ptrdiff_t m_nPhaseDurationTicks = 0xe7c; + constexpr std::ptrdiff_t m_nPostDataUpdateTick = 0xe80; + constexpr std::ptrdiff_t m_bDisabledHud = 0xe84; +} + +namespace CPlayerSprayDecalRenderHelper { +} + +namespace C_CSGO_TeamPreviewCamera { + constexpr std::ptrdiff_t m_nVariant = 0x5a0; + constexpr std::ptrdiff_t m_bDofEnabled = 0x5a4; + constexpr std::ptrdiff_t m_flDofNearBlurry = 0x5a8; + constexpr std::ptrdiff_t m_flDofNearCrisp = 0x5ac; + constexpr std::ptrdiff_t m_flDofFarCrisp = 0x5b0; + constexpr std::ptrdiff_t m_flDofFarBlurry = 0x5b4; + constexpr std::ptrdiff_t m_flDofTiltToGround = 0x5b8; +} + +namespace C_CSGO_TeamSelectCamera { +} + +namespace C_CSGO_TerroristTeamIntroCamera { +} + +namespace C_CSGO_TerroristWingmanIntroCamera { +} + +namespace C_CSGO_CounterTerroristTeamIntroCamera { +} + +namespace C_CSGO_CounterTerroristWingmanIntroCamera { +} + +namespace C_CSGO_EndOfMatchCamera { +} + +namespace C_CSGO_EndOfMatchCharacterPosition { +} + +namespace C_CSGO_EndOfMatchLineupEndpoint { +} + +namespace C_CSGO_EndOfMatchLineupStart { +} + +namespace C_CSGO_EndOfMatchLineupEnd { +} + +namespace C_CsmFovOverride { + constexpr std::ptrdiff_t m_cameraName = 0x540; + constexpr std::ptrdiff_t m_flCsmFovOverrideValue = 0x548; +} + +namespace C_InfoMapRegion { + constexpr std::ptrdiff_t m_flRadius = 0x540; + constexpr std::ptrdiff_t m_szLocToken = 0x544; + constexpr std::ptrdiff_t m_pNext = 0x5c8; +} + +namespace C_PointEntity { +} + +namespace C_EnvCombinedLightProbeVolume { + constexpr std::ptrdiff_t m_Color = 0x1610; + constexpr std::ptrdiff_t m_flBrightness = 0x1614; + constexpr std::ptrdiff_t m_hCubemapTexture = 0x1618; + constexpr std::ptrdiff_t m_bCustomCubemapTexture = 0x1620; + constexpr std::ptrdiff_t m_hLightProbeTexture = 0x1628; + constexpr std::ptrdiff_t m_hLightProbeDirectLightIndicesTexture = 0x1630; + constexpr std::ptrdiff_t m_hLightProbeDirectLightScalarsTexture = 0x1638; + constexpr std::ptrdiff_t m_hLightProbeDirectLightShadowsTexture = 0x1640; + constexpr std::ptrdiff_t m_vBoxMins = 0x1648; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x1654; + constexpr std::ptrdiff_t m_LightGroups = 0x1660; + constexpr std::ptrdiff_t m_bMoveable = 0x1668; + constexpr std::ptrdiff_t m_nHandshake = 0x166c; + constexpr std::ptrdiff_t m_nEnvCubeMapArrayIndex = 0x1670; + constexpr std::ptrdiff_t m_nPriority = 0x1674; + constexpr std::ptrdiff_t m_bStartDisabled = 0x1678; + constexpr std::ptrdiff_t m_flEdgeFadeDist = 0x167c; + constexpr std::ptrdiff_t m_vEdgeFadeDists = 0x1680; + constexpr std::ptrdiff_t m_nLightProbeSizeX = 0x168c; + constexpr std::ptrdiff_t m_nLightProbeSizeY = 0x1690; + constexpr std::ptrdiff_t m_nLightProbeSizeZ = 0x1694; + constexpr std::ptrdiff_t m_nLightProbeAtlasX = 0x1698; + constexpr std::ptrdiff_t m_nLightProbeAtlasY = 0x169c; + constexpr std::ptrdiff_t m_nLightProbeAtlasZ = 0x16a0; + constexpr std::ptrdiff_t m_bEnabled = 0x16b9; +} + +namespace C_EnvCubemap { + constexpr std::ptrdiff_t m_hCubemapTexture = 0x630; + constexpr std::ptrdiff_t m_bCustomCubemapTexture = 0x638; + constexpr std::ptrdiff_t m_flInfluenceRadius = 0x63c; + constexpr std::ptrdiff_t m_vBoxProjectMins = 0x640; + constexpr std::ptrdiff_t m_vBoxProjectMaxs = 0x64c; + constexpr std::ptrdiff_t m_LightGroups = 0x658; + constexpr std::ptrdiff_t m_bMoveable = 0x660; + constexpr std::ptrdiff_t m_nHandshake = 0x664; + constexpr std::ptrdiff_t m_nEnvCubeMapArrayIndex = 0x668; + constexpr std::ptrdiff_t m_nPriority = 0x66c; + constexpr std::ptrdiff_t m_flEdgeFadeDist = 0x670; + constexpr std::ptrdiff_t m_vEdgeFadeDists = 0x674; + constexpr std::ptrdiff_t m_flDiffuseScale = 0x680; + constexpr std::ptrdiff_t m_bStartDisabled = 0x684; + constexpr std::ptrdiff_t m_bDefaultEnvMap = 0x685; + constexpr std::ptrdiff_t m_bDefaultSpecEnvMap = 0x686; + constexpr std::ptrdiff_t m_bIndoorCubeMap = 0x687; + constexpr std::ptrdiff_t m_bCopyDiffuseFromDefaultCubemap = 0x688; + constexpr std::ptrdiff_t m_bEnabled = 0x698; +} + +namespace C_EnvCubemapBox { +} + +namespace C_EnvCubemapFog { + constexpr std::ptrdiff_t m_flEndDistance = 0x540; + constexpr std::ptrdiff_t m_flStartDistance = 0x544; + constexpr std::ptrdiff_t m_flFogFalloffExponent = 0x548; + constexpr std::ptrdiff_t m_bHeightFogEnabled = 0x54c; + constexpr std::ptrdiff_t m_flFogHeightWidth = 0x550; + constexpr std::ptrdiff_t m_flFogHeightEnd = 0x554; + constexpr std::ptrdiff_t m_flFogHeightStart = 0x558; + constexpr std::ptrdiff_t m_flFogHeightExponent = 0x55c; + constexpr std::ptrdiff_t m_flLODBias = 0x560; + constexpr std::ptrdiff_t m_bActive = 0x564; + constexpr std::ptrdiff_t m_bStartDisabled = 0x565; + constexpr std::ptrdiff_t m_flFogMaxOpacity = 0x568; + constexpr std::ptrdiff_t m_nCubemapSourceType = 0x56c; + constexpr std::ptrdiff_t m_hSkyMaterial = 0x570; + constexpr std::ptrdiff_t m_iszSkyEntity = 0x578; + constexpr std::ptrdiff_t m_hFogCubemapTexture = 0x580; + constexpr std::ptrdiff_t m_bHasHeightFogEnd = 0x588; + constexpr std::ptrdiff_t m_bFirstTime = 0x589; +} + +namespace C_GradientFog { + constexpr std::ptrdiff_t m_hGradientFogTexture = 0x540; + constexpr std::ptrdiff_t m_flFogStartDistance = 0x548; + constexpr std::ptrdiff_t m_flFogEndDistance = 0x54c; + constexpr std::ptrdiff_t m_bHeightFogEnabled = 0x550; + constexpr std::ptrdiff_t m_flFogStartHeight = 0x554; + constexpr std::ptrdiff_t m_flFogEndHeight = 0x558; + constexpr std::ptrdiff_t m_flFarZ = 0x55c; + constexpr std::ptrdiff_t m_flFogMaxOpacity = 0x560; + constexpr std::ptrdiff_t m_flFogFalloffExponent = 0x564; + constexpr std::ptrdiff_t m_flFogVerticalExponent = 0x568; + constexpr std::ptrdiff_t m_fogColor = 0x56c; + constexpr std::ptrdiff_t m_flFogStrength = 0x570; + constexpr std::ptrdiff_t m_flFadeTime = 0x574; + constexpr std::ptrdiff_t m_bStartDisabled = 0x578; + constexpr std::ptrdiff_t m_bIsEnabled = 0x579; + constexpr std::ptrdiff_t m_bGradientFogNeedsTextures = 0x57a; +} + +namespace C_EnvLightProbeVolume { + constexpr std::ptrdiff_t m_hLightProbeTexture = 0x1520; + constexpr std::ptrdiff_t m_hLightProbeDirectLightIndicesTexture = 0x1528; + constexpr std::ptrdiff_t m_hLightProbeDirectLightScalarsTexture = 0x1530; + constexpr std::ptrdiff_t m_hLightProbeDirectLightShadowsTexture = 0x1538; + constexpr std::ptrdiff_t m_vBoxMins = 0x1540; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x154c; + constexpr std::ptrdiff_t m_LightGroups = 0x1558; + constexpr std::ptrdiff_t m_bMoveable = 0x1560; + constexpr std::ptrdiff_t m_nHandshake = 0x1564; + constexpr std::ptrdiff_t m_nPriority = 0x1568; + constexpr std::ptrdiff_t m_bStartDisabled = 0x156c; + constexpr std::ptrdiff_t m_nLightProbeSizeX = 0x1570; + constexpr std::ptrdiff_t m_nLightProbeSizeY = 0x1574; + constexpr std::ptrdiff_t m_nLightProbeSizeZ = 0x1578; + constexpr std::ptrdiff_t m_nLightProbeAtlasX = 0x157c; + constexpr std::ptrdiff_t m_nLightProbeAtlasY = 0x1580; + constexpr std::ptrdiff_t m_nLightProbeAtlasZ = 0x1584; + constexpr std::ptrdiff_t m_bEnabled = 0x1591; +} + +namespace C_PlayerVisibility { + constexpr std::ptrdiff_t m_flVisibilityStrength = 0x540; + constexpr std::ptrdiff_t m_flFogDistanceMultiplier = 0x544; + constexpr std::ptrdiff_t m_flFogMaxDensityMultiplier = 0x548; + constexpr std::ptrdiff_t m_flFadeTime = 0x54c; + constexpr std::ptrdiff_t m_bStartDisabled = 0x550; + constexpr std::ptrdiff_t m_bIsEnabled = 0x551; +} + +namespace C_TonemapController2 { + constexpr std::ptrdiff_t m_flAutoExposureMin = 0x540; + constexpr std::ptrdiff_t m_flAutoExposureMax = 0x544; + constexpr std::ptrdiff_t m_flTonemapPercentTarget = 0x548; + constexpr std::ptrdiff_t m_flTonemapPercentBrightPixels = 0x54c; + constexpr std::ptrdiff_t m_flTonemapMinAvgLum = 0x550; + constexpr std::ptrdiff_t m_flExposureAdaptationSpeedUp = 0x554; + constexpr std::ptrdiff_t m_flExposureAdaptationSpeedDown = 0x558; + constexpr std::ptrdiff_t m_flTonemapEVSmoothingRange = 0x55c; +} + +namespace C_EnvVolumetricFogController { + constexpr std::ptrdiff_t m_flScattering = 0x540; + constexpr std::ptrdiff_t m_flAnisotropy = 0x544; + constexpr std::ptrdiff_t m_flFadeSpeed = 0x548; + constexpr std::ptrdiff_t m_flDrawDistance = 0x54c; + constexpr std::ptrdiff_t m_flFadeInStart = 0x550; + constexpr std::ptrdiff_t m_flFadeInEnd = 0x554; + constexpr std::ptrdiff_t m_flIndirectStrength = 0x558; + constexpr std::ptrdiff_t m_nIndirectTextureDimX = 0x55c; + constexpr std::ptrdiff_t m_nIndirectTextureDimY = 0x560; + constexpr std::ptrdiff_t m_nIndirectTextureDimZ = 0x564; + constexpr std::ptrdiff_t m_vBoxMins = 0x568; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x574; + constexpr std::ptrdiff_t m_bActive = 0x580; + constexpr std::ptrdiff_t m_flStartAnisoTime = 0x584; + constexpr std::ptrdiff_t m_flStartScatterTime = 0x588; + constexpr std::ptrdiff_t m_flStartDrawDistanceTime = 0x58c; + constexpr std::ptrdiff_t m_flStartAnisotropy = 0x590; + constexpr std::ptrdiff_t m_flStartScattering = 0x594; + constexpr std::ptrdiff_t m_flStartDrawDistance = 0x598; + constexpr std::ptrdiff_t m_flDefaultAnisotropy = 0x59c; + constexpr std::ptrdiff_t m_flDefaultScattering = 0x5a0; + constexpr std::ptrdiff_t m_flDefaultDrawDistance = 0x5a4; + constexpr std::ptrdiff_t m_bStartDisabled = 0x5a8; + constexpr std::ptrdiff_t m_bEnableIndirect = 0x5a9; + constexpr std::ptrdiff_t m_bIsMaster = 0x5aa; + constexpr std::ptrdiff_t m_hFogIndirectTexture = 0x5b0; + constexpr std::ptrdiff_t m_nForceRefreshCount = 0x5b8; + constexpr std::ptrdiff_t m_bFirstTime = 0x5bc; +} + +namespace C_EnvVolumetricFogVolume { + constexpr std::ptrdiff_t m_bActive = 0x540; + constexpr std::ptrdiff_t m_vBoxMins = 0x544; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x550; + constexpr std::ptrdiff_t m_bStartDisabled = 0x55c; + constexpr std::ptrdiff_t m_flStrength = 0x560; + constexpr std::ptrdiff_t m_nFalloffShape = 0x564; + constexpr std::ptrdiff_t m_flFalloffExponent = 0x568; +} + +namespace C_FogController { + constexpr std::ptrdiff_t m_fog = 0x540; + constexpr std::ptrdiff_t m_bUseAngles = 0x5a8; + constexpr std::ptrdiff_t m_iChangedVariables = 0x5ac; +} + +namespace CInfoTarget { +} + +namespace CInfoParticleTarget { +} + +namespace C_InfoVisibilityBox { + constexpr std::ptrdiff_t m_nMode = 0x544; + constexpr std::ptrdiff_t m_vBoxSize = 0x548; + constexpr std::ptrdiff_t m_bEnabled = 0x554; +} + +namespace CInfoWorldLayer { + constexpr std::ptrdiff_t m_pOutputOnEntitiesSpawned = 0x540; + constexpr std::ptrdiff_t m_worldName = 0x568; + constexpr std::ptrdiff_t m_layerName = 0x570; + constexpr std::ptrdiff_t m_bWorldLayerVisible = 0x578; + constexpr std::ptrdiff_t m_bEntitiesSpawned = 0x579; + constexpr std::ptrdiff_t m_bCreateAsChildSpawnGroup = 0x57a; + constexpr std::ptrdiff_t m_hLayerSpawnGroup = 0x57c; + constexpr std::ptrdiff_t m_bWorldLayerActuallyVisible = 0x580; +} + +namespace C_PointCamera { + constexpr std::ptrdiff_t m_FOV = 0x540; + constexpr std::ptrdiff_t m_Resolution = 0x544; + constexpr std::ptrdiff_t m_bFogEnable = 0x548; + constexpr std::ptrdiff_t m_FogColor = 0x549; + constexpr std::ptrdiff_t m_flFogStart = 0x550; + constexpr std::ptrdiff_t m_flFogEnd = 0x554; + constexpr std::ptrdiff_t m_flFogMaxDensity = 0x558; + constexpr std::ptrdiff_t m_bActive = 0x55c; + constexpr std::ptrdiff_t m_bUseScreenAspectRatio = 0x55d; + constexpr std::ptrdiff_t m_flAspectRatio = 0x560; + constexpr std::ptrdiff_t m_bNoSky = 0x564; + constexpr std::ptrdiff_t m_fBrightness = 0x568; + constexpr std::ptrdiff_t m_flZFar = 0x56c; + constexpr std::ptrdiff_t m_flZNear = 0x570; + constexpr std::ptrdiff_t m_bDofEnabled = 0x574; + constexpr std::ptrdiff_t m_flDofNearBlurry = 0x578; + constexpr std::ptrdiff_t m_flDofNearCrisp = 0x57c; + constexpr std::ptrdiff_t m_flDofFarCrisp = 0x580; + constexpr std::ptrdiff_t m_flDofFarBlurry = 0x584; + constexpr std::ptrdiff_t m_flDofTiltToGround = 0x588; + constexpr std::ptrdiff_t m_TargetFOV = 0x58c; + constexpr std::ptrdiff_t m_DegreesPerSecond = 0x590; + constexpr std::ptrdiff_t m_bIsOn = 0x594; + constexpr std::ptrdiff_t m_pNext = 0x598; +} + +namespace C_PointCameraVFOV { + constexpr std::ptrdiff_t m_flVerticalFOV = 0x5a0; +} + +namespace CPointTemplate { + constexpr std::ptrdiff_t m_iszWorldName = 0x540; + constexpr std::ptrdiff_t m_iszSource2EntityLumpName = 0x548; + constexpr std::ptrdiff_t m_iszEntityFilterName = 0x550; + constexpr std::ptrdiff_t m_flTimeoutInterval = 0x558; + constexpr std::ptrdiff_t m_bAsynchronouslySpawnEntities = 0x55c; + constexpr std::ptrdiff_t m_pOutputOnSpawned = 0x560; + constexpr std::ptrdiff_t m_clientOnlyEntityBehavior = 0x588; + constexpr std::ptrdiff_t m_ownerSpawnGroupType = 0x58c; + constexpr std::ptrdiff_t m_createdSpawnGroupHandles = 0x590; + constexpr std::ptrdiff_t m_SpawnedEntityHandles = 0x5a8; + constexpr std::ptrdiff_t m_ScriptSpawnCallback = 0x5c0; + constexpr std::ptrdiff_t m_ScriptCallbackScope = 0x5c8; +} + +namespace C_SoundAreaEntityBase { + constexpr std::ptrdiff_t m_bDisabled = 0x540; + constexpr std::ptrdiff_t m_bWasEnabled = 0x548; + constexpr std::ptrdiff_t m_iszSoundAreaType = 0x550; + constexpr std::ptrdiff_t m_vPos = 0x558; +} + +namespace C_SoundAreaEntitySphere { + constexpr std::ptrdiff_t m_flRadius = 0x568; +} + +namespace C_SoundAreaEntityOrientedBox { + constexpr std::ptrdiff_t m_vMin = 0x568; + constexpr std::ptrdiff_t m_vMax = 0x574; +} + +namespace C_Team { + constexpr std::ptrdiff_t m_aPlayerControllers = 0x540; + constexpr std::ptrdiff_t m_aPlayers = 0x558; + constexpr std::ptrdiff_t m_iScore = 0x570; + constexpr std::ptrdiff_t m_szTeamname = 0x574; +} + +namespace CBasePlayerController { + constexpr std::ptrdiff_t m_nFinalPredictedTick = 0x548; + constexpr std::ptrdiff_t m_CommandContext = 0x550; + constexpr std::ptrdiff_t m_nInButtonsWhichAreToggles = 0x5d0; + constexpr std::ptrdiff_t m_nTickBase = 0x5d8; + constexpr std::ptrdiff_t m_hPawn = 0x5dc; + constexpr std::ptrdiff_t m_hPredictedPawn = 0x5e0; + constexpr std::ptrdiff_t m_nSplitScreenSlot = 0x5e4; + constexpr std::ptrdiff_t m_hSplitOwner = 0x5e8; + constexpr std::ptrdiff_t m_hSplitScreenPlayers = 0x5f0; + constexpr std::ptrdiff_t m_bIsHLTV = 0x608; + constexpr std::ptrdiff_t m_iConnected = 0x60c; + constexpr std::ptrdiff_t m_iszPlayerName = 0x610; + constexpr std::ptrdiff_t m_steamID = 0x698; + constexpr std::ptrdiff_t m_bIsLocalPlayerController = 0x6a0; + constexpr std::ptrdiff_t m_iDesiredFOV = 0x6a4; +} + +namespace CBasePlayerVData { + constexpr std::ptrdiff_t m_sModelName = 0x28; + constexpr std::ptrdiff_t m_flHeadDamageMultiplier = 0x108; + constexpr std::ptrdiff_t m_flChestDamageMultiplier = 0x118; + constexpr std::ptrdiff_t m_flStomachDamageMultiplier = 0x128; + constexpr std::ptrdiff_t m_flArmDamageMultiplier = 0x138; + constexpr std::ptrdiff_t m_flLegDamageMultiplier = 0x148; + constexpr std::ptrdiff_t m_flHoldBreathTime = 0x158; + constexpr std::ptrdiff_t m_flDrowningDamageInterval = 0x15c; + constexpr std::ptrdiff_t m_nDrowningDamageInitial = 0x160; + constexpr std::ptrdiff_t m_nDrowningDamageMax = 0x164; + constexpr std::ptrdiff_t m_nWaterSpeed = 0x168; + constexpr std::ptrdiff_t m_flUseRange = 0x16c; + constexpr std::ptrdiff_t m_flUseAngleTolerance = 0x170; + constexpr std::ptrdiff_t m_flCrouchTime = 0x174; +} + +namespace CBasePlayerWeaponVData { + constexpr std::ptrdiff_t m_szWorldModel = 0x28; + constexpr std::ptrdiff_t m_bBuiltRightHanded = 0x108; + constexpr std::ptrdiff_t m_bAllowFlipping = 0x109; + constexpr std::ptrdiff_t m_bIsFullAuto = 0x10a; + constexpr std::ptrdiff_t m_nNumBullets = 0x10c; + constexpr std::ptrdiff_t m_sMuzzleAttachment = 0x110; + constexpr std::ptrdiff_t m_szMuzzleFlashParticle = 0x118; + constexpr std::ptrdiff_t m_iFlags = 0x1f8; + constexpr std::ptrdiff_t m_nPrimaryAmmoType = 0x1f9; + constexpr std::ptrdiff_t m_nSecondaryAmmoType = 0x1fa; + constexpr std::ptrdiff_t m_iMaxClip1 = 0x1fc; + constexpr std::ptrdiff_t m_iMaxClip2 = 0x200; + constexpr std::ptrdiff_t m_iDefaultClip1 = 0x204; + constexpr std::ptrdiff_t m_iDefaultClip2 = 0x208; + constexpr std::ptrdiff_t m_iWeight = 0x20c; + constexpr std::ptrdiff_t m_bAutoSwitchTo = 0x210; + constexpr std::ptrdiff_t m_bAutoSwitchFrom = 0x211; + constexpr std::ptrdiff_t m_iRumbleEffect = 0x214; + constexpr std::ptrdiff_t m_aShootSounds = 0x218; + constexpr std::ptrdiff_t m_iSlot = 0x238; + constexpr std::ptrdiff_t m_iPosition = 0x23c; +} + +namespace CBaseAnimGraphController { + constexpr std::ptrdiff_t m_baseLayer = 0x10; + constexpr std::ptrdiff_t m_animGraphNetworkedVars = 0x38; + constexpr std::ptrdiff_t m_bSequenceFinished = 0x1318; + constexpr std::ptrdiff_t m_flLastEventCycle = 0x131c; + constexpr std::ptrdiff_t m_flPlaybackRate = 0x1320; + constexpr std::ptrdiff_t m_flPrevAnimTime = 0x1328; + constexpr std::ptrdiff_t m_bClientSideAnimation = 0x132c; + constexpr std::ptrdiff_t m_bNetworkedAnimationInputsChanged = 0x132d; + constexpr std::ptrdiff_t m_nPrevNewSequenceParity = 0x132e; + constexpr std::ptrdiff_t m_nPrevResetEventsParity = 0x132f; + constexpr std::ptrdiff_t m_nNewSequenceParity = 0x1330; + constexpr std::ptrdiff_t m_nResetEventsParity = 0x1334; + constexpr std::ptrdiff_t m_nAnimLoopMode = 0x1338; + constexpr std::ptrdiff_t m_hLastAnimEventSequence = 0x1348; +} + +namespace C_BaseModelEntity { + constexpr std::ptrdiff_t m_CRenderComponent = 0xa10; + constexpr std::ptrdiff_t m_CHitboxComponent = 0xa18; + constexpr std::ptrdiff_t m_bInitModelEffects = 0xa60; + constexpr std::ptrdiff_t m_bIsStaticProp = 0xa61; + constexpr std::ptrdiff_t m_nLastAddDecal = 0xa64; + constexpr std::ptrdiff_t m_nDecalsAdded = 0xa68; + constexpr std::ptrdiff_t m_iOldHealth = 0xa6c; + constexpr std::ptrdiff_t m_nRenderMode = 0xa70; + constexpr std::ptrdiff_t m_nRenderFX = 0xa71; + constexpr std::ptrdiff_t m_bAllowFadeInView = 0xa72; + constexpr std::ptrdiff_t m_clrRender = 0xa73; + constexpr std::ptrdiff_t m_vecRenderAttributes = 0xa78; + constexpr std::ptrdiff_t m_LightGroup = 0xae0; + constexpr std::ptrdiff_t m_bRenderToCubemaps = 0xae4; + constexpr std::ptrdiff_t m_Collision = 0xae8; + constexpr std::ptrdiff_t m_Glow = 0xb98; + constexpr std::ptrdiff_t m_flGlowBackfaceMult = 0xbf0; + constexpr std::ptrdiff_t m_fadeMinDist = 0xbf4; + constexpr std::ptrdiff_t m_fadeMaxDist = 0xbf8; + constexpr std::ptrdiff_t m_flFadeScale = 0xbfc; + constexpr std::ptrdiff_t m_flShadowStrength = 0xc00; + constexpr std::ptrdiff_t m_nObjectCulling = 0xc04; + constexpr std::ptrdiff_t m_nAddDecal = 0xc08; + constexpr std::ptrdiff_t m_vDecalPosition = 0xc0c; + constexpr std::ptrdiff_t m_vDecalForwardAxis = 0xc18; + constexpr std::ptrdiff_t m_flDecalHealBloodRate = 0xc24; + constexpr std::ptrdiff_t m_flDecalHealHeightRate = 0xc28; + constexpr std::ptrdiff_t m_ConfigEntitiesToPropagateMaterialDecalsTo = 0xc30; + constexpr std::ptrdiff_t m_vecViewOffset = 0xc48; + constexpr std::ptrdiff_t m_pClientAlphaProperty = 0xc78; + constexpr std::ptrdiff_t m_ClientOverrideTint = 0xc80; + constexpr std::ptrdiff_t m_bUseClientOverrideTint = 0xc84; +} + +namespace CServerOnlyModelEntity { +} + +namespace C_ModelPointEntity { +} + +namespace CLogicRelay { + constexpr std::ptrdiff_t m_OnTrigger = 0x540; + constexpr std::ptrdiff_t m_OnSpawn = 0x568; + constexpr std::ptrdiff_t m_bDisabled = 0x590; + constexpr std::ptrdiff_t m_bWaitForRefire = 0x591; + constexpr std::ptrdiff_t m_bTriggerOnce = 0x592; + constexpr std::ptrdiff_t m_bFastRetrigger = 0x593; + constexpr std::ptrdiff_t m_bPassthoughCaller = 0x594; +} + +namespace C_ParticleSystem { + constexpr std::ptrdiff_t m_szSnapshotFileName = 0xcc0; + constexpr std::ptrdiff_t m_bActive = 0xec0; + constexpr std::ptrdiff_t m_bFrozen = 0xec1; + constexpr std::ptrdiff_t m_flFreezeTransitionDuration = 0xec4; + constexpr std::ptrdiff_t m_nStopType = 0xec8; + constexpr std::ptrdiff_t m_bAnimateDuringGameplayPause = 0xecc; + constexpr std::ptrdiff_t m_iEffectIndex = 0xed0; + constexpr std::ptrdiff_t m_flStartTime = 0xed8; + constexpr std::ptrdiff_t m_flPreSimTime = 0xedc; + constexpr std::ptrdiff_t m_vServerControlPoints = 0xee0; + constexpr std::ptrdiff_t m_iServerControlPointAssignments = 0xf10; + constexpr std::ptrdiff_t m_hControlPointEnts = 0xf14; + constexpr std::ptrdiff_t m_bNoSave = 0x1014; + constexpr std::ptrdiff_t m_bNoFreeze = 0x1015; + constexpr std::ptrdiff_t m_bNoRamp = 0x1016; + constexpr std::ptrdiff_t m_bStartActive = 0x1017; + constexpr std::ptrdiff_t m_iszEffectName = 0x1018; + constexpr std::ptrdiff_t m_iszControlPointNames = 0x1020; + constexpr std::ptrdiff_t m_nDataCP = 0x1220; + constexpr std::ptrdiff_t m_vecDataCPValue = 0x1224; + constexpr std::ptrdiff_t m_nTintCP = 0x1230; + constexpr std::ptrdiff_t m_clrTint = 0x1234; + constexpr std::ptrdiff_t m_bOldActive = 0x1258; + constexpr std::ptrdiff_t m_bOldFrozen = 0x1259; +} + +namespace C_PathParticleRope { + constexpr std::ptrdiff_t m_bStartActive = 0x540; + constexpr std::ptrdiff_t m_flMaxSimulationTime = 0x544; + constexpr std::ptrdiff_t m_iszEffectName = 0x548; + constexpr std::ptrdiff_t m_PathNodes_Name = 0x550; + constexpr std::ptrdiff_t m_flParticleSpacing = 0x568; + constexpr std::ptrdiff_t m_flSlack = 0x56c; + constexpr std::ptrdiff_t m_flRadius = 0x570; + constexpr std::ptrdiff_t m_ColorTint = 0x574; + constexpr std::ptrdiff_t m_nEffectState = 0x578; + constexpr std::ptrdiff_t m_iEffectIndex = 0x580; + constexpr std::ptrdiff_t m_PathNodes_Position = 0x588; + constexpr std::ptrdiff_t m_PathNodes_TangentIn = 0x5a0; + constexpr std::ptrdiff_t m_PathNodes_TangentOut = 0x5b8; + constexpr std::ptrdiff_t m_PathNodes_Color = 0x5d0; + constexpr std::ptrdiff_t m_PathNodes_PinEnabled = 0x5e8; + constexpr std::ptrdiff_t m_PathNodes_RadiusScale = 0x600; +} + +namespace C_PathParticleRopeAlias_path_particle_rope_clientside { +} + +namespace C_DynamicLight { + constexpr std::ptrdiff_t m_Flags = 0xcc0; + constexpr std::ptrdiff_t m_LightStyle = 0xcc1; + constexpr std::ptrdiff_t m_Radius = 0xcc4; + constexpr std::ptrdiff_t m_Exponent = 0xcc8; + constexpr std::ptrdiff_t m_InnerAngle = 0xccc; + constexpr std::ptrdiff_t m_OuterAngle = 0xcd0; + constexpr std::ptrdiff_t m_SpotRadius = 0xcd4; +} + +namespace C_EnvScreenOverlay { + constexpr std::ptrdiff_t m_iszOverlayNames = 0x540; + constexpr std::ptrdiff_t m_flOverlayTimes = 0x590; + constexpr std::ptrdiff_t m_flStartTime = 0x5b8; + constexpr std::ptrdiff_t m_iDesiredOverlay = 0x5bc; + constexpr std::ptrdiff_t m_bIsActive = 0x5c0; + constexpr std::ptrdiff_t m_bWasActive = 0x5c1; + constexpr std::ptrdiff_t m_iCachedDesiredOverlay = 0x5c4; + constexpr std::ptrdiff_t m_iCurrentOverlay = 0x5c8; + constexpr std::ptrdiff_t m_flCurrentOverlayTime = 0x5cc; +} + +namespace C_FuncTrackTrain { + constexpr std::ptrdiff_t m_nLongAxis = 0xcc0; + constexpr std::ptrdiff_t m_flRadius = 0xcc4; + constexpr std::ptrdiff_t m_flLineLength = 0xcc8; +} + +namespace C_LightGlowOverlay { + constexpr std::ptrdiff_t m_vecOrigin = 0xd0; + constexpr std::ptrdiff_t m_vecDirection = 0xdc; + constexpr std::ptrdiff_t m_nMinDist = 0xe8; + constexpr std::ptrdiff_t m_nMaxDist = 0xec; + constexpr std::ptrdiff_t m_nOuterMaxDist = 0xf0; + constexpr std::ptrdiff_t m_bOneSided = 0xf4; + constexpr std::ptrdiff_t m_bModulateByDot = 0xf5; +} + +namespace C_LightGlow { + constexpr std::ptrdiff_t m_nHorizontalSize = 0xcc0; + constexpr std::ptrdiff_t m_nVerticalSize = 0xcc4; + constexpr std::ptrdiff_t m_nMinDist = 0xcc8; + constexpr std::ptrdiff_t m_nMaxDist = 0xccc; + constexpr std::ptrdiff_t m_nOuterMaxDist = 0xcd0; + constexpr std::ptrdiff_t m_flGlowProxySize = 0xcd4; + constexpr std::ptrdiff_t m_flHDRColorScale = 0xcd8; + constexpr std::ptrdiff_t m_Glow = 0xce0; +} + +namespace C_RagdollManager { + constexpr std::ptrdiff_t m_iCurrentMaxRagdollCount = 0x540; +} + +namespace C_SpotlightEnd { + constexpr std::ptrdiff_t m_flLightScale = 0xcc0; + constexpr std::ptrdiff_t m_Radius = 0xcc4; +} + +namespace C_PointValueRemapper { + constexpr std::ptrdiff_t m_bDisabled = 0x540; + constexpr std::ptrdiff_t m_bDisabledOld = 0x541; + constexpr std::ptrdiff_t m_bUpdateOnClient = 0x542; + constexpr std::ptrdiff_t m_nInputType = 0x544; + constexpr std::ptrdiff_t m_hRemapLineStart = 0x548; + constexpr std::ptrdiff_t m_hRemapLineEnd = 0x54c; + constexpr std::ptrdiff_t m_flMaximumChangePerSecond = 0x550; + constexpr std::ptrdiff_t m_flDisengageDistance = 0x554; + constexpr std::ptrdiff_t m_flEngageDistance = 0x558; + constexpr std::ptrdiff_t m_bRequiresUseKey = 0x55c; + constexpr std::ptrdiff_t m_nOutputType = 0x560; + constexpr std::ptrdiff_t m_hOutputEntities = 0x568; + constexpr std::ptrdiff_t m_nHapticsType = 0x580; + constexpr std::ptrdiff_t m_nMomentumType = 0x584; + constexpr std::ptrdiff_t m_flMomentumModifier = 0x588; + constexpr std::ptrdiff_t m_flSnapValue = 0x58c; + constexpr std::ptrdiff_t m_flCurrentMomentum = 0x590; + constexpr std::ptrdiff_t m_nRatchetType = 0x594; + constexpr std::ptrdiff_t m_flRatchetOffset = 0x598; + constexpr std::ptrdiff_t m_flInputOffset = 0x59c; + constexpr std::ptrdiff_t m_bEngaged = 0x5a0; + constexpr std::ptrdiff_t m_bFirstUpdate = 0x5a1; + constexpr std::ptrdiff_t m_flPreviousValue = 0x5a4; + constexpr std::ptrdiff_t m_flPreviousUpdateTickTime = 0x5a8; + constexpr std::ptrdiff_t m_vecPreviousTestPoint = 0x5ac; +} + +namespace C_PointWorldText { + constexpr std::ptrdiff_t m_bForceRecreateNextUpdate = 0xcc8; + constexpr std::ptrdiff_t m_messageText = 0xcd8; + constexpr std::ptrdiff_t m_FontName = 0xed8; + constexpr std::ptrdiff_t m_bEnabled = 0xf18; + constexpr std::ptrdiff_t m_bFullbright = 0xf19; + constexpr std::ptrdiff_t m_flWorldUnitsPerPx = 0xf1c; + constexpr std::ptrdiff_t m_flFontSize = 0xf20; + constexpr std::ptrdiff_t m_flDepthOffset = 0xf24; + constexpr std::ptrdiff_t m_Color = 0xf28; + constexpr std::ptrdiff_t m_nJustifyHorizontal = 0xf2c; + constexpr std::ptrdiff_t m_nJustifyVertical = 0xf30; + constexpr std::ptrdiff_t m_nReorientMode = 0xf34; +} + +namespace C_HandleTest { + constexpr std::ptrdiff_t m_Handle = 0x540; + constexpr std::ptrdiff_t m_bSendHandle = 0x544; +} + +namespace C_EnvWind { + constexpr std::ptrdiff_t m_EnvWindShared = 0x540; +} + +namespace C_BaseToggle { +} + +namespace C_BaseButton { + constexpr std::ptrdiff_t m_glowEntity = 0xcc0; + constexpr std::ptrdiff_t m_usable = 0xcc4; + constexpr std::ptrdiff_t m_szDisplayText = 0xcc8; +} + +namespace C_PrecipitationBlocker { +} + +namespace C_EntityDissolve { + constexpr std::ptrdiff_t m_flStartTime = 0xcc8; + constexpr std::ptrdiff_t m_flFadeInStart = 0xccc; + constexpr std::ptrdiff_t m_flFadeInLength = 0xcd0; + constexpr std::ptrdiff_t m_flFadeOutModelStart = 0xcd4; + constexpr std::ptrdiff_t m_flFadeOutModelLength = 0xcd8; + constexpr std::ptrdiff_t m_flFadeOutStart = 0xcdc; + constexpr std::ptrdiff_t m_flFadeOutLength = 0xce0; + constexpr std::ptrdiff_t m_flNextSparkTime = 0xce4; + constexpr std::ptrdiff_t m_nDissolveType = 0xce8; + constexpr std::ptrdiff_t m_vDissolverOrigin = 0xcec; + constexpr std::ptrdiff_t m_nMagnitude = 0xcf8; + constexpr std::ptrdiff_t m_bCoreExplode = 0xcfc; + constexpr std::ptrdiff_t m_bLinkedToServerEnt = 0xcfd; +} + +namespace C_EnvProjectedTexture { +} + +namespace C_EnvDecal { + constexpr std::ptrdiff_t m_hDecalMaterial = 0xcc0; + constexpr std::ptrdiff_t m_flWidth = 0xcc8; + constexpr std::ptrdiff_t m_flHeight = 0xccc; + constexpr std::ptrdiff_t m_flDepth = 0xcd0; + constexpr std::ptrdiff_t m_nRenderOrder = 0xcd4; + constexpr std::ptrdiff_t m_bProjectOnWorld = 0xcd8; + constexpr std::ptrdiff_t m_bProjectOnCharacters = 0xcd9; + constexpr std::ptrdiff_t m_bProjectOnWater = 0xcda; + constexpr std::ptrdiff_t m_flDepthSortBias = 0xcdc; +} + +namespace CFireOverlay { + constexpr std::ptrdiff_t m_pOwner = 0xd0; + constexpr std::ptrdiff_t m_vBaseColors = 0xd8; + constexpr std::ptrdiff_t m_flScale = 0x108; + constexpr std::ptrdiff_t m_nGUID = 0x10c; +} + +namespace C_FuncBrush { +} + +namespace C_FuncElectrifiedVolume { + constexpr std::ptrdiff_t m_nAmbientEffect = 0xcc0; + constexpr std::ptrdiff_t m_EffectName = 0xcc8; + constexpr std::ptrdiff_t m_bState = 0xcd0; +} + +namespace C_FuncRotating { +} + +namespace C_Breakable { +} + +namespace C_PhysBox { +} + +namespace C_RopeKeyframe { + constexpr std::ptrdiff_t m_LinksTouchingSomething = 0xcc8; + constexpr std::ptrdiff_t m_nLinksTouchingSomething = 0xccc; + constexpr std::ptrdiff_t m_bApplyWind = 0xcd0; + constexpr std::ptrdiff_t m_fPrevLockedPoints = 0xcd4; + constexpr std::ptrdiff_t m_iForcePointMoveCounter = 0xcd8; + constexpr std::ptrdiff_t m_bPrevEndPointPos = 0xcdc; + constexpr std::ptrdiff_t m_vPrevEndPointPos = 0xce0; + constexpr std::ptrdiff_t m_flCurScroll = 0xcf8; + constexpr std::ptrdiff_t m_flScrollSpeed = 0xcfc; + constexpr std::ptrdiff_t m_RopeFlags = 0xd00; + constexpr std::ptrdiff_t m_iRopeMaterialModelIndex = 0xd08; + constexpr std::ptrdiff_t m_LightValues = 0xf80; + constexpr std::ptrdiff_t m_nSegments = 0xff8; + constexpr std::ptrdiff_t m_hStartPoint = 0xffc; + constexpr std::ptrdiff_t m_hEndPoint = 0x1000; + constexpr std::ptrdiff_t m_iStartAttachment = 0x1004; + constexpr std::ptrdiff_t m_iEndAttachment = 0x1005; + constexpr std::ptrdiff_t m_Subdiv = 0x1006; + constexpr std::ptrdiff_t m_RopeLength = 0x1008; + constexpr std::ptrdiff_t m_Slack = 0x100a; + constexpr std::ptrdiff_t m_TextureScale = 0x100c; + constexpr std::ptrdiff_t m_fLockedPoints = 0x1010; + constexpr std::ptrdiff_t m_nChangeCount = 0x1011; + constexpr std::ptrdiff_t m_Width = 0x1014; + constexpr std::ptrdiff_t m_PhysicsDelegate = 0x1018; + constexpr std::ptrdiff_t m_hMaterial = 0x1028; + constexpr std::ptrdiff_t m_TextureHeight = 0x1030; + constexpr std::ptrdiff_t m_vecImpulse = 0x1034; + constexpr std::ptrdiff_t m_vecPreviousImpulse = 0x1040; + constexpr std::ptrdiff_t m_flCurrentGustTimer = 0x104c; + constexpr std::ptrdiff_t m_flCurrentGustLifetime = 0x1050; + constexpr std::ptrdiff_t m_flTimeToNextGust = 0x1054; + constexpr std::ptrdiff_t m_vWindDir = 0x1058; + constexpr std::ptrdiff_t m_vColorMod = 0x1064; + constexpr std::ptrdiff_t m_vCachedEndPointAttachmentPos = 0x1070; + constexpr std::ptrdiff_t m_vCachedEndPointAttachmentAngle = 0x1088; + constexpr std::ptrdiff_t m_bConstrainBetweenEndpoints = 0x10a0; + constexpr std::ptrdiff_t m_bEndPointAttachmentPositionsDirty = 0x0; + constexpr std::ptrdiff_t m_bEndPointAttachmentAnglesDirty = 0x0; + constexpr std::ptrdiff_t m_bNewDataThisFrame = 0x0; + constexpr std::ptrdiff_t m_bPhysicsInitted = 0x0; +} + +namespace C_SceneEntity { + constexpr std::ptrdiff_t m_bIsPlayingBack = 0x548; + constexpr std::ptrdiff_t m_bPaused = 0x549; + constexpr std::ptrdiff_t m_bMultiplayer = 0x54a; + constexpr std::ptrdiff_t m_bAutogenerated = 0x54b; + constexpr std::ptrdiff_t m_flForceClientTime = 0x54c; + constexpr std::ptrdiff_t m_nSceneStringIndex = 0x550; + constexpr std::ptrdiff_t m_bClientOnly = 0x552; + constexpr std::ptrdiff_t m_hOwner = 0x554; + constexpr std::ptrdiff_t m_hActorList = 0x558; + constexpr std::ptrdiff_t m_bWasPlaying = 0x570; + constexpr std::ptrdiff_t m_QueuedEvents = 0x580; + constexpr std::ptrdiff_t m_flCurrentTime = 0x598; +} + +namespace C_SunGlowOverlay { + constexpr std::ptrdiff_t m_bModulateByDot = 0xd0; +} + +namespace C_Sun { + constexpr std::ptrdiff_t m_fxSSSunFlareEffectIndex = 0xcc0; + constexpr std::ptrdiff_t m_fxSunFlareEffectIndex = 0xcc4; + constexpr std::ptrdiff_t m_fdistNormalize = 0xcc8; + constexpr std::ptrdiff_t m_vSunPos = 0xccc; + constexpr std::ptrdiff_t m_vDirection = 0xcd8; + constexpr std::ptrdiff_t m_iszEffectName = 0xce8; + constexpr std::ptrdiff_t m_iszSSEffectName = 0xcf0; + constexpr std::ptrdiff_t m_clrOverlay = 0xcf8; + constexpr std::ptrdiff_t m_bOn = 0xcfc; + constexpr std::ptrdiff_t m_bmaxColor = 0xcfd; + constexpr std::ptrdiff_t m_flSize = 0xd00; + constexpr std::ptrdiff_t m_flHazeScale = 0xd04; + constexpr std::ptrdiff_t m_flRotation = 0xd08; + constexpr std::ptrdiff_t m_flHDRColorScale = 0xd0c; + constexpr std::ptrdiff_t m_flAlphaHaze = 0xd10; + constexpr std::ptrdiff_t m_flAlphaScale = 0xd14; + constexpr std::ptrdiff_t m_flAlphaHdr = 0xd18; + constexpr std::ptrdiff_t m_flFarZScale = 0xd1c; +} + +namespace C_BaseTrigger { + constexpr std::ptrdiff_t m_bDisabled = 0xcc0; + constexpr std::ptrdiff_t m_bClientSidePredicted = 0xcc1; +} + +namespace C_TriggerVolume { +} + +namespace C_TriggerMultiple { +} + +namespace C_TriggerLerpObject { +} + +namespace CClientAlphaProperty { + constexpr std::ptrdiff_t m_nRenderFX = 0x10; + constexpr std::ptrdiff_t m_nRenderMode = 0x11; + constexpr std::ptrdiff_t m_bAlphaOverride = 0x0; + constexpr std::ptrdiff_t m_bShadowAlphaOverride = 0x0; + constexpr std::ptrdiff_t m_nReserved = 0x0; + constexpr std::ptrdiff_t m_nAlpha = 0x13; + constexpr std::ptrdiff_t m_nDesyncOffset = 0x14; + constexpr std::ptrdiff_t m_nReserved2 = 0x16; + constexpr std::ptrdiff_t m_nDistFadeStart = 0x18; + constexpr std::ptrdiff_t m_nDistFadeEnd = 0x1a; + constexpr std::ptrdiff_t m_flFadeScale = 0x1c; + constexpr std::ptrdiff_t m_flRenderFxStartTime = 0x20; + constexpr std::ptrdiff_t m_flRenderFxDuration = 0x24; +} + +namespace C_Beam { + constexpr std::ptrdiff_t m_flFrameRate = 0xcc0; + constexpr std::ptrdiff_t m_flHDRColorScale = 0xcc4; + constexpr std::ptrdiff_t m_flFireTime = 0xcc8; + constexpr std::ptrdiff_t m_flDamage = 0xccc; + constexpr std::ptrdiff_t m_nNumBeamEnts = 0xcd0; + constexpr std::ptrdiff_t m_queryHandleHalo = 0xcd4; + constexpr std::ptrdiff_t m_hBaseMaterial = 0xcf8; + constexpr std::ptrdiff_t m_nHaloIndex = 0xd00; + constexpr std::ptrdiff_t m_nBeamType = 0xd08; + constexpr std::ptrdiff_t m_nBeamFlags = 0xd0c; + constexpr std::ptrdiff_t m_hAttachEntity = 0xd10; + constexpr std::ptrdiff_t m_nAttachIndex = 0xd38; + constexpr std::ptrdiff_t m_fWidth = 0xd44; + constexpr std::ptrdiff_t m_fEndWidth = 0xd48; + constexpr std::ptrdiff_t m_fFadeLength = 0xd4c; + constexpr std::ptrdiff_t m_fHaloScale = 0xd50; + constexpr std::ptrdiff_t m_fAmplitude = 0xd54; + constexpr std::ptrdiff_t m_fStartFrame = 0xd58; + constexpr std::ptrdiff_t m_fSpeed = 0xd5c; + constexpr std::ptrdiff_t m_flFrame = 0xd60; + constexpr std::ptrdiff_t m_nClipStyle = 0xd64; + constexpr std::ptrdiff_t m_bTurnedOff = 0xd68; + constexpr std::ptrdiff_t m_vecEndPos = 0xd6c; + constexpr std::ptrdiff_t m_hEndEntity = 0xd78; +} + +namespace CPrecipitationVData { + constexpr std::ptrdiff_t m_szParticlePrecipitationEffect = 0x28; + constexpr std::ptrdiff_t m_flInnerDistance = 0x108; + constexpr std::ptrdiff_t m_nAttachType = 0x10c; + constexpr std::ptrdiff_t m_bBatchSameVolumeType = 0x110; + constexpr std::ptrdiff_t m_nRTEnvCP = 0x114; + constexpr std::ptrdiff_t m_nRTEnvCPComponent = 0x118; + constexpr std::ptrdiff_t m_szModifier = 0x120; +} + +namespace C_Sprite { + constexpr std::ptrdiff_t m_hSpriteMaterial = 0xcd8; + constexpr std::ptrdiff_t m_hAttachedToEntity = 0xce0; + constexpr std::ptrdiff_t m_nAttachment = 0xce4; + constexpr std::ptrdiff_t m_flSpriteFramerate = 0xce8; + constexpr std::ptrdiff_t m_flFrame = 0xcec; + constexpr std::ptrdiff_t m_flDieTime = 0xcf0; + constexpr std::ptrdiff_t m_nBrightness = 0xd00; + constexpr std::ptrdiff_t m_flBrightnessDuration = 0xd04; + constexpr std::ptrdiff_t m_flSpriteScale = 0xd08; + constexpr std::ptrdiff_t m_flScaleDuration = 0xd0c; + constexpr std::ptrdiff_t m_bWorldSpaceScale = 0xd10; + constexpr std::ptrdiff_t m_flGlowProxySize = 0xd14; + constexpr std::ptrdiff_t m_flHDRColorScale = 0xd18; + constexpr std::ptrdiff_t m_flLastTime = 0xd1c; + constexpr std::ptrdiff_t m_flMaxFrame = 0xd20; + constexpr std::ptrdiff_t m_flStartScale = 0xd24; + constexpr std::ptrdiff_t m_flDestScale = 0xd28; + constexpr std::ptrdiff_t m_flScaleTimeStart = 0xd2c; + constexpr std::ptrdiff_t m_nStartBrightness = 0xd30; + constexpr std::ptrdiff_t m_nDestBrightness = 0xd34; + constexpr std::ptrdiff_t m_flBrightnessTimeStart = 0xd38; + constexpr std::ptrdiff_t m_hOldSpriteMaterial = 0xd40; + constexpr std::ptrdiff_t m_nSpriteWidth = 0xde8; + constexpr std::ptrdiff_t m_nSpriteHeight = 0xdec; +} + +namespace C_SpriteOriented { +} + +namespace C_BaseClientUIEntity { + constexpr std::ptrdiff_t m_bEnabled = 0xcc8; + constexpr std::ptrdiff_t m_DialogXMLName = 0xcd0; + constexpr std::ptrdiff_t m_PanelClassName = 0xcd8; + constexpr std::ptrdiff_t m_PanelID = 0xce0; +} + +namespace C_PointClientUIDialog { + constexpr std::ptrdiff_t m_hActivator = 0xcf0; + constexpr std::ptrdiff_t m_bStartEnabled = 0xcf4; +} + +namespace C_PointClientUIHUD { + constexpr std::ptrdiff_t m_bCheckCSSClasses = 0xcf8; + constexpr std::ptrdiff_t m_bIgnoreInput = 0xe80; + constexpr std::ptrdiff_t m_flWidth = 0xe84; + constexpr std::ptrdiff_t m_flHeight = 0xe88; + constexpr std::ptrdiff_t m_flDPI = 0xe8c; + constexpr std::ptrdiff_t m_flInteractDistance = 0xe90; + constexpr std::ptrdiff_t m_flDepthOffset = 0xe94; + constexpr std::ptrdiff_t m_unOwnerContext = 0xe98; + constexpr std::ptrdiff_t m_unHorizontalAlign = 0xe9c; + constexpr std::ptrdiff_t m_unVerticalAlign = 0xea0; + constexpr std::ptrdiff_t m_unOrientation = 0xea4; + constexpr std::ptrdiff_t m_bAllowInteractionFromAllSceneWorlds = 0xea8; + constexpr std::ptrdiff_t m_vecCSSClasses = 0xeb0; +} + +namespace C_PointClientUIWorldPanel { + constexpr std::ptrdiff_t m_bForceRecreateNextUpdate = 0xcf8; + constexpr std::ptrdiff_t m_bMoveViewToPlayerNextThink = 0xcf9; + constexpr std::ptrdiff_t m_bCheckCSSClasses = 0xcfa; + constexpr std::ptrdiff_t m_anchorDeltaTransform = 0xd00; + constexpr std::ptrdiff_t m_pOffScreenIndicator = 0xea0; + constexpr std::ptrdiff_t m_bIgnoreInput = 0xec8; + constexpr std::ptrdiff_t m_bLit = 0xec9; + constexpr std::ptrdiff_t m_bFollowPlayerAcrossTeleport = 0xeca; + constexpr std::ptrdiff_t m_flWidth = 0xecc; + constexpr std::ptrdiff_t m_flHeight = 0xed0; + constexpr std::ptrdiff_t m_flDPI = 0xed4; + constexpr std::ptrdiff_t m_flInteractDistance = 0xed8; + constexpr std::ptrdiff_t m_flDepthOffset = 0xedc; + constexpr std::ptrdiff_t m_unOwnerContext = 0xee0; + constexpr std::ptrdiff_t m_unHorizontalAlign = 0xee4; + constexpr std::ptrdiff_t m_unVerticalAlign = 0xee8; + constexpr std::ptrdiff_t m_unOrientation = 0xeec; + constexpr std::ptrdiff_t m_bAllowInteractionFromAllSceneWorlds = 0xef0; + constexpr std::ptrdiff_t m_vecCSSClasses = 0xef8; + constexpr std::ptrdiff_t m_bOpaque = 0xf10; + constexpr std::ptrdiff_t m_bNoDepth = 0xf11; + constexpr std::ptrdiff_t m_bRenderBackface = 0xf12; + constexpr std::ptrdiff_t m_bUseOffScreenIndicator = 0xf13; + constexpr std::ptrdiff_t m_bExcludeFromSaveGames = 0xf14; + constexpr std::ptrdiff_t m_bGrabbable = 0xf15; + constexpr std::ptrdiff_t m_bOnlyRenderToTexture = 0xf16; + constexpr std::ptrdiff_t m_bDisableMipGen = 0xf17; + constexpr std::ptrdiff_t m_nExplicitImageLayout = 0xf18; +} + +namespace CPointOffScreenIndicatorUi { + constexpr std::ptrdiff_t m_bBeenEnabled = 0xf20; + constexpr std::ptrdiff_t m_bHide = 0xf21; + constexpr std::ptrdiff_t m_flSeenTargetTime = 0xf24; + constexpr std::ptrdiff_t m_pTargetPanel = 0xf28; +} + +namespace C_PointClientUIWorldTextPanel { + constexpr std::ptrdiff_t m_messageText = 0xf20; +} + +namespace CInfoOffscreenPanoramaTexture { + constexpr std::ptrdiff_t m_bDisabled = 0x540; + constexpr std::ptrdiff_t m_nResolutionX = 0x544; + constexpr std::ptrdiff_t m_nResolutionY = 0x548; + constexpr std::ptrdiff_t m_szLayoutFileName = 0x550; + constexpr std::ptrdiff_t m_RenderAttrName = 0x558; + constexpr std::ptrdiff_t m_TargetEntities = 0x560; + constexpr std::ptrdiff_t m_nTargetChangeCount = 0x578; + constexpr std::ptrdiff_t m_vecCSSClasses = 0x580; + constexpr std::ptrdiff_t m_bCheckCSSClasses = 0x6f8; +} + +namespace C_EconItemView { + constexpr std::ptrdiff_t m_bInventoryImageRgbaRequested = 0x60; + constexpr std::ptrdiff_t m_bInventoryImageTriedCache = 0x61; + constexpr std::ptrdiff_t m_nInventoryImageRgbaWidth = 0x80; + constexpr std::ptrdiff_t m_nInventoryImageRgbaHeight = 0x84; + constexpr std::ptrdiff_t m_szCurrentLoadCachedFileName = 0x88; + constexpr std::ptrdiff_t m_bRestoreCustomMaterialAfterPrecache = 0x1b8; + constexpr std::ptrdiff_t m_iItemDefinitionIndex = 0x1ba; + constexpr std::ptrdiff_t m_iEntityQuality = 0x1bc; + constexpr std::ptrdiff_t m_iEntityLevel = 0x1c0; + constexpr std::ptrdiff_t m_iItemID = 0x1c8; + constexpr std::ptrdiff_t m_iItemIDHigh = 0x1d0; + constexpr std::ptrdiff_t m_iItemIDLow = 0x1d4; + constexpr std::ptrdiff_t m_iAccountID = 0x1d8; + constexpr std::ptrdiff_t m_iInventoryPosition = 0x1dc; + constexpr std::ptrdiff_t m_bInitialized = 0x1e8; + constexpr std::ptrdiff_t m_bIsStoreItem = 0x1e9; + constexpr std::ptrdiff_t m_bIsTradeItem = 0x1ea; + constexpr std::ptrdiff_t m_iEntityQuantity = 0x1ec; + constexpr std::ptrdiff_t m_iRarityOverride = 0x1f0; + constexpr std::ptrdiff_t m_iQualityOverride = 0x1f4; + constexpr std::ptrdiff_t m_unClientFlags = 0x1f8; + constexpr std::ptrdiff_t m_unOverrideStyle = 0x1f9; + constexpr std::ptrdiff_t m_AttributeList = 0x210; + constexpr std::ptrdiff_t m_NetworkedDynamicAttributes = 0x270; + constexpr std::ptrdiff_t m_szCustomName = 0x2d0; + constexpr std::ptrdiff_t m_szCustomNameOverride = 0x371; + constexpr std::ptrdiff_t m_bInitializedTags = 0x440; +} + +namespace CBombTarget { + constexpr std::ptrdiff_t m_bBombPlantedHere = 0xcc8; +} + +namespace CHostageRescueZoneShim { +} + +namespace CHostageRescueZone { +} + +namespace C_TriggerBuoyancy { + constexpr std::ptrdiff_t m_BuoyancyHelper = 0xcc8; + constexpr std::ptrdiff_t m_flFluidDensity = 0xcf0; +} + +namespace CFuncWater { + constexpr std::ptrdiff_t m_BuoyancyHelper = 0xcc0; +} + +namespace CWaterSplasher { +} + +namespace CCSPlayerController { + constexpr std::ptrdiff_t m_pInGameMoneyServices = 0x6d0; + constexpr std::ptrdiff_t m_pInventoryServices = 0x6d8; + constexpr std::ptrdiff_t m_pActionTrackingServices = 0x6e0; + constexpr std::ptrdiff_t m_pDamageServices = 0x6e8; + constexpr std::ptrdiff_t m_iPing = 0x6f0; + constexpr std::ptrdiff_t m_bHasCommunicationAbuseMute = 0x6f4; + constexpr std::ptrdiff_t m_szCrosshairCodes = 0x6f8; + constexpr std::ptrdiff_t m_iPendingTeamNum = 0x700; + constexpr std::ptrdiff_t m_flForceTeamTime = 0x704; + constexpr std::ptrdiff_t m_iCompTeammateColor = 0x708; + constexpr std::ptrdiff_t m_bEverPlayedOnTeam = 0x70c; + constexpr std::ptrdiff_t m_flPreviousForceJoinTeamTime = 0x710; + constexpr std::ptrdiff_t m_szClan = 0x718; + constexpr std::ptrdiff_t m_sSanitizedPlayerName = 0x720; + constexpr std::ptrdiff_t m_iCoachingTeam = 0x728; + constexpr std::ptrdiff_t m_nPlayerDominated = 0x730; + constexpr std::ptrdiff_t m_nPlayerDominatingMe = 0x738; + constexpr std::ptrdiff_t m_iCompetitiveRanking = 0x740; + constexpr std::ptrdiff_t m_iCompetitiveWins = 0x744; + constexpr std::ptrdiff_t m_iCompetitiveRankType = 0x748; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Win = 0x74c; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Loss = 0x750; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Tie = 0x754; + constexpr std::ptrdiff_t m_nEndMatchNextMapVote = 0x758; + constexpr std::ptrdiff_t m_unActiveQuestId = 0x75c; + constexpr std::ptrdiff_t m_nQuestProgressReason = 0x760; + constexpr std::ptrdiff_t m_unPlayerTvControlFlags = 0x764; + constexpr std::ptrdiff_t m_iDraftIndex = 0x7d0; + constexpr std::ptrdiff_t m_msQueuedModeDisconnectionTimestamp = 0x7d4; + constexpr std::ptrdiff_t m_uiAbandonRecordedReason = 0x7d8; + constexpr std::ptrdiff_t m_bEverFullyConnected = 0x7dc; + constexpr std::ptrdiff_t m_bAbandonAllowsSurrender = 0x7dd; + constexpr std::ptrdiff_t m_bAbandonOffersInstantSurrender = 0x7de; + constexpr std::ptrdiff_t m_bDisconnection1MinWarningPrinted = 0x7df; + constexpr std::ptrdiff_t m_bScoreReported = 0x7e0; + constexpr std::ptrdiff_t m_nDisconnectionTick = 0x7e4; + constexpr std::ptrdiff_t m_bControllingBot = 0x7f0; + constexpr std::ptrdiff_t m_bHasControlledBotThisRound = 0x7f1; + constexpr std::ptrdiff_t m_bHasBeenControlledByPlayerThisRound = 0x7f2; + constexpr std::ptrdiff_t m_nBotsControlledThisRound = 0x7f4; + constexpr std::ptrdiff_t m_bCanControlObservedBot = 0x7f8; + constexpr std::ptrdiff_t m_hPlayerPawn = 0x7fc; + constexpr std::ptrdiff_t m_hObserverPawn = 0x800; + constexpr std::ptrdiff_t m_bPawnIsAlive = 0x804; + constexpr std::ptrdiff_t m_iPawnHealth = 0x808; + constexpr std::ptrdiff_t m_iPawnArmor = 0x80c; + constexpr std::ptrdiff_t m_bPawnHasDefuser = 0x810; + constexpr std::ptrdiff_t m_bPawnHasHelmet = 0x811; + constexpr std::ptrdiff_t m_nPawnCharacterDefIndex = 0x812; + constexpr std::ptrdiff_t m_iPawnLifetimeStart = 0x814; + constexpr std::ptrdiff_t m_iPawnLifetimeEnd = 0x818; + constexpr std::ptrdiff_t m_iPawnGunGameLevel = 0x81c; + constexpr std::ptrdiff_t m_iPawnBotDifficulty = 0x820; + constexpr std::ptrdiff_t m_hOriginalControllerOfCurrentPawn = 0x824; + constexpr std::ptrdiff_t m_iScore = 0x828; + constexpr std::ptrdiff_t m_vecKills = 0x830; + constexpr std::ptrdiff_t m_iMVPs = 0x848; + constexpr std::ptrdiff_t m_bIsPlayerNameDirty = 0x84c; +} + +namespace C_FootstepControl { + constexpr std::ptrdiff_t m_source = 0xcc8; + constexpr std::ptrdiff_t m_destination = 0xcd0; +} + +namespace CWeaponCSBaseVData { + constexpr std::ptrdiff_t m_WeaponType = 0x240; + constexpr std::ptrdiff_t m_WeaponCategory = 0x244; + constexpr std::ptrdiff_t m_szViewModel = 0x248; + constexpr std::ptrdiff_t m_szPlayerModel = 0x328; + constexpr std::ptrdiff_t m_szWorldDroppedModel = 0x408; + constexpr std::ptrdiff_t m_szAimsightLensMaskModel = 0x4e8; + constexpr std::ptrdiff_t m_szMagazineModel = 0x5c8; + constexpr std::ptrdiff_t m_szHeatEffect = 0x6a8; + constexpr std::ptrdiff_t m_szEjectBrassEffect = 0x788; + constexpr std::ptrdiff_t m_szMuzzleFlashParticleAlt = 0x868; + constexpr std::ptrdiff_t m_szMuzzleFlashThirdPersonParticle = 0x948; + constexpr std::ptrdiff_t m_szMuzzleFlashThirdPersonParticleAlt = 0xa28; + constexpr std::ptrdiff_t m_szTracerParticle = 0xb08; + constexpr std::ptrdiff_t m_GearSlot = 0xbe8; + constexpr std::ptrdiff_t m_GearSlotPosition = 0xbec; + constexpr std::ptrdiff_t m_DefaultLoadoutSlot = 0xbf0; + constexpr std::ptrdiff_t m_sWrongTeamMsg = 0xbf8; + constexpr std::ptrdiff_t m_nPrice = 0xc00; + constexpr std::ptrdiff_t m_nKillAward = 0xc04; + constexpr std::ptrdiff_t m_nPrimaryReserveAmmoMax = 0xc08; + constexpr std::ptrdiff_t m_nSecondaryReserveAmmoMax = 0xc0c; + constexpr std::ptrdiff_t m_bMeleeWeapon = 0xc10; + constexpr std::ptrdiff_t m_bHasBurstMode = 0xc11; + constexpr std::ptrdiff_t m_bIsRevolver = 0xc12; + constexpr std::ptrdiff_t m_bCannotShootUnderwater = 0xc13; + constexpr std::ptrdiff_t m_szName = 0xc18; + constexpr std::ptrdiff_t m_szAnimExtension = 0xc20; + constexpr std::ptrdiff_t m_eSilencerType = 0xc28; + constexpr std::ptrdiff_t m_nCrosshairMinDistance = 0xc2c; + constexpr std::ptrdiff_t m_nCrosshairDeltaDistance = 0xc30; + constexpr std::ptrdiff_t m_flCycleTime = 0xc34; + constexpr std::ptrdiff_t m_flMaxSpeed = 0xc3c; + constexpr std::ptrdiff_t m_flSpread = 0xc44; + constexpr std::ptrdiff_t m_flInaccuracyCrouch = 0xc4c; + constexpr std::ptrdiff_t m_flInaccuracyStand = 0xc54; + constexpr std::ptrdiff_t m_flInaccuracyJump = 0xc5c; + constexpr std::ptrdiff_t m_flInaccuracyLand = 0xc64; + constexpr std::ptrdiff_t m_flInaccuracyLadder = 0xc6c; + constexpr std::ptrdiff_t m_flInaccuracyFire = 0xc74; + constexpr std::ptrdiff_t m_flInaccuracyMove = 0xc7c; + constexpr std::ptrdiff_t m_flRecoilAngle = 0xc84; + constexpr std::ptrdiff_t m_flRecoilAngleVariance = 0xc8c; + constexpr std::ptrdiff_t m_flRecoilMagnitude = 0xc94; + constexpr std::ptrdiff_t m_flRecoilMagnitudeVariance = 0xc9c; + constexpr std::ptrdiff_t m_nTracerFrequency = 0xca4; + constexpr std::ptrdiff_t m_flInaccuracyJumpInitial = 0xcac; + constexpr std::ptrdiff_t m_flInaccuracyJumpApex = 0xcb0; + constexpr std::ptrdiff_t m_flInaccuracyReload = 0xcb4; + constexpr std::ptrdiff_t m_nRecoilSeed = 0xcb8; + constexpr std::ptrdiff_t m_nSpreadSeed = 0xcbc; + constexpr std::ptrdiff_t m_flTimeToIdleAfterFire = 0xcc0; + constexpr std::ptrdiff_t m_flIdleInterval = 0xcc4; + constexpr std::ptrdiff_t m_flAttackMovespeedFactor = 0xcc8; + constexpr std::ptrdiff_t m_flHeatPerShot = 0xccc; + constexpr std::ptrdiff_t m_flInaccuracyPitchShift = 0xcd0; + constexpr std::ptrdiff_t m_flInaccuracyAltSoundThreshold = 0xcd4; + constexpr std::ptrdiff_t m_flBotAudibleRange = 0xcd8; + constexpr std::ptrdiff_t m_szUseRadioSubtitle = 0xce0; + constexpr std::ptrdiff_t m_bUnzoomsAfterShot = 0xce8; + constexpr std::ptrdiff_t m_bHideViewModelWhenZoomed = 0xce9; + constexpr std::ptrdiff_t m_nZoomLevels = 0xcec; + constexpr std::ptrdiff_t m_nZoomFOV1 = 0xcf0; + constexpr std::ptrdiff_t m_nZoomFOV2 = 0xcf4; + constexpr std::ptrdiff_t m_flZoomTime0 = 0xcf8; + constexpr std::ptrdiff_t m_flZoomTime1 = 0xcfc; + constexpr std::ptrdiff_t m_flZoomTime2 = 0xd00; + constexpr std::ptrdiff_t m_flIronSightPullUpSpeed = 0xd04; + constexpr std::ptrdiff_t m_flIronSightPutDownSpeed = 0xd08; + constexpr std::ptrdiff_t m_flIronSightFOV = 0xd0c; + constexpr std::ptrdiff_t m_flIronSightPivotForward = 0xd10; + constexpr std::ptrdiff_t m_flIronSightLooseness = 0xd14; + constexpr std::ptrdiff_t m_angPivotAngle = 0xd18; + constexpr std::ptrdiff_t m_vecIronSightEyePos = 0xd24; + constexpr std::ptrdiff_t m_nDamage = 0xd30; + constexpr std::ptrdiff_t m_flHeadshotMultiplier = 0xd34; + constexpr std::ptrdiff_t m_flArmorRatio = 0xd38; + constexpr std::ptrdiff_t m_flPenetration = 0xd3c; + constexpr std::ptrdiff_t m_flRange = 0xd40; + constexpr std::ptrdiff_t m_flRangeModifier = 0xd44; + constexpr std::ptrdiff_t m_flFlinchVelocityModifierLarge = 0xd48; + constexpr std::ptrdiff_t m_flFlinchVelocityModifierSmall = 0xd4c; + constexpr std::ptrdiff_t m_flRecoveryTimeCrouch = 0xd50; + constexpr std::ptrdiff_t m_flRecoveryTimeStand = 0xd54; + constexpr std::ptrdiff_t m_flRecoveryTimeCrouchFinal = 0xd58; + constexpr std::ptrdiff_t m_flRecoveryTimeStandFinal = 0xd5c; + constexpr std::ptrdiff_t m_nRecoveryTransitionStartBullet = 0xd60; + constexpr std::ptrdiff_t m_nRecoveryTransitionEndBullet = 0xd64; + constexpr std::ptrdiff_t m_flThrowVelocity = 0xd68; + constexpr std::ptrdiff_t m_vSmokeColor = 0xd6c; + constexpr std::ptrdiff_t m_szAnimClass = 0xd78; +} + +namespace C_InfoInstructorHintHostageRescueZone { +} + +namespace C_PlayerSprayDecal { + constexpr std::ptrdiff_t m_nUniqueID = 0xcc0; + constexpr std::ptrdiff_t m_unAccountID = 0xcc4; + constexpr std::ptrdiff_t m_unTraceID = 0xcc8; + constexpr std::ptrdiff_t m_rtGcTime = 0xccc; + constexpr std::ptrdiff_t m_vecEndPos = 0xcd0; + constexpr std::ptrdiff_t m_vecStart = 0xcdc; + constexpr std::ptrdiff_t m_vecLeft = 0xce8; + constexpr std::ptrdiff_t m_vecNormal = 0xcf4; + constexpr std::ptrdiff_t m_nPlayer = 0xd00; + constexpr std::ptrdiff_t m_nEntity = 0xd04; + constexpr std::ptrdiff_t m_nHitbox = 0xd08; + constexpr std::ptrdiff_t m_flCreationTime = 0xd0c; + constexpr std::ptrdiff_t m_nTintID = 0xd10; + constexpr std::ptrdiff_t m_nVersion = 0xd14; + constexpr std::ptrdiff_t m_ubSignature = 0xd15; + constexpr std::ptrdiff_t m_SprayRenderHelper = 0xda0; +} + +namespace C_FuncConveyor { + constexpr std::ptrdiff_t m_vecMoveDirEntitySpace = 0xcc8; + constexpr std::ptrdiff_t m_flTargetSpeed = 0xcd4; + constexpr std::ptrdiff_t m_nTransitionStartTick = 0xcd8; + constexpr std::ptrdiff_t m_nTransitionDurationTicks = 0xcdc; + constexpr std::ptrdiff_t m_flTransitionStartSpeed = 0xce0; + constexpr std::ptrdiff_t m_hConveyorModels = 0xce8; + constexpr std::ptrdiff_t m_flCurrentConveyorOffset = 0xd00; + constexpr std::ptrdiff_t m_flCurrentConveyorSpeed = 0xd04; +} + +namespace CGrenadeTracer { + constexpr std::ptrdiff_t m_flTracerDuration = 0xce0; + constexpr std::ptrdiff_t m_nType = 0xce4; +} + +namespace C_Inferno { + constexpr std::ptrdiff_t m_nfxFireDamageEffect = 0xd00; + constexpr std::ptrdiff_t m_fireXDelta = 0xd04; + constexpr std::ptrdiff_t m_fireYDelta = 0xe04; + constexpr std::ptrdiff_t m_fireZDelta = 0xf04; + constexpr std::ptrdiff_t m_fireParentXDelta = 0x1004; + constexpr std::ptrdiff_t m_fireParentYDelta = 0x1104; + constexpr std::ptrdiff_t m_fireParentZDelta = 0x1204; + constexpr std::ptrdiff_t m_bFireIsBurning = 0x1304; + constexpr std::ptrdiff_t m_BurnNormal = 0x1344; + constexpr std::ptrdiff_t m_fireCount = 0x1644; + constexpr std::ptrdiff_t m_nInfernoType = 0x1648; + constexpr std::ptrdiff_t m_nFireLifetime = 0x164c; + constexpr std::ptrdiff_t m_bInPostEffectTime = 0x1650; + constexpr std::ptrdiff_t m_lastFireCount = 0x1654; + constexpr std::ptrdiff_t m_nFireEffectTickBegin = 0x1658; + constexpr std::ptrdiff_t m_drawableCount = 0x8260; + constexpr std::ptrdiff_t m_blosCheck = 0x8264; + constexpr std::ptrdiff_t m_nlosperiod = 0x8268; + constexpr std::ptrdiff_t m_maxFireHalfWidth = 0x826c; + constexpr std::ptrdiff_t m_maxFireHeight = 0x8270; + constexpr std::ptrdiff_t m_minBounds = 0x8274; + constexpr std::ptrdiff_t m_maxBounds = 0x8280; + constexpr std::ptrdiff_t m_flLastGrassBurnThink = 0x828c; +} + +namespace C_FireCrackerBlast { +} + +namespace C_BarnLight { + constexpr std::ptrdiff_t m_bEnabled = 0xcc0; + constexpr std::ptrdiff_t m_nColorMode = 0xcc4; + constexpr std::ptrdiff_t m_Color = 0xcc8; + constexpr std::ptrdiff_t m_flColorTemperature = 0xccc; + constexpr std::ptrdiff_t m_flBrightness = 0xcd0; + constexpr std::ptrdiff_t m_flBrightnessScale = 0xcd4; + constexpr std::ptrdiff_t m_nDirectLight = 0xcd8; + constexpr std::ptrdiff_t m_nBakedShadowIndex = 0xcdc; + constexpr std::ptrdiff_t m_nLuminaireShape = 0xce0; + constexpr std::ptrdiff_t m_flLuminaireSize = 0xce4; + constexpr std::ptrdiff_t m_flLuminaireAnisotropy = 0xce8; + constexpr std::ptrdiff_t m_LightStyleString = 0xcf0; + constexpr std::ptrdiff_t m_flLightStyleStartTime = 0xcf8; + constexpr std::ptrdiff_t m_QueuedLightStyleStrings = 0xd00; + constexpr std::ptrdiff_t m_LightStyleEvents = 0xd18; + constexpr std::ptrdiff_t m_LightStyleTargets = 0xd30; + constexpr std::ptrdiff_t m_StyleEvent = 0xd48; + constexpr std::ptrdiff_t m_hLightCookie = 0xde8; + constexpr std::ptrdiff_t m_flShape = 0xdf0; + constexpr std::ptrdiff_t m_flSoftX = 0xdf4; + constexpr std::ptrdiff_t m_flSoftY = 0xdf8; + constexpr std::ptrdiff_t m_flSkirt = 0xdfc; + constexpr std::ptrdiff_t m_flSkirtNear = 0xe00; + constexpr std::ptrdiff_t m_vSizeParams = 0xe04; + constexpr std::ptrdiff_t m_flRange = 0xe10; + constexpr std::ptrdiff_t m_vShear = 0xe14; + constexpr std::ptrdiff_t m_nBakeSpecularToCubemaps = 0xe20; + constexpr std::ptrdiff_t m_vBakeSpecularToCubemapsSize = 0xe24; + constexpr std::ptrdiff_t m_nCastShadows = 0xe30; + constexpr std::ptrdiff_t m_nShadowMapSize = 0xe34; + constexpr std::ptrdiff_t m_nShadowPriority = 0xe38; + constexpr std::ptrdiff_t m_bContactShadow = 0xe3c; + constexpr std::ptrdiff_t m_nBounceLight = 0xe40; + constexpr std::ptrdiff_t m_flBounceScale = 0xe44; + constexpr std::ptrdiff_t m_flMinRoughness = 0xe48; + constexpr std::ptrdiff_t m_vAlternateColor = 0xe4c; + constexpr std::ptrdiff_t m_fAlternateColorBrightness = 0xe58; + constexpr std::ptrdiff_t m_nFog = 0xe5c; + constexpr std::ptrdiff_t m_flFogStrength = 0xe60; + constexpr std::ptrdiff_t m_nFogShadows = 0xe64; + constexpr std::ptrdiff_t m_flFogScale = 0xe68; + constexpr std::ptrdiff_t m_flFadeSizeStart = 0xe6c; + constexpr std::ptrdiff_t m_flFadeSizeEnd = 0xe70; + constexpr std::ptrdiff_t m_flShadowFadeSizeStart = 0xe74; + constexpr std::ptrdiff_t m_flShadowFadeSizeEnd = 0xe78; + constexpr std::ptrdiff_t m_bPrecomputedFieldsValid = 0xe7c; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMins = 0xe80; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMaxs = 0xe8c; + constexpr std::ptrdiff_t m_vPrecomputedOBBOrigin = 0xe98; + constexpr std::ptrdiff_t m_vPrecomputedOBBAngles = 0xea4; + constexpr std::ptrdiff_t m_vPrecomputedOBBExtent = 0xeb0; +} + +namespace C_RectLight { + constexpr std::ptrdiff_t m_bShowLight = 0xf08; +} + +namespace C_OmniLight { + constexpr std::ptrdiff_t m_flInnerAngle = 0xf08; + constexpr std::ptrdiff_t m_flOuterAngle = 0xf0c; + constexpr std::ptrdiff_t m_bShowLight = 0xf10; +} + +namespace C_CSTeam { + constexpr std::ptrdiff_t m_szTeamMatchStat = 0x5f8; + constexpr std::ptrdiff_t m_numMapVictories = 0x7f8; + constexpr std::ptrdiff_t m_bSurrendered = 0x7fc; + constexpr std::ptrdiff_t m_scoreFirstHalf = 0x800; + constexpr std::ptrdiff_t m_scoreSecondHalf = 0x804; + constexpr std::ptrdiff_t m_scoreOvertime = 0x808; + constexpr std::ptrdiff_t m_szClanTeamname = 0x80c; + constexpr std::ptrdiff_t m_iClanID = 0x890; + constexpr std::ptrdiff_t m_nGGLeaderSlot_CT = 0x894; + constexpr std::ptrdiff_t m_nGGLeaderSlot_T = 0x898; + constexpr std::ptrdiff_t m_szTeamFlagImage = 0x89c; + constexpr std::ptrdiff_t m_szTeamLogoImage = 0x8a4; +} + +namespace C_MapPreviewParticleSystem { +} + +namespace CInfoDynamicShadowHint { + constexpr std::ptrdiff_t m_bDisabled = 0x540; + constexpr std::ptrdiff_t m_flRange = 0x544; + constexpr std::ptrdiff_t m_nImportance = 0x548; + constexpr std::ptrdiff_t m_nLightChoice = 0x54c; + constexpr std::ptrdiff_t m_hLight = 0x550; +} + +namespace CInfoDynamicShadowHintBox { + constexpr std::ptrdiff_t m_vBoxMins = 0x558; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x564; +} + +namespace C_EnvSky { + constexpr std::ptrdiff_t m_hSkyMaterial = 0xcc0; + constexpr std::ptrdiff_t m_hSkyMaterialLightingOnly = 0xcc8; + constexpr std::ptrdiff_t m_bStartDisabled = 0xcd0; + constexpr std::ptrdiff_t m_vTintColor = 0xcd1; + constexpr std::ptrdiff_t m_vTintColorLightingOnly = 0xcd5; + constexpr std::ptrdiff_t m_flBrightnessScale = 0xcdc; + constexpr std::ptrdiff_t m_nFogType = 0xce0; + constexpr std::ptrdiff_t m_flFogMinStart = 0xce4; + constexpr std::ptrdiff_t m_flFogMinEnd = 0xce8; + constexpr std::ptrdiff_t m_flFogMaxStart = 0xcec; + constexpr std::ptrdiff_t m_flFogMaxEnd = 0xcf0; + constexpr std::ptrdiff_t m_bEnabled = 0xcf4; +} + +namespace C_TonemapController2Alias_env_tonemap_controller2 { +} + +namespace C_LightEntity { + constexpr std::ptrdiff_t m_CLightComponent = 0xcc0; +} + +namespace C_LightSpotEntity { +} + +namespace C_LightOrthoEntity { +} + +namespace C_LightDirectionalEntity { +} + +namespace C_LightEnvironmentEntity { +} + +namespace C_PostProcessingVolume { + constexpr std::ptrdiff_t m_hPostSettings = 0xcd8; + constexpr std::ptrdiff_t m_flFadeDuration = 0xce0; + constexpr std::ptrdiff_t m_flMinLogExposure = 0xce4; + constexpr std::ptrdiff_t m_flMaxLogExposure = 0xce8; + constexpr std::ptrdiff_t m_flMinExposure = 0xcec; + constexpr std::ptrdiff_t m_flMaxExposure = 0xcf0; + constexpr std::ptrdiff_t m_flExposureCompensation = 0xcf4; + constexpr std::ptrdiff_t m_flExposureFadeSpeedUp = 0xcf8; + constexpr std::ptrdiff_t m_flExposureFadeSpeedDown = 0xcfc; + constexpr std::ptrdiff_t m_flTonemapEVSmoothingRange = 0xd00; + constexpr std::ptrdiff_t m_bMaster = 0xd04; + constexpr std::ptrdiff_t m_bExposureControl = 0xd05; + constexpr std::ptrdiff_t m_flRate = 0xd08; + constexpr std::ptrdiff_t m_flTonemapPercentTarget = 0xd0c; + constexpr std::ptrdiff_t m_flTonemapPercentBrightPixels = 0xd10; + constexpr std::ptrdiff_t m_flTonemapMinAvgLum = 0xd14; +} + +namespace C_EnvParticleGlow { + constexpr std::ptrdiff_t m_flAlphaScale = 0x1270; + constexpr std::ptrdiff_t m_flRadiusScale = 0x1274; + constexpr std::ptrdiff_t m_flSelfIllumScale = 0x1278; + constexpr std::ptrdiff_t m_ColorTint = 0x127c; + constexpr std::ptrdiff_t m_hTextureOverride = 0x1280; +} + +namespace C_TextureBasedAnimatable { + constexpr std::ptrdiff_t m_bLoop = 0xcc0; + constexpr std::ptrdiff_t m_flFPS = 0xcc4; + constexpr std::ptrdiff_t m_hPositionKeys = 0xcc8; + constexpr std::ptrdiff_t m_hRotationKeys = 0xcd0; + constexpr std::ptrdiff_t m_vAnimationBoundsMin = 0xcd8; + constexpr std::ptrdiff_t m_vAnimationBoundsMax = 0xce4; + constexpr std::ptrdiff_t m_flStartTime = 0xcf0; + constexpr std::ptrdiff_t m_flStartFrame = 0xcf4; +} + +namespace C_World { +} + +namespace CBaseAnimGraph { + constexpr std::ptrdiff_t m_bInitiallyPopulateInterpHistory = 0xcc8; + constexpr std::ptrdiff_t m_bShouldAnimateDuringGameplayPause = 0xcc9; + constexpr std::ptrdiff_t m_bSuppressAnimEventSounds = 0xccb; + constexpr std::ptrdiff_t m_bAnimGraphUpdateEnabled = 0xcd8; + constexpr std::ptrdiff_t m_flLastEventAnimTime = 0xd6c; + constexpr std::ptrdiff_t m_hAnimationUpdate = 0xd74; + constexpr std::ptrdiff_t m_flMaxSlopeDistance = 0xd78; + constexpr std::ptrdiff_t m_vLastSlopeCheckPos = 0xd7c; + constexpr std::ptrdiff_t m_vecForce = 0xd8c; + constexpr std::ptrdiff_t m_nForceBone = 0xd98; + constexpr std::ptrdiff_t m_pClientsideRagdoll = 0xda0; + constexpr std::ptrdiff_t m_bBuiltRagdoll = 0xda8; + constexpr std::ptrdiff_t m_pRagdollPose = 0xdc0; + constexpr std::ptrdiff_t m_bClientRagdoll = 0xdc8; + constexpr std::ptrdiff_t m_bHasAnimatedMaterialAttributes = 0xdc9; +} + +namespace CBaseProp { + constexpr std::ptrdiff_t m_bModelOverrodeBlockLOS = 0xf18; + constexpr std::ptrdiff_t m_iShapeType = 0xf1c; + constexpr std::ptrdiff_t m_bConformToCollisionBounds = 0xf20; + constexpr std::ptrdiff_t m_mPreferredCatchTransform = 0xf24; +} + +namespace C_BreakableProp { + constexpr std::ptrdiff_t m_OnBreak = 0xf60; + constexpr std::ptrdiff_t m_OnHealthChanged = 0xf88; + constexpr std::ptrdiff_t m_OnTakeDamage = 0xfb0; + constexpr std::ptrdiff_t m_impactEnergyScale = 0xfd8; + constexpr std::ptrdiff_t m_iMinHealthDmg = 0xfdc; + constexpr std::ptrdiff_t m_flPressureDelay = 0xfe0; + constexpr std::ptrdiff_t m_hBreaker = 0xfe4; + constexpr std::ptrdiff_t m_PerformanceMode = 0xfe8; + constexpr std::ptrdiff_t m_flDmgModBullet = 0xfec; + constexpr std::ptrdiff_t m_flDmgModClub = 0xff0; + constexpr std::ptrdiff_t m_flDmgModExplosive = 0xff4; + constexpr std::ptrdiff_t m_flDmgModFire = 0xff8; + constexpr std::ptrdiff_t m_iszPhysicsDamageTableName = 0x1000; + constexpr std::ptrdiff_t m_iszBasePropData = 0x1008; + constexpr std::ptrdiff_t m_iInteractions = 0x1010; + constexpr std::ptrdiff_t m_flPreventDamageBeforeTime = 0x1014; + constexpr std::ptrdiff_t m_bHasBreakPiecesOrCommands = 0x1018; + constexpr std::ptrdiff_t m_explodeDamage = 0x101c; + constexpr std::ptrdiff_t m_explodeRadius = 0x1020; + constexpr std::ptrdiff_t m_explosionDelay = 0x1028; + constexpr std::ptrdiff_t m_explosionBuildupSound = 0x1030; + constexpr std::ptrdiff_t m_explosionCustomEffect = 0x1038; + constexpr std::ptrdiff_t m_explosionCustomSound = 0x1040; + constexpr std::ptrdiff_t m_explosionModifier = 0x1048; + constexpr std::ptrdiff_t m_hPhysicsAttacker = 0x1050; + constexpr std::ptrdiff_t m_flLastPhysicsInfluenceTime = 0x1054; + constexpr std::ptrdiff_t m_flDefaultFadeScale = 0x1058; + constexpr std::ptrdiff_t m_hLastAttacker = 0x105c; + constexpr std::ptrdiff_t m_hFlareEnt = 0x1060; + constexpr std::ptrdiff_t m_noGhostCollision = 0x1064; +} + +namespace C_DynamicProp { + constexpr std::ptrdiff_t m_bUseHitboxesForRenderBox = 0x1068; + constexpr std::ptrdiff_t m_bUseAnimGraph = 0x1069; + constexpr std::ptrdiff_t m_pOutputAnimBegun = 0x1070; + constexpr std::ptrdiff_t m_pOutputAnimOver = 0x1098; + constexpr std::ptrdiff_t m_pOutputAnimLoopCycleOver = 0x10c0; + constexpr std::ptrdiff_t m_OnAnimReachedStart = 0x10e8; + constexpr std::ptrdiff_t m_OnAnimReachedEnd = 0x1110; + constexpr std::ptrdiff_t m_iszDefaultAnim = 0x1138; + constexpr std::ptrdiff_t m_nDefaultAnimLoopMode = 0x1140; + constexpr std::ptrdiff_t m_bAnimateOnServer = 0x1144; + constexpr std::ptrdiff_t m_bRandomizeCycle = 0x1145; + constexpr std::ptrdiff_t m_bStartDisabled = 0x1146; + constexpr std::ptrdiff_t m_bScriptedMovement = 0x1147; + constexpr std::ptrdiff_t m_bFiredStartEndOutput = 0x1148; + constexpr std::ptrdiff_t m_bForceNpcExclude = 0x1149; + constexpr std::ptrdiff_t m_bCreateNonSolid = 0x114a; + constexpr std::ptrdiff_t m_bIsOverrideProp = 0x114b; + constexpr std::ptrdiff_t m_iInitialGlowState = 0x114c; + constexpr std::ptrdiff_t m_nGlowRange = 0x1150; + constexpr std::ptrdiff_t m_nGlowRangeMin = 0x1154; + constexpr std::ptrdiff_t m_glowColor = 0x1158; + constexpr std::ptrdiff_t m_nGlowTeam = 0x115c; + constexpr std::ptrdiff_t m_iCachedFrameCount = 0x1160; + constexpr std::ptrdiff_t m_vecCachedRenderMins = 0x1164; + constexpr std::ptrdiff_t m_vecCachedRenderMaxs = 0x1170; +} + +namespace C_DynamicPropAlias_dynamic_prop { +} + +namespace C_DynamicPropAlias_prop_dynamic_override { +} + +namespace C_DynamicPropAlias_cable_dynamic { +} + +namespace C_ColorCorrectionVolume { + constexpr std::ptrdiff_t m_LastEnterWeight = 0xcc8; + constexpr std::ptrdiff_t m_LastEnterTime = 0xccc; + constexpr std::ptrdiff_t m_LastExitWeight = 0xcd0; + constexpr std::ptrdiff_t m_LastExitTime = 0xcd4; + constexpr std::ptrdiff_t m_bEnabled = 0xcd8; + constexpr std::ptrdiff_t m_MaxWeight = 0xcdc; + constexpr std::ptrdiff_t m_FadeDuration = 0xce0; + constexpr std::ptrdiff_t m_Weight = 0xce4; + constexpr std::ptrdiff_t m_lookupFilename = 0xce8; +} + +namespace C_FuncMonitor { + constexpr std::ptrdiff_t m_targetCamera = 0xcc0; + constexpr std::ptrdiff_t m_nResolutionEnum = 0xcc8; + constexpr std::ptrdiff_t m_bRenderShadows = 0xccc; + constexpr std::ptrdiff_t m_bUseUniqueColorTarget = 0xccd; + constexpr std::ptrdiff_t m_brushModelName = 0xcd0; + constexpr std::ptrdiff_t m_hTargetCamera = 0xcd8; + constexpr std::ptrdiff_t m_bEnabled = 0xcdc; + constexpr std::ptrdiff_t m_bDraw3DSkybox = 0xcdd; +} + +namespace C_FuncMoveLinear { +} + +namespace C_PhysMagnet { + constexpr std::ptrdiff_t m_aAttachedObjectsFromServer = 0xf18; + constexpr std::ptrdiff_t m_aAttachedObjects = 0xf30; +} + +namespace C_PointCommentaryNode { + constexpr std::ptrdiff_t m_bActive = 0xf20; + constexpr std::ptrdiff_t m_bWasActive = 0xf21; + constexpr std::ptrdiff_t m_flEndTime = 0xf24; + constexpr std::ptrdiff_t m_flStartTime = 0xf28; + constexpr std::ptrdiff_t m_flStartTimeInCommentary = 0xf2c; + constexpr std::ptrdiff_t m_iszCommentaryFile = 0xf30; + constexpr std::ptrdiff_t m_iszTitle = 0xf38; + constexpr std::ptrdiff_t m_iszSpeakers = 0xf40; + constexpr std::ptrdiff_t m_iNodeNumber = 0xf48; + constexpr std::ptrdiff_t m_iNodeNumberMax = 0xf4c; + constexpr std::ptrdiff_t m_bListenedTo = 0xf50; + constexpr std::ptrdiff_t m_hViewPosition = 0xf60; + constexpr std::ptrdiff_t m_bRestartAfterRestore = 0xf64; +} + +namespace C_WaterBullet { +} + +namespace C_BaseDoor { + constexpr std::ptrdiff_t m_bIsUsable = 0xcc0; +} + +namespace C_BaseFlex { + constexpr std::ptrdiff_t m_flexWeight = 0xf28; + constexpr std::ptrdiff_t m_vLookTargetPosition = 0xf40; + constexpr std::ptrdiff_t m_blinktoggle = 0xf58; + constexpr std::ptrdiff_t m_nLastFlexUpdateFrameCount = 0xfb8; + constexpr std::ptrdiff_t m_CachedViewTarget = 0xfbc; + constexpr std::ptrdiff_t m_nNextSceneEventId = 0xfc8; + constexpr std::ptrdiff_t m_iBlink = 0xfcc; + constexpr std::ptrdiff_t m_blinktime = 0xfd0; + constexpr std::ptrdiff_t m_prevblinktoggle = 0xfd4; + constexpr std::ptrdiff_t m_iJawOpen = 0xfd8; + constexpr std::ptrdiff_t m_flJawOpenAmount = 0xfdc; + constexpr std::ptrdiff_t m_flBlinkAmount = 0xfe0; + constexpr std::ptrdiff_t m_iMouthAttachment = 0xfe4; + constexpr std::ptrdiff_t m_iEyeAttachment = 0xfe5; + constexpr std::ptrdiff_t m_bResetFlexWeightsOnModelChange = 0xfe6; + constexpr std::ptrdiff_t m_nEyeOcclusionRendererBone = 0x1000; + constexpr std::ptrdiff_t m_mEyeOcclusionRendererCameraToBoneTransform = 0x1004; + constexpr std::ptrdiff_t m_vEyeOcclusionRendererHalfExtent = 0x1034; + constexpr std::ptrdiff_t m_PhonemeClasses = 0x1050; +} + +namespace C_ClientRagdoll { + constexpr std::ptrdiff_t m_bFadeOut = 0xf18; + constexpr std::ptrdiff_t m_bImportant = 0xf19; + constexpr std::ptrdiff_t m_flEffectTime = 0xf1c; + constexpr std::ptrdiff_t m_gibDespawnTime = 0xf20; + constexpr std::ptrdiff_t m_iCurrentFriction = 0xf24; + constexpr std::ptrdiff_t m_iMinFriction = 0xf28; + constexpr std::ptrdiff_t m_iMaxFriction = 0xf2c; + constexpr std::ptrdiff_t m_iFrictionAnimState = 0xf30; + constexpr std::ptrdiff_t m_bReleaseRagdoll = 0xf34; + constexpr std::ptrdiff_t m_iEyeAttachment = 0xf35; + constexpr std::ptrdiff_t m_bFadingOut = 0xf36; + constexpr std::ptrdiff_t m_flScaleEnd = 0xf38; + constexpr std::ptrdiff_t m_flScaleTimeStart = 0xf60; + constexpr std::ptrdiff_t m_flScaleTimeEnd = 0xf88; +} + +namespace C_Precipitation { + constexpr std::ptrdiff_t m_flDensity = 0xcc8; + constexpr std::ptrdiff_t m_flParticleInnerDist = 0xcd8; + constexpr std::ptrdiff_t m_pParticleDef = 0xce0; + constexpr std::ptrdiff_t m_tParticlePrecipTraceTimer = 0xd08; + constexpr std::ptrdiff_t m_bActiveParticlePrecipEmitter = 0xd10; + constexpr std::ptrdiff_t m_bParticlePrecipInitialized = 0xd11; + constexpr std::ptrdiff_t m_bHasSimulatedSinceLastSceneObjectUpdate = 0xd12; + constexpr std::ptrdiff_t m_nAvailableSheetSequencesMaxIndex = 0xd14; +} + +namespace C_FireSprite { + constexpr std::ptrdiff_t m_vecMoveDir = 0xdf0; + constexpr std::ptrdiff_t m_bFadeFromAbove = 0xdfc; +} + +namespace C_FireFromAboveSprite { +} + +namespace C_Fish { + constexpr std::ptrdiff_t m_pos = 0xf18; + constexpr std::ptrdiff_t m_vel = 0xf24; + constexpr std::ptrdiff_t m_angles = 0xf30; + constexpr std::ptrdiff_t m_localLifeState = 0xf3c; + constexpr std::ptrdiff_t m_deathDepth = 0xf40; + constexpr std::ptrdiff_t m_deathAngle = 0xf44; + constexpr std::ptrdiff_t m_buoyancy = 0xf48; + constexpr std::ptrdiff_t m_wiggleTimer = 0xf50; + constexpr std::ptrdiff_t m_wigglePhase = 0xf68; + constexpr std::ptrdiff_t m_wiggleRate = 0xf6c; + constexpr std::ptrdiff_t m_actualPos = 0xf70; + constexpr std::ptrdiff_t m_actualAngles = 0xf7c; + constexpr std::ptrdiff_t m_poolOrigin = 0xf88; + constexpr std::ptrdiff_t m_waterLevel = 0xf94; + constexpr std::ptrdiff_t m_gotUpdate = 0xf98; + constexpr std::ptrdiff_t m_x = 0xf9c; + constexpr std::ptrdiff_t m_y = 0xfa0; + constexpr std::ptrdiff_t m_z = 0xfa4; + constexpr std::ptrdiff_t m_angle = 0xfa8; + constexpr std::ptrdiff_t m_errorHistory = 0xfac; + constexpr std::ptrdiff_t m_errorHistoryIndex = 0xffc; + constexpr std::ptrdiff_t m_errorHistoryCount = 0x1000; + constexpr std::ptrdiff_t m_averageError = 0x1004; +} + +namespace C_PhysicsProp { + constexpr std::ptrdiff_t m_bAwake = 0x1068; +} + +namespace C_BasePropDoor { + constexpr std::ptrdiff_t m_eDoorState = 0x1190; + constexpr std::ptrdiff_t m_modelChanged = 0x1194; + constexpr std::ptrdiff_t m_bLocked = 0x1195; + constexpr std::ptrdiff_t m_closedPosition = 0x1198; + constexpr std::ptrdiff_t m_closedAngles = 0x11a4; + constexpr std::ptrdiff_t m_hMaster = 0x11b0; + constexpr std::ptrdiff_t m_vWhereToSetLightingOrigin = 0x11b4; +} + +namespace C_PhysPropClientside { + constexpr std::ptrdiff_t m_flTouchDelta = 0x1068; + constexpr std::ptrdiff_t m_fDeathTime = 0x106c; + constexpr std::ptrdiff_t m_impactEnergyScale = 0x1070; + constexpr std::ptrdiff_t m_inertiaScale = 0x1074; + constexpr std::ptrdiff_t m_flDmgModBullet = 0x1078; + constexpr std::ptrdiff_t m_flDmgModClub = 0x107c; + constexpr std::ptrdiff_t m_flDmgModExplosive = 0x1080; + constexpr std::ptrdiff_t m_flDmgModFire = 0x1084; + constexpr std::ptrdiff_t m_iszPhysicsDamageTableName = 0x1088; + constexpr std::ptrdiff_t m_iszBasePropData = 0x1090; + constexpr std::ptrdiff_t m_iInteractions = 0x1098; + constexpr std::ptrdiff_t m_bHasBreakPiecesOrCommands = 0x109c; + constexpr std::ptrdiff_t m_vecDamagePosition = 0x10a0; + constexpr std::ptrdiff_t m_vecDamageDirection = 0x10ac; + constexpr std::ptrdiff_t m_nDamageType = 0x10b8; +} + +namespace C_RagdollProp { + constexpr std::ptrdiff_t m_ragPos = 0xf20; + constexpr std::ptrdiff_t m_ragAngles = 0xf38; + constexpr std::ptrdiff_t m_flBlendWeight = 0xf50; + constexpr std::ptrdiff_t m_hRagdollSource = 0xf54; + constexpr std::ptrdiff_t m_iEyeAttachment = 0xf58; + constexpr std::ptrdiff_t m_flBlendWeightCurrent = 0xf5c; + constexpr std::ptrdiff_t m_parentPhysicsBoneIndices = 0xf60; + constexpr std::ptrdiff_t m_worldSpaceBoneComputationOrder = 0xf78; +} + +namespace C_LocalTempEntity { + constexpr std::ptrdiff_t flags = 0xf30; + constexpr std::ptrdiff_t die = 0xf34; + constexpr std::ptrdiff_t m_flFrameMax = 0xf38; + constexpr std::ptrdiff_t x = 0xf3c; + constexpr std::ptrdiff_t y = 0xf40; + constexpr std::ptrdiff_t fadeSpeed = 0xf44; + constexpr std::ptrdiff_t bounceFactor = 0xf48; + constexpr std::ptrdiff_t hitSound = 0xf4c; + constexpr std::ptrdiff_t priority = 0xf50; + constexpr std::ptrdiff_t tentOffset = 0xf54; + constexpr std::ptrdiff_t m_vecTempEntAngVelocity = 0xf60; + constexpr std::ptrdiff_t tempent_renderamt = 0xf6c; + constexpr std::ptrdiff_t m_vecNormal = 0xf70; + constexpr std::ptrdiff_t m_flSpriteScale = 0xf7c; + constexpr std::ptrdiff_t m_nFlickerFrame = 0xf80; + constexpr std::ptrdiff_t m_flFrameRate = 0xf84; + constexpr std::ptrdiff_t m_flFrame = 0xf88; + constexpr std::ptrdiff_t m_pszImpactEffect = 0xf90; + constexpr std::ptrdiff_t m_pszParticleEffect = 0xf98; + constexpr std::ptrdiff_t m_bParticleCollision = 0xfa0; + constexpr std::ptrdiff_t m_iLastCollisionFrame = 0xfa4; + constexpr std::ptrdiff_t m_vLastCollisionOrigin = 0xfa8; + constexpr std::ptrdiff_t m_vecTempEntVelocity = 0xfb4; + constexpr std::ptrdiff_t m_vecPrevAbsOrigin = 0xfc0; + constexpr std::ptrdiff_t m_vecTempEntAcceleration = 0xfcc; +} + +namespace C_ShatterGlassShardPhysics { + constexpr std::ptrdiff_t m_ShardDesc = 0x1078; +} + +namespace C_EconEntity { + constexpr std::ptrdiff_t m_flFlexDelayTime = 0x10c0; + constexpr std::ptrdiff_t m_flFlexDelayedWeight = 0x10c8; + constexpr std::ptrdiff_t m_bAttributesInitialized = 0x10d0; + constexpr std::ptrdiff_t m_AttributeManager = 0x10d8; + constexpr std::ptrdiff_t m_OriginalOwnerXuidLow = 0x1580; + constexpr std::ptrdiff_t m_OriginalOwnerXuidHigh = 0x1584; + constexpr std::ptrdiff_t m_nFallbackPaintKit = 0x1588; + constexpr std::ptrdiff_t m_nFallbackSeed = 0x158c; + constexpr std::ptrdiff_t m_flFallbackWear = 0x1590; + constexpr std::ptrdiff_t m_nFallbackStatTrak = 0x1594; + constexpr std::ptrdiff_t m_bClientside = 0x1598; + constexpr std::ptrdiff_t m_bParticleSystemsCreated = 0x1599; + constexpr std::ptrdiff_t m_vecAttachedParticles = 0x15a0; + constexpr std::ptrdiff_t m_hViewmodelAttachment = 0x15b8; + constexpr std::ptrdiff_t m_iOldTeam = 0x15bc; + constexpr std::ptrdiff_t m_bAttachmentDirty = 0x15c0; + constexpr std::ptrdiff_t m_nUnloadedModelIndex = 0x15c4; + constexpr std::ptrdiff_t m_iNumOwnerValidationRetries = 0x15c8; + constexpr std::ptrdiff_t m_hOldProvidee = 0x15d8; + constexpr std::ptrdiff_t m_vecAttachedModels = 0x15e0; +} + +namespace C_EconWearable { + constexpr std::ptrdiff_t m_nForceSkin = 0x15f8; + constexpr std::ptrdiff_t m_bAlwaysAllow = 0x15fc; +} + +namespace C_BaseGrenade { + constexpr std::ptrdiff_t m_bHasWarnedAI = 0x10b0; + constexpr std::ptrdiff_t m_bIsSmokeGrenade = 0x10b1; + constexpr std::ptrdiff_t m_bIsLive = 0x10b2; + constexpr std::ptrdiff_t m_DmgRadius = 0x10b4; + constexpr std::ptrdiff_t m_flDetonateTime = 0x10b8; + constexpr std::ptrdiff_t m_flWarnAITime = 0x10bc; + constexpr std::ptrdiff_t m_flDamage = 0x10c0; + constexpr std::ptrdiff_t m_iszBounceSound = 0x10c8; + constexpr std::ptrdiff_t m_ExplosionSound = 0x10d0; + constexpr std::ptrdiff_t m_hThrower = 0x10dc; + constexpr std::ptrdiff_t m_flNextAttack = 0x10f8; + constexpr std::ptrdiff_t m_hOriginalThrower = 0x10fc; +} + +namespace C_BRC4Target { + constexpr std::ptrdiff_t m_bBrokenOpen = 0xf20; + constexpr std::ptrdiff_t m_flRadius = 0xf24; +} + +namespace C_ParadropChopper { + constexpr std::ptrdiff_t m_vecLastRopeTargetPos = 0xf20; + constexpr std::ptrdiff_t m_flLastRopeTime = 0xf2c; + constexpr std::ptrdiff_t m_nRappelABone = 0xf30; + constexpr std::ptrdiff_t m_nRappelBBone = 0xf34; + constexpr std::ptrdiff_t m_hCallingPlayer = 0xf38; + constexpr std::ptrdiff_t m_bCalledByPlayer = 0xf3c; +} + +namespace C_SurvivalSpawnChopper { +} + +namespace C_Dronegun { + constexpr std::ptrdiff_t m_vecAttentionTarget = 0xf20; + constexpr std::ptrdiff_t m_vecTargetOffset = 0xf2c; + constexpr std::ptrdiff_t m_bHasTarget = 0xf38; + constexpr std::ptrdiff_t m_vecAttentionCurrent = 0xf3c; + constexpr std::ptrdiff_t m_nPoseParamPitch = 0xf48; + constexpr std::ptrdiff_t m_nPoseParamYaw = 0xf4c; + constexpr std::ptrdiff_t m_bVarInit = 0xf50; + constexpr std::ptrdiff_t m_nAttachMuzzle = 0xf51; + constexpr std::ptrdiff_t m_flLastClientThinkTime = 0xf54; + constexpr std::ptrdiff_t m_flNextSpark = 0xf58; + constexpr std::ptrdiff_t m_nBoneOverrideIndex = 0xf5c; + constexpr std::ptrdiff_t m_vecLaserTracePos = 0xf60; +} + +namespace C_Drone { + constexpr std::ptrdiff_t m_vecClientSideTrailPositions = 0x1080; + constexpr std::ptrdiff_t m_hMoveToThisEntity = 0x1098; + constexpr std::ptrdiff_t m_hDeliveryCargo = 0x109c; + constexpr std::ptrdiff_t m_hRecentCargo = 0x10a0; + constexpr std::ptrdiff_t m_bPilotTakeoverAllowed = 0x10a4; + constexpr std::ptrdiff_t m_hPotentialCargo = 0x10a8; + constexpr std::ptrdiff_t m_hCurrentPilot = 0x10ac; + constexpr std::ptrdiff_t m_vecTagPositions = 0x10b0; + constexpr std::ptrdiff_t m_vecTagIncrements = 0x11d0; + constexpr std::ptrdiff_t m_flLastTimeCargoWasAttached = 0x1230; + constexpr std::ptrdiff_t m_vecLastKnownCargoAttachPositions = 0x1234; + constexpr std::ptrdiff_t m_vecThrusterLastPos = 0x1264; + constexpr std::ptrdiff_t m_vecThrusterSmoothVel = 0x1270; + constexpr std::ptrdiff_t m_vecThrusterSmoothAccel = 0x127c; + constexpr std::ptrdiff_t m_flJammedEffectAmount = 0x1288; +} + +namespace C_CSPropExplodingBarrel { +} + +namespace C_CSPropExplodingBarrelTop { + constexpr std::ptrdiff_t m_flOverrideAlpha = 0x1070; +} + +namespace C_EnvGasCanister { + constexpr std::ptrdiff_t m_bLanded = 0xf18; + constexpr std::ptrdiff_t m_bSpawnedSkyboxParticles = 0xf80; + constexpr std::ptrdiff_t m_flKillImpactParticlesTime = 0xf84; + constexpr std::ptrdiff_t m_vecImpactPosition = 0xf88; + constexpr std::ptrdiff_t m_vecStartPosition = 0xf94; + constexpr std::ptrdiff_t m_vecEnterWorldPosition = 0xfa0; + constexpr std::ptrdiff_t m_vecDirection = 0xfac; + constexpr std::ptrdiff_t m_vecStartAngles = 0xfb8; + constexpr std::ptrdiff_t m_flFlightTime = 0xfc4; + constexpr std::ptrdiff_t m_flFlightSpeed = 0xfc8; + constexpr std::ptrdiff_t m_flLaunchTime = 0xfcc; + constexpr std::ptrdiff_t m_flInitialZSpeed = 0xfd0; + constexpr std::ptrdiff_t m_flZAcceleration = 0xfd4; + constexpr std::ptrdiff_t m_flHorizSpeed = 0xfd8; + constexpr std::ptrdiff_t m_bLaunchedFromWithinWorld = 0xfdc; + constexpr std::ptrdiff_t m_vecParabolaDirection = 0xfe0; + constexpr std::ptrdiff_t m_flWorldEnterTime = 0xfec; + constexpr std::ptrdiff_t m_vecSkyboxOrigin = 0xff0; + constexpr std::ptrdiff_t m_flSkyboxScale = 0xffc; + constexpr std::ptrdiff_t m_bInSkybox = 0x1000; + constexpr std::ptrdiff_t m_bDoImpactEffects = 0x1001; + constexpr std::ptrdiff_t m_nMyZoneIndex = 0x1004; + constexpr std::ptrdiff_t m_hSkyboxCopy = 0x1008; + constexpr std::ptrdiff_t m_flLaunchHeight = 0x100c; +} + +namespace C_PropCounter { + constexpr std::ptrdiff_t m_flDisplayValue = 0xf18; + constexpr std::ptrdiff_t m_flDisplayValueLocal = 0xf1c; + constexpr std::ptrdiff_t m_flTimeOfLastValueChange = 0xf20; + constexpr std::ptrdiff_t m_flPreviousValue = 0xf24; +} + +namespace C_ViewmodelWeapon { + constexpr std::ptrdiff_t m_worldModel = 0xf18; +} + +namespace C_BaseViewModel { + constexpr std::ptrdiff_t m_vecLastFacing = 0xf20; + constexpr std::ptrdiff_t m_nViewModelIndex = 0xf2c; + constexpr std::ptrdiff_t m_nAnimationParity = 0xf30; + constexpr std::ptrdiff_t m_flAnimationStartTime = 0xf34; + constexpr std::ptrdiff_t m_hWeapon = 0xf38; + constexpr std::ptrdiff_t m_sVMName = 0xf40; + constexpr std::ptrdiff_t m_sAnimationPrefix = 0xf48; + constexpr std::ptrdiff_t m_hWeaponModel = 0xf50; + constexpr std::ptrdiff_t m_iCameraAttachment = 0xf54; + constexpr std::ptrdiff_t m_vecLastCameraAngles = 0xf58; + constexpr std::ptrdiff_t m_previousElapsedDuration = 0xf64; + constexpr std::ptrdiff_t m_previousCycle = 0xf68; + constexpr std::ptrdiff_t m_nOldAnimationParity = 0xf6c; + constexpr std::ptrdiff_t m_hOldLayerSequence = 0xf70; + constexpr std::ptrdiff_t m_oldLayer = 0xf74; + constexpr std::ptrdiff_t m_oldLayerStartTime = 0xf78; + constexpr std::ptrdiff_t m_hControlPanel = 0xf7c; +} + +namespace C_ViewmodelAttachmentModel { +} + +namespace C_PredictedViewModel { + constexpr std::ptrdiff_t m_LagAnglesHistory = 0xf80; + constexpr std::ptrdiff_t m_vPredictedOffset = 0xf98; +} + +namespace C_WorldModelStattrak { +} + +namespace C_WorldModelNametag { +} + +namespace C_BaseCSGrenadeProjectile { + constexpr std::ptrdiff_t m_vInitialVelocity = 0x1100; + constexpr std::ptrdiff_t m_nBounces = 0x110c; + constexpr std::ptrdiff_t m_nExplodeEffectIndex = 0x1110; + constexpr std::ptrdiff_t m_nExplodeEffectTickBegin = 0x1118; + constexpr std::ptrdiff_t m_vecExplodeEffectOrigin = 0x111c; + constexpr std::ptrdiff_t m_flSpawnTime = 0x1128; + constexpr std::ptrdiff_t vecLastTrailLinePos = 0x112c; + constexpr std::ptrdiff_t flNextTrailLineTime = 0x1138; + constexpr std::ptrdiff_t m_bExplodeEffectBegan = 0x113c; + constexpr std::ptrdiff_t m_bCanCreateGrenadeTrail = 0x113d; + constexpr std::ptrdiff_t m_nSnapshotTrajectoryEffectIndex = 0x1140; + constexpr std::ptrdiff_t m_hSnapshotTrajectoryParticleSnapshot = 0x1148; + constexpr std::ptrdiff_t m_arrTrajectoryTrailPoints = 0x1150; + constexpr std::ptrdiff_t m_arrTrajectoryTrailPointCreationTimes = 0x1168; + constexpr std::ptrdiff_t m_flTrajectoryTrailEffectCreationTime = 0x1180; +} + +namespace C_BreachChargeProjectile { + constexpr std::ptrdiff_t m_bShouldExplode = 0x1100; + constexpr std::ptrdiff_t m_weaponThatThrewMe = 0x1104; + constexpr std::ptrdiff_t m_nParentBoneIndex = 0x1108; + constexpr std::ptrdiff_t m_vecParentBonePos = 0x110c; +} + +namespace C_BumpMineProjectile { + constexpr std::ptrdiff_t m_bShouldExplode = 0x1100; + constexpr std::ptrdiff_t m_nParentBoneIndex = 0x1104; + constexpr std::ptrdiff_t m_vecParentBonePos = 0x1108; + constexpr std::ptrdiff_t m_bArmed = 0x1114; +} + +namespace C_TripWireFireProjectile { + constexpr std::ptrdiff_t m_flAttachTime = 0x1100; + constexpr std::ptrdiff_t m_vecTripWireEndPositions = 0x1104; + constexpr std::ptrdiff_t m_bTripWireEndPositionsUsed = 0x117c; + constexpr std::ptrdiff_t m_nTripWireStartIndex0 = 0x1188; + constexpr std::ptrdiff_t m_nTripWireEndIndex0 = 0x118c; + constexpr std::ptrdiff_t m_nTripWireCenterIndex0 = 0x1190; +} + +namespace C_PhysicsPropMultiplayer { +} + +namespace C_PhysPropLootCrate { + constexpr std::ptrdiff_t m_bRenderInPSPM = 0x1078; + constexpr std::ptrdiff_t m_bRenderInTablet = 0x1079; + constexpr std::ptrdiff_t m_iMaxHealth = 0x107c; + constexpr std::ptrdiff_t m_iHealth = 0x1080; +} + +namespace C_PhysPropAmmoBox { +} + +namespace C_PhysPropWeaponUpgrade { +} + +namespace C_PhysPropRadarJammer { +} + +namespace C_SensorGrenadeProjectile { +} + +namespace C_CSGO_PreviewModel { + constexpr std::ptrdiff_t m_animgraph = 0x10b0; + constexpr std::ptrdiff_t m_animgraphCharacterModeString = 0x10b8; + constexpr std::ptrdiff_t m_defaultAnim = 0x10c0; + constexpr std::ptrdiff_t m_nDefaultAnimLoopMode = 0x10c8; + constexpr std::ptrdiff_t m_flInitialModelScale = 0x10cc; +} + +namespace C_CSGO_PreviewModelAlias_csgo_item_previewmodel { +} + +namespace C_BulletHitModel { + constexpr std::ptrdiff_t m_matLocal = 0xf18; + constexpr std::ptrdiff_t m_iBoneIndex = 0xf48; + constexpr std::ptrdiff_t m_hPlayerParent = 0xf4c; + constexpr std::ptrdiff_t m_bIsHit = 0xf50; + constexpr std::ptrdiff_t m_flTimeCreated = 0xf54; + constexpr std::ptrdiff_t m_vecStartPos = 0xf58; +} + +namespace C_PickUpModelSlerper { + constexpr std::ptrdiff_t m_hPlayerParent = 0xf18; + constexpr std::ptrdiff_t m_hItem = 0xf1c; + constexpr std::ptrdiff_t m_flTimePickedUp = 0xf20; + constexpr std::ptrdiff_t m_angOriginal = 0xf24; + constexpr std::ptrdiff_t m_vecPosOriginal = 0xf30; + constexpr std::ptrdiff_t m_angRandom = 0xf40; +} + +namespace C_WorldModelGloves { +} + +namespace C_HostageCarriableProp { +} + +namespace C_Multimeter { + constexpr std::ptrdiff_t m_hTargetC4 = 0xf20; +} + +namespace C_PlantedC4 { + constexpr std::ptrdiff_t m_bBombTicking = 0xf18; + constexpr std::ptrdiff_t m_nBombSite = 0xf1c; + constexpr std::ptrdiff_t m_nSourceSoundscapeHash = 0xf20; + constexpr std::ptrdiff_t m_entitySpottedState = 0xf28; + constexpr std::ptrdiff_t m_flNextGlow = 0xf40; + constexpr std::ptrdiff_t m_flNextBeep = 0xf44; + constexpr std::ptrdiff_t m_flC4Blow = 0xf48; + constexpr std::ptrdiff_t m_bCannotBeDefused = 0xf4c; + constexpr std::ptrdiff_t m_bHasExploded = 0xf4d; + constexpr std::ptrdiff_t m_flTimerLength = 0xf50; + constexpr std::ptrdiff_t m_bBeingDefused = 0xf54; + constexpr std::ptrdiff_t m_bTenSecWarning = 0xf58; + constexpr std::ptrdiff_t m_bTriggerWarning = 0xf5c; + constexpr std::ptrdiff_t m_bExplodeWarning = 0xf60; + constexpr std::ptrdiff_t m_bC4Activated = 0xf64; + constexpr std::ptrdiff_t m_bLocalBRMusicPlayed = 0xf65; + constexpr std::ptrdiff_t m_flDefuseLength = 0xf68; + constexpr std::ptrdiff_t m_flDefuseCountDown = 0xf6c; + constexpr std::ptrdiff_t m_bBombDefused = 0xf70; + constexpr std::ptrdiff_t m_hBombDefuser = 0xf74; + constexpr std::ptrdiff_t m_hControlPanel = 0xf78; + constexpr std::ptrdiff_t m_hDefuserMultimeter = 0xf7c; + constexpr std::ptrdiff_t m_flNextRadarFlashTime = 0xf80; + constexpr std::ptrdiff_t m_bRadarFlash = 0xf84; + constexpr std::ptrdiff_t m_pBombDefuser = 0xf88; + constexpr std::ptrdiff_t m_fLastDefuseTime = 0xf8c; + constexpr std::ptrdiff_t m_pPredictionOwner = 0xf90; +} + +namespace C_Item { + constexpr std::ptrdiff_t m_bShouldGlow = 0x15f8; + constexpr std::ptrdiff_t m_pReticleHintTextName = 0x15f9; +} + +namespace C_Chicken { + constexpr std::ptrdiff_t m_hHolidayHatAddon = 0x1188; + constexpr std::ptrdiff_t m_jumpedThisFrame = 0x118c; + constexpr std::ptrdiff_t m_leader = 0x1190; + constexpr std::ptrdiff_t m_AttributeManager = 0x1198; + constexpr std::ptrdiff_t m_OriginalOwnerXuidLow = 0x1640; + constexpr std::ptrdiff_t m_OriginalOwnerXuidHigh = 0x1644; + constexpr std::ptrdiff_t m_bAttributesInitialized = 0x1648; + constexpr std::ptrdiff_t m_hWaterWakeParticles = 0x164c; +} + +namespace C_BasePlayerWeapon { + constexpr std::ptrdiff_t m_iState = 0x15f8; + constexpr std::ptrdiff_t m_iOldState = 0x15fc; + constexpr std::ptrdiff_t m_bRemoveable = 0x1600; + constexpr std::ptrdiff_t m_nNextPrimaryAttackTick = 0x1604; + constexpr std::ptrdiff_t m_flNextPrimaryAttackTickRatio = 0x1608; + constexpr std::ptrdiff_t m_nNextSecondaryAttackTick = 0x160c; + constexpr std::ptrdiff_t m_flNextSecondaryAttackTickRatio = 0x1610; + constexpr std::ptrdiff_t m_iClip1 = 0x1614; + constexpr std::ptrdiff_t m_iClip2 = 0x1618; + constexpr std::ptrdiff_t m_pReserveAmmo = 0x161c; +} + +namespace C_RagdollPropAttached { + constexpr std::ptrdiff_t m_boneIndexAttached = 0xf90; + constexpr std::ptrdiff_t m_ragdollAttachedObjectIndex = 0xf94; + constexpr std::ptrdiff_t m_attachmentPointBoneSpace = 0xf98; + constexpr std::ptrdiff_t m_attachmentPointRagdollSpace = 0xfa4; + constexpr std::ptrdiff_t m_vecOffset = 0xfb0; + constexpr std::ptrdiff_t m_parentTime = 0xfbc; + constexpr std::ptrdiff_t m_bHasParent = 0xfc0; +} + +namespace C_BaseCombatCharacter { + constexpr std::ptrdiff_t m_hMyWearables = 0x10b0; + constexpr std::ptrdiff_t m_bloodColor = 0x10c8; + constexpr std::ptrdiff_t m_leftFootAttachment = 0x10cc; + constexpr std::ptrdiff_t m_rightFootAttachment = 0x10cd; + constexpr std::ptrdiff_t m_nWaterWakeMode = 0x10d0; + constexpr std::ptrdiff_t m_flWaterWorldZ = 0x10d4; + constexpr std::ptrdiff_t m_flWaterNextTraceTime = 0x10d8; + constexpr std::ptrdiff_t m_flFieldOfView = 0x10dc; +} + +namespace C_BasePlayerPawn { + constexpr std::ptrdiff_t m_pWeaponServices = 0x1140; + constexpr std::ptrdiff_t m_pItemServices = 0x1148; + constexpr std::ptrdiff_t m_pAutoaimServices = 0x1150; + constexpr std::ptrdiff_t m_pObserverServices = 0x1158; + constexpr std::ptrdiff_t m_pWaterServices = 0x1160; + constexpr std::ptrdiff_t m_pUseServices = 0x1168; + constexpr std::ptrdiff_t m_pFlashlightServices = 0x1170; + constexpr std::ptrdiff_t m_pCameraServices = 0x1178; + constexpr std::ptrdiff_t m_pMovementServices = 0x1180; + constexpr std::ptrdiff_t m_ServerViewAngleChanges = 0x1190; + constexpr std::ptrdiff_t m_nHighestConsumedServerViewAngleChangeIndex = 0x11e0; + constexpr std::ptrdiff_t v_angle = 0x11e4; + constexpr std::ptrdiff_t v_anglePrevious = 0x11f0; + constexpr std::ptrdiff_t m_iHideHUD = 0x11fc; + constexpr std::ptrdiff_t m_skybox3d = 0x1200; + constexpr std::ptrdiff_t m_flDeathTime = 0x1290; + constexpr std::ptrdiff_t m_vecPredictionError = 0x1294; + constexpr std::ptrdiff_t m_flPredictionErrorTime = 0x12a0; + constexpr std::ptrdiff_t m_flFOVSensitivityAdjust = 0x12a4; + constexpr std::ptrdiff_t m_flMouseSensitivity = 0x12a8; + constexpr std::ptrdiff_t m_vOldOrigin = 0x12ac; + constexpr std::ptrdiff_t m_flOldSimulationTime = 0x12b8; + constexpr std::ptrdiff_t m_nLastExecutedCommandNumber = 0x12bc; + constexpr std::ptrdiff_t m_nLastExecutedCommandTick = 0x12c0; + constexpr std::ptrdiff_t m_hController = 0x12c4; + constexpr std::ptrdiff_t m_bIsSwappingToPredictableController = 0x12c8; +} + +namespace C_ItemCash { +} + +namespace C_CSGOViewModel { + constexpr std::ptrdiff_t m_bShouldIgnoreOffsetAndAccuracy = 0xfa8; + constexpr std::ptrdiff_t m_nWeaponParity = 0xfac; + constexpr std::ptrdiff_t m_nOldWeaponParity = 0xfb0; + constexpr std::ptrdiff_t m_nLastKnownAssociatedWeaponEntIndex = 0xfb4; + constexpr std::ptrdiff_t m_bNeedToQueueHighResComposite = 0xfb8; + constexpr std::ptrdiff_t m_vLoweredWeaponOffset = 0xffc; +} + +namespace C_WeaponCSBase { + constexpr std::ptrdiff_t m_flFireSequenceStartTime = 0x1678; + constexpr std::ptrdiff_t m_nFireSequenceStartTimeChange = 0x167c; + constexpr std::ptrdiff_t m_nFireSequenceStartTimeAck = 0x1680; + constexpr std::ptrdiff_t m_bPlayerFireEventIsPrimary = 0x1684; + constexpr std::ptrdiff_t m_seqIdle = 0x1688; + constexpr std::ptrdiff_t m_seqFirePrimary = 0x168c; + constexpr std::ptrdiff_t m_seqFireSecondary = 0x1690; + constexpr std::ptrdiff_t m_flCrosshairDistance = 0x16a8; + constexpr std::ptrdiff_t m_iAmmoLastCheck = 0x16ac; + constexpr std::ptrdiff_t m_iAlpha = 0x16b0; + constexpr std::ptrdiff_t m_iScopeTextureID = 0x16b4; + constexpr std::ptrdiff_t m_iCrosshairTextureID = 0x16b8; + constexpr std::ptrdiff_t m_flGunAccuracyPosition = 0x16bc; + constexpr std::ptrdiff_t m_nViewModelIndex = 0x16c0; + constexpr std::ptrdiff_t m_bReloadsWithClips = 0x16c4; + constexpr std::ptrdiff_t m_flTimeWeaponIdle = 0x16c8; + constexpr std::ptrdiff_t m_bFireOnEmpty = 0x16cc; + constexpr std::ptrdiff_t m_OnPlayerPickup = 0x16d0; + constexpr std::ptrdiff_t m_weaponMode = 0x16f8; + constexpr std::ptrdiff_t m_flTurningInaccuracyDelta = 0x16fc; + constexpr std::ptrdiff_t m_vecTurningInaccuracyEyeDirLast = 0x1700; + constexpr std::ptrdiff_t m_flTurningInaccuracy = 0x170c; + constexpr std::ptrdiff_t m_fAccuracyPenalty = 0x1710; + constexpr std::ptrdiff_t m_flLastAccuracyUpdateTime = 0x1714; + constexpr std::ptrdiff_t m_fAccuracySmoothedForZoom = 0x1718; + constexpr std::ptrdiff_t m_fScopeZoomEndTime = 0x171c; + constexpr std::ptrdiff_t m_iRecoilIndex = 0x1720; + constexpr std::ptrdiff_t m_flRecoilIndex = 0x1724; + constexpr std::ptrdiff_t m_bBurstMode = 0x1728; + constexpr std::ptrdiff_t m_flPostponeFireReadyTime = 0x172c; + constexpr std::ptrdiff_t m_bInReload = 0x1730; + constexpr std::ptrdiff_t m_bReloadVisuallyComplete = 0x1731; + constexpr std::ptrdiff_t m_flDroppedAtTime = 0x1734; + constexpr std::ptrdiff_t m_bIsHauledBack = 0x1738; + constexpr std::ptrdiff_t m_bSilencerOn = 0x1739; + constexpr std::ptrdiff_t m_flTimeSilencerSwitchComplete = 0x173c; + constexpr std::ptrdiff_t m_iOriginalTeamNumber = 0x1740; + constexpr std::ptrdiff_t m_flNextAttackRenderTimeOffset = 0x1744; + constexpr std::ptrdiff_t m_bVisualsDataSet = 0x17c0; + constexpr std::ptrdiff_t m_bOldFirstPersonSpectatedState = 0x17c1; + constexpr std::ptrdiff_t m_hOurPing = 0x17c4; + constexpr std::ptrdiff_t m_nOurPingIndex = 0x17c8; + constexpr std::ptrdiff_t m_vecOurPingPos = 0x17cc; + constexpr std::ptrdiff_t m_bGlowForPing = 0x17d8; + constexpr std::ptrdiff_t m_bUIWeapon = 0x17d9; + constexpr std::ptrdiff_t m_hPrevOwner = 0x17e8; + constexpr std::ptrdiff_t m_nDropTick = 0x17ec; + constexpr std::ptrdiff_t m_donated = 0x180c; + constexpr std::ptrdiff_t m_fLastShotTime = 0x1810; + constexpr std::ptrdiff_t m_bWasOwnedByCT = 0x1814; + constexpr std::ptrdiff_t m_bWasOwnedByTerrorist = 0x1815; + constexpr std::ptrdiff_t m_gunHeat = 0x1818; + constexpr std::ptrdiff_t m_smokeAttachments = 0x181c; + constexpr std::ptrdiff_t m_lastSmokeTime = 0x1820; + constexpr std::ptrdiff_t m_flLastClientFireBulletTime = 0x1824; + constexpr std::ptrdiff_t m_IronSightController = 0x1880; + constexpr std::ptrdiff_t m_iIronSightMode = 0x1930; + constexpr std::ptrdiff_t m_flLastLOSTraceFailureTime = 0x1940; + constexpr std::ptrdiff_t m_iNumEmptyAttacks = 0x1944; +} + +namespace C_WeaponCSBaseGun { + constexpr std::ptrdiff_t m_zoomLevel = 0x1970; + constexpr std::ptrdiff_t m_iBurstShotsRemaining = 0x1974; + constexpr std::ptrdiff_t m_iSilencerBodygroup = 0x1978; + constexpr std::ptrdiff_t m_silencedModelIndex = 0x1988; + constexpr std::ptrdiff_t m_inPrecache = 0x198c; + constexpr std::ptrdiff_t m_bNeedsBoltAction = 0x198d; +} + +namespace C_C4 { + constexpr std::ptrdiff_t m_szScreenText = 0x1970; + constexpr std::ptrdiff_t m_bombdroppedlightParticleIndex = 0x1990; + constexpr std::ptrdiff_t m_bStartedArming = 0x1994; + constexpr std::ptrdiff_t m_fArmedTime = 0x1998; + constexpr std::ptrdiff_t m_bBombPlacedAnimation = 0x199c; + constexpr std::ptrdiff_t m_bShowC4LED = 0x199d; + constexpr std::ptrdiff_t m_bIsPlantingViaUse = 0x199e; + constexpr std::ptrdiff_t m_entitySpottedState = 0x19a0; + constexpr std::ptrdiff_t m_nSpotRules = 0x19b8; + constexpr std::ptrdiff_t m_bPlayedArmingBeeps = 0x19bc; + constexpr std::ptrdiff_t m_bBombPlanted = 0x19c3; + constexpr std::ptrdiff_t m_bDroppedFromDeath = 0x19c4; +} + +namespace C_DEagle { +} + +namespace C_WeaponElite { +} + +namespace C_WeaponNOVA { +} + +namespace C_WeaponSawedoff { +} + +namespace C_WeaponTaser { + constexpr std::ptrdiff_t m_fFireTime = 0x1990; +} + +namespace C_WeaponXM1014 { +} + +namespace C_Knife { +} + +namespace C_KnifeGG { +} + +namespace C_Melee { + constexpr std::ptrdiff_t m_flThrowAt = 0x1970; +} + +namespace C_WeaponZoneRepulsor { + constexpr std::ptrdiff_t m_flPitchLocal = 0x1990; + constexpr std::ptrdiff_t m_flLastTimeNotIdle = 0x1994; +} + +namespace C_WeaponShield { + constexpr std::ptrdiff_t m_flDisplayHealth = 0x1990; +} + +namespace C_MolotovProjectile { + constexpr std::ptrdiff_t m_bIsIncGrenade = 0x1188; +} + +namespace C_DecoyProjectile { + constexpr std::ptrdiff_t m_flTimeParticleEffectSpawn = 0x11a8; +} + +namespace C_SmokeGrenadeProjectile { + constexpr std::ptrdiff_t m_nSmokeEffectTickBegin = 0x1190; + constexpr std::ptrdiff_t m_bDidSmokeEffect = 0x1194; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1198; + constexpr std::ptrdiff_t m_vSmokeColor = 0x119c; + constexpr std::ptrdiff_t m_vSmokeDetonationPos = 0x11a8; + constexpr std::ptrdiff_t m_VoxelFrameData = 0x11b8; + constexpr std::ptrdiff_t m_bSmokeVolumeDataReceived = 0x11d0; + constexpr std::ptrdiff_t m_bSmokeEffectSpawned = 0x11d1; +} + +namespace C_BaseCSGrenade { + constexpr std::ptrdiff_t m_bRedraw = 0x1990; + constexpr std::ptrdiff_t m_bIsHeldByPlayer = 0x1991; + constexpr std::ptrdiff_t m_bPinPulled = 0x1992; + constexpr std::ptrdiff_t m_bJumpThrow = 0x1993; + constexpr std::ptrdiff_t m_eThrowStatus = 0x1994; + constexpr std::ptrdiff_t m_fThrowTime = 0x1998; + constexpr std::ptrdiff_t m_flThrowStrength = 0x199c; + constexpr std::ptrdiff_t m_flThrowStrengthApproach = 0x19a0; + constexpr std::ptrdiff_t m_fDropTime = 0x19a4; +} + +namespace C_WeaponBaseItem { + constexpr std::ptrdiff_t m_SequenceCompleteTimer = 0x1970; + constexpr std::ptrdiff_t m_bRedraw = 0x1988; +} + +namespace C_ItemDogtags { + constexpr std::ptrdiff_t m_OwningPlayer = 0x1700; + constexpr std::ptrdiff_t m_KillingPlayer = 0x1704; +} + +namespace C_Item_Healthshot { +} + +namespace C_Fists { + constexpr std::ptrdiff_t m_bPlayingUninterruptableAct = 0x1970; + constexpr std::ptrdiff_t m_nUninterruptableActivity = 0x1974; +} + +namespace C_Tablet { + constexpr std::ptrdiff_t m_flUpgradeExpirationTime = 0x1978; + constexpr std::ptrdiff_t m_vecLocalHexFlags = 0x1988; + constexpr std::ptrdiff_t m_nContractKillGridIndex = 0x1a30; + constexpr std::ptrdiff_t m_nContractKillGridHighResIndex = 0x1a34; + constexpr std::ptrdiff_t m_bTabletReceptionIsBlocked = 0x1a38; + constexpr std::ptrdiff_t m_flScanProgress = 0x1a3c; + constexpr std::ptrdiff_t m_flBootTime = 0x1a40; + constexpr std::ptrdiff_t m_flShowMapTime = 0x1a44; + constexpr std::ptrdiff_t m_vecNearestMetalCratePos = 0x1a48; + constexpr std::ptrdiff_t m_skinState = 0x1a54; + constexpr std::ptrdiff_t m_vecNotificationIds = 0x1a58; + constexpr std::ptrdiff_t m_vecNotificationTimestamps = 0x1a78; + constexpr std::ptrdiff_t m_nLastPurchaseIndex = 0x1a98; + constexpr std::ptrdiff_t m_vecPlayerPositionHistory = 0x1a9c; + constexpr std::ptrdiff_t m_vecLocalHexFlagsClientCopy = 0x1bbc; + constexpr std::ptrdiff_t m_vecLastHexPlayerOccupancyChange = 0x1c64; + constexpr std::ptrdiff_t m_radarMaterial = 0x2088; + constexpr std::ptrdiff_t m_buildingMaterial = 0x2090; + constexpr std::ptrdiff_t m_hZoneOverlayMaterial = 0x2098; + constexpr std::ptrdiff_t m_flNoiseFadeAlpha = 0x20a0; + constexpr std::ptrdiff_t m_WorkingColor = 0x20a4; + constexpr std::ptrdiff_t m_vecLastCameraPos = 0x20a8; + constexpr std::ptrdiff_t m_angLastCameraAng = 0x20b4; + constexpr std::ptrdiff_t m_nDrawElementCount = 0x20c0; + constexpr std::ptrdiff_t m_flPrevScanProgress = 0x20c4; + constexpr std::ptrdiff_t m_nRenderTargetRes = 0x20c8; + constexpr std::ptrdiff_t m_flLastClosePoseParamVal = 0x20cc; +} + +namespace C_BreachCharge { +} + +namespace C_BumpMine { +} + +namespace C_TripWireFire { +} + +namespace C_PlantedC4Survival { +} + +namespace C_SensorGrenade { +} + +namespace C_CSPlayerPawnBase { + constexpr std::ptrdiff_t m_pActionTrackingServices = 0x12e8; + constexpr std::ptrdiff_t m_pPingServices = 0x12f0; + constexpr std::ptrdiff_t m_pViewModelServices = 0x12f8; + constexpr std::ptrdiff_t m_fRenderingClipPlane = 0x1300; + constexpr std::ptrdiff_t m_nLastClipPlaneSetupFrame = 0x1310; + constexpr std::ptrdiff_t m_vecLastClipCameraPos = 0x1314; + constexpr std::ptrdiff_t m_vecLastClipCameraForward = 0x1320; + constexpr std::ptrdiff_t m_bClipHitStaticWorld = 0x132c; + constexpr std::ptrdiff_t m_bCachedPlaneIsValid = 0x132d; + constexpr std::ptrdiff_t m_pClippingWeapon = 0x1330; + constexpr std::ptrdiff_t m_bHasFemaleVoice = 0x1338; + constexpr std::ptrdiff_t m_previousPlayerState = 0x133c; + constexpr std::ptrdiff_t m_flLastCollisionCeiling = 0x1340; + constexpr std::ptrdiff_t m_flLastCollisionCeilingChangeTime = 0x1344; + constexpr std::ptrdiff_t m_bInLanding = 0x1360; + constexpr std::ptrdiff_t m_flLandingTime = 0x1364; + constexpr std::ptrdiff_t m_grenadeParameterStashTime = 0x1368; + constexpr std::ptrdiff_t m_bGrenadeParametersStashed = 0x136c; + constexpr std::ptrdiff_t m_angStashedShootAngles = 0x1370; + constexpr std::ptrdiff_t m_vecStashedGrenadeThrowPosition = 0x137c; + constexpr std::ptrdiff_t m_vecStashedVelocity = 0x1388; + constexpr std::ptrdiff_t m_angShootAngleHistory = 0x1394; + constexpr std::ptrdiff_t m_vecThrowPositionHistory = 0x13ac; + constexpr std::ptrdiff_t m_vecVelocityHistory = 0x13c4; + constexpr std::ptrdiff_t m_thirdPersonHeading = 0x13e0; + constexpr std::ptrdiff_t m_flSlopeDropOffset = 0x13f8; + constexpr std::ptrdiff_t m_flSlopeDropHeight = 0x1408; + constexpr std::ptrdiff_t m_vHeadConstraintOffset = 0x1418; + constexpr std::ptrdiff_t m_bIsScoped = 0x1430; + constexpr std::ptrdiff_t m_bIsWalking = 0x1431; + constexpr std::ptrdiff_t m_bResumeZoom = 0x1432; + constexpr std::ptrdiff_t m_iPlayerState = 0x1434; + constexpr std::ptrdiff_t m_bIsDefusing = 0x1438; + constexpr std::ptrdiff_t m_bIsGrabbingHostage = 0x1439; + constexpr std::ptrdiff_t m_iBlockingUseActionInProgress = 0x143c; + constexpr std::ptrdiff_t m_bIsRescuing = 0x1440; + constexpr std::ptrdiff_t m_fImmuneToGunGameDamageTime = 0x1444; + constexpr std::ptrdiff_t m_fImmuneToGunGameDamageTimeLast = 0x1448; + constexpr std::ptrdiff_t m_bGunGameImmunity = 0x144c; + constexpr std::ptrdiff_t m_bHasMovedSinceSpawn = 0x144d; + constexpr std::ptrdiff_t m_bMadeFinalGunGameProgressiveKill = 0x144e; + constexpr std::ptrdiff_t m_iGunGameProgressiveWeaponIndex = 0x1450; + constexpr std::ptrdiff_t m_iNumGunGameTRKillPoints = 0x1454; + constexpr std::ptrdiff_t m_iNumGunGameKillsWithCurrentWeapon = 0x1458; + constexpr std::ptrdiff_t m_unTotalRoundDamageDealt = 0x145c; + constexpr std::ptrdiff_t m_fMolotovUseTime = 0x1460; + constexpr std::ptrdiff_t m_fMolotovDamageTime = 0x1464; + constexpr std::ptrdiff_t m_bInBombZone = 0x1468; + constexpr std::ptrdiff_t m_nWhichBombZone = 0x146c; + constexpr std::ptrdiff_t m_bInBuyZone = 0x1470; + constexpr std::ptrdiff_t m_bInNoDefuseArea = 0x1471; + constexpr std::ptrdiff_t m_iThrowGrenadeCounter = 0x1474; + constexpr std::ptrdiff_t m_bWaitForNoAttack = 0x1478; + constexpr std::ptrdiff_t m_flGuardianTooFarDistFrac = 0x147c; + constexpr std::ptrdiff_t m_flDetectedByEnemySensorTime = 0x1480; + constexpr std::ptrdiff_t m_flNextGuardianTooFarWarning = 0x1484; + constexpr std::ptrdiff_t m_bSuppressGuardianTooFarWarningAudio = 0x1488; + constexpr std::ptrdiff_t m_bKilledByTaser = 0x1489; + constexpr std::ptrdiff_t m_iMoveState = 0x148c; + constexpr std::ptrdiff_t m_bCanMoveDuringFreezePeriod = 0x1490; + constexpr std::ptrdiff_t m_isCurrentGunGameLeader = 0x1491; + constexpr std::ptrdiff_t m_isCurrentGunGameTeamLeader = 0x1492; + constexpr std::ptrdiff_t m_flLowerBodyYawTarget = 0x1494; + constexpr std::ptrdiff_t m_bStrafing = 0x1498; + constexpr std::ptrdiff_t m_szLastPlaceName = 0x1499; + constexpr std::ptrdiff_t m_flLastSpawnTimeIndex = 0x14ac; + constexpr std::ptrdiff_t m_flEmitSoundTime = 0x14b0; + constexpr std::ptrdiff_t m_iAddonBits = 0x14b4; + constexpr std::ptrdiff_t m_iPrimaryAddon = 0x14b8; + constexpr std::ptrdiff_t m_iSecondaryAddon = 0x14bc; + constexpr std::ptrdiff_t m_iProgressBarDuration = 0x14c0; + constexpr std::ptrdiff_t m_flProgressBarStartTime = 0x14c4; + constexpr std::ptrdiff_t m_flStamina = 0x14c8; + constexpr std::ptrdiff_t m_iDirection = 0x14cc; + constexpr std::ptrdiff_t m_iShotsFired = 0x14d0; + constexpr std::ptrdiff_t m_bNightVisionOn = 0x14d4; + constexpr std::ptrdiff_t m_bHasNightVision = 0x14d5; + constexpr std::ptrdiff_t m_flVelocityModifier = 0x14d8; + constexpr std::ptrdiff_t m_flHitHeading = 0x14dc; + constexpr std::ptrdiff_t m_nHitBodyPart = 0x14e0; + constexpr std::ptrdiff_t m_iStartAccount = 0x14e4; + constexpr std::ptrdiff_t m_bIsSpawnRappelling = 0x14e8; + constexpr std::ptrdiff_t m_vecSpawnRappellingRopeOrigin = 0x14ec; + constexpr std::ptrdiff_t m_flSpawnRappellingFadeOutForClientViewOffset = 0x14f8; + constexpr std::ptrdiff_t m_nSurvivalTeam = 0x14fc; + constexpr std::ptrdiff_t m_hSurvivalAssassinationTarget = 0x1500; + constexpr std::ptrdiff_t m_flHealthShotBoostExpirationTime = 0x1504; + constexpr std::ptrdiff_t m_flLastKnownParachuteScreenEffectAmount = 0x1508; + constexpr std::ptrdiff_t m_vecIntroStartEyePosition = 0x150c; + constexpr std::ptrdiff_t m_vecIntroStartPlayerForward = 0x1518; + constexpr std::ptrdiff_t m_flClientDeathTime = 0x1524; + constexpr std::ptrdiff_t m_flNightVisionAlpha = 0x1530; + constexpr std::ptrdiff_t m_bScreenTearFrameCaptured = 0x1534; + constexpr std::ptrdiff_t m_flFlashBangTime = 0x1538; + constexpr std::ptrdiff_t m_flFlashScreenshotAlpha = 0x153c; + constexpr std::ptrdiff_t m_flFlashOverlayAlpha = 0x1540; + constexpr std::ptrdiff_t m_bFlashBuildUp = 0x1544; + constexpr std::ptrdiff_t m_bFlashDspHasBeenCleared = 0x1545; + constexpr std::ptrdiff_t m_bFlashScreenshotHasBeenGrabbed = 0x1546; + constexpr std::ptrdiff_t m_flFlashMaxAlpha = 0x1548; + constexpr std::ptrdiff_t m_flFlashDuration = 0x154c; + constexpr std::ptrdiff_t m_flLastFiredWeaponTime = 0x1550; + constexpr std::ptrdiff_t m_lastStandingPos = 0x1554; + constexpr std::ptrdiff_t m_vecLastMuzzleFlashPos = 0x1560; + constexpr std::ptrdiff_t m_angLastMuzzleFlashAngle = 0x156c; + constexpr std::ptrdiff_t m_hMuzzleFlashShape = 0x1578; + constexpr std::ptrdiff_t m_iHealthBarRenderMaskIndex = 0x157c; + constexpr std::ptrdiff_t m_flHealthFadeValue = 0x1580; + constexpr std::ptrdiff_t m_flHealthFadeAlpha = 0x1584; + constexpr std::ptrdiff_t m_nMyCollisionGroup = 0x1588; + constexpr std::ptrdiff_t m_ignoreLadderJumpTime = 0x158c; + constexpr std::ptrdiff_t m_ladderSurpressionTimer = 0x1590; + constexpr std::ptrdiff_t m_lastLadderNormal = 0x15a8; + constexpr std::ptrdiff_t m_lastLadderPos = 0x15b4; + constexpr std::ptrdiff_t m_flDeathCCWeight = 0x15c8; + constexpr std::ptrdiff_t m_bOldIsScoped = 0x15cc; + constexpr std::ptrdiff_t m_flPrevRoundEndTime = 0x15d0; + constexpr std::ptrdiff_t m_flPrevMatchEndTime = 0x15d4; + constexpr std::ptrdiff_t m_unCurrentEquipmentValue = 0x15d8; + constexpr std::ptrdiff_t m_unRoundStartEquipmentValue = 0x15da; + constexpr std::ptrdiff_t m_unFreezetimeEndEquipmentValue = 0x15dc; + constexpr std::ptrdiff_t m_passiveItems = 0x15de; + constexpr std::ptrdiff_t m_vecThirdPersonViewPositionOverride = 0x15e4; + constexpr std::ptrdiff_t m_nHeavyAssaultSuitCooldownRemaining = 0x15f0; + constexpr std::ptrdiff_t m_ArmorValue = 0x15f4; + constexpr std::ptrdiff_t m_angEyeAngles = 0x15f8; + constexpr std::ptrdiff_t m_bInHostageRescueZone = 0x1610; + constexpr std::ptrdiff_t m_fNextThinkPushAway = 0x1614; + constexpr std::ptrdiff_t m_bShouldAutobuyDMWeapons = 0x1618; + constexpr std::ptrdiff_t m_bShouldAutobuyNow = 0x1619; + constexpr std::ptrdiff_t m_bHud_MiniScoreHidden = 0x161a; + constexpr std::ptrdiff_t m_bHud_RadarHidden = 0x161b; + constexpr std::ptrdiff_t m_nLastKillerIndex = 0x161c; + constexpr std::ptrdiff_t m_nLastConcurrentKilled = 0x1620; + constexpr std::ptrdiff_t m_nDeathCamMusic = 0x1624; + constexpr std::ptrdiff_t m_iIDEntIndex = 0x1628; + constexpr std::ptrdiff_t m_delayTargetIDTimer = 0x1630; + constexpr std::ptrdiff_t m_iTargetedWeaponEntIndex = 0x1648; + constexpr std::ptrdiff_t m_iOldIDEntIndex = 0x164c; + constexpr std::ptrdiff_t m_holdTargetIDTimer = 0x1650; + constexpr std::ptrdiff_t m_flCurrentMusicStartTime = 0x16b4; + constexpr std::ptrdiff_t m_flMusicRoundStartTime = 0x16b8; + constexpr std::ptrdiff_t m_bDeferStartMusicOnWarmup = 0x16bc; + constexpr std::ptrdiff_t m_cycleLatch = 0x16c0; + constexpr std::ptrdiff_t m_serverIntendedCycle = 0x16c4; + constexpr std::ptrdiff_t m_vecPlayerPatchEconIndices = 0x16c8; + constexpr std::ptrdiff_t m_bHideTargetID = 0x16e4; + constexpr std::ptrdiff_t m_nextTaserShakeTime = 0x16e8; + constexpr std::ptrdiff_t m_firstTaserShakeTime = 0x16ec; + constexpr std::ptrdiff_t m_flLastSmokeOverlayAlpha = 0x16f0; + constexpr std::ptrdiff_t m_vLastSmokeOverlayColor = 0x16f4; + constexpr std::ptrdiff_t m_nPlayerSmokedFx = 0x1700; + constexpr std::ptrdiff_t m_flNextMagDropTime = 0x1704; + constexpr std::ptrdiff_t m_nLastMagDropAttachmentIndex = 0x1708; + constexpr std::ptrdiff_t m_vecBulletHitModels = 0x1710; + constexpr std::ptrdiff_t m_vecPickupModelSlerpers = 0x1728; + constexpr std::ptrdiff_t m_vecLastAliveLocalVelocity = 0x1740; + constexpr std::ptrdiff_t m_flLastNearbyItemHighlightCheck = 0x174c; + constexpr std::ptrdiff_t m_bInSurvivalDangerZone = 0x1750; + constexpr std::ptrdiff_t m_bNearDangerZone = 0x1751; + constexpr std::ptrdiff_t m_entitySpottedState = 0x1788; + constexpr std::ptrdiff_t m_flTimeOfLastInjury = 0x17a0; + constexpr std::ptrdiff_t m_nRelativeDirectionOfLastInjury = 0x17a4; + constexpr std::ptrdiff_t m_nSurvivalTeamNumber = 0x17a8; + constexpr std::ptrdiff_t m_flNextSprayDecalTime = 0x17ac; + constexpr std::ptrdiff_t m_bPreviouslyInBuyZone = 0x17b0; + constexpr std::ptrdiff_t m_unPreviousWeaponHash = 0x17b4; + constexpr std::ptrdiff_t m_unWeaponHash = 0x17b8; + constexpr std::ptrdiff_t m_bPrevDefuser = 0x17bc; + constexpr std::ptrdiff_t m_bPrevHelmet = 0x17bd; + constexpr std::ptrdiff_t m_nPrevArmorVal = 0x17c0; + constexpr std::ptrdiff_t m_nPrevGrenadeAmmoCount = 0x17c4; + constexpr std::ptrdiff_t m_bGuardianShouldSprayCustomXMark = 0x17c8; + constexpr std::ptrdiff_t m_aimPunchAngle = 0x17cc; + constexpr std::ptrdiff_t m_aimPunchAngleVel = 0x17d8; + constexpr std::ptrdiff_t m_aimPunchTickBase = 0x17e4; + constexpr std::ptrdiff_t m_aimPunchTickFraction = 0x17e8; + constexpr std::ptrdiff_t m_aimPunchCache = 0x17f0; + constexpr std::ptrdiff_t m_flOldFallVelocity = 0x1810; + constexpr std::ptrdiff_t m_bHasDeathInfo = 0x1814; + constexpr std::ptrdiff_t m_flDeathInfoTime = 0x1818; + constexpr std::ptrdiff_t m_vecDeathInfoOrigin = 0x181c; + constexpr std::ptrdiff_t m_bKilledByHeadshot = 0x1828; + constexpr std::ptrdiff_t m_hOriginalController = 0x182c; + constexpr std::ptrdiff_t m_flLandseconds = 0x1840; +} + +namespace C_CSObserverPawn { + constexpr std::ptrdiff_t m_hDetectParentChange = 0x1870; +} + +namespace C_CSPlayerPawn { + constexpr std::ptrdiff_t m_pBulletServices = 0x1870; + constexpr std::ptrdiff_t m_pHostageServices = 0x1878; + constexpr std::ptrdiff_t m_pBuyServices = 0x1880; + constexpr std::ptrdiff_t m_pGlowServices = 0x1888; + constexpr std::ptrdiff_t m_bIsBuyMenuOpen = 0x1890; + constexpr std::ptrdiff_t m_iRetakesOffering = 0x1978; + constexpr std::ptrdiff_t m_iRetakesOfferingCard = 0x197c; + constexpr std::ptrdiff_t m_bRetakesHasDefuseKit = 0x1980; + constexpr std::ptrdiff_t m_bRetakesMVPLastRound = 0x1981; + constexpr std::ptrdiff_t m_iRetakesMVPBoostItem = 0x1984; + constexpr std::ptrdiff_t m_RetakesMVPBoostExtraUtility = 0x1988; + constexpr std::ptrdiff_t m_bNeedToReApplyGloves = 0x19a8; + constexpr std::ptrdiff_t m_EconGloves = 0x19b0; + constexpr std::ptrdiff_t m_bMustSyncRagdollState = 0x1df8; + constexpr std::ptrdiff_t m_nRagdollDamageBone = 0x1dfc; + constexpr std::ptrdiff_t m_vRagdollDamageForce = 0x1e00; + constexpr std::ptrdiff_t m_vRagdollDamagePosition = 0x1e0c; + constexpr std::ptrdiff_t m_szRagdollDamageWeaponName = 0x1e18; + constexpr std::ptrdiff_t m_bRagdollDamageHeadshot = 0x1e58; + constexpr std::ptrdiff_t m_bLastHeadBoneTransformIsValid = 0x2370; + constexpr std::ptrdiff_t m_qDeathEyeAngles = 0x238c; + constexpr std::ptrdiff_t m_bSkipOneHeadConstraintUpdate = 0x2398; +} + +namespace C_Hostage { + constexpr std::ptrdiff_t m_entitySpottedState = 0x1140; + constexpr std::ptrdiff_t m_leader = 0x1158; + constexpr std::ptrdiff_t m_reuseTimer = 0x1160; + constexpr std::ptrdiff_t m_vel = 0x1178; + constexpr std::ptrdiff_t m_isRescued = 0x1184; + constexpr std::ptrdiff_t m_jumpedThisFrame = 0x1185; + constexpr std::ptrdiff_t m_nHostageState = 0x1188; + constexpr std::ptrdiff_t m_bHandsHaveBeenCut = 0x118c; + constexpr std::ptrdiff_t m_hHostageGrabber = 0x1190; + constexpr std::ptrdiff_t m_fLastGrabTime = 0x1194; + constexpr std::ptrdiff_t m_vecGrabbedPos = 0x1198; + constexpr std::ptrdiff_t m_flRescueStartTime = 0x11a4; + constexpr std::ptrdiff_t m_flGrabSuccessTime = 0x11a8; + constexpr std::ptrdiff_t m_flDropStartTime = 0x11ac; + constexpr std::ptrdiff_t m_flDeadOrRescuedTime = 0x11b0; + constexpr std::ptrdiff_t m_blinkTimer = 0x11b8; + constexpr std::ptrdiff_t m_lookAt = 0x11d0; + constexpr std::ptrdiff_t m_lookAroundTimer = 0x11e0; + constexpr std::ptrdiff_t m_isInit = 0x11f8; + constexpr std::ptrdiff_t m_eyeAttachment = 0x11f9; + constexpr std::ptrdiff_t m_chestAttachment = 0x11fa; + constexpr std::ptrdiff_t m_pPredictionOwner = 0x1200; + constexpr std::ptrdiff_t m_fNewestAlphaThinkTime = 0x1208; +} + +namespace C_NetTestBaseCombatCharacter { +} + +namespace C_AK47 { +} + +namespace C_WeaponAug { +} + +namespace C_WeaponAWP { +} + +namespace C_WeaponBizon { +} + +namespace C_WeaponFamas { +} + +namespace C_WeaponFiveSeven { +} + +namespace C_WeaponG3SG1 { +} + +namespace C_WeaponGalilAR { +} + +namespace C_WeaponGlock { +} + +namespace C_WeaponHKP2000 { +} + +namespace C_WeaponM4A1 { +} + +namespace C_WeaponMAC10 { +} + +namespace C_WeaponMag7 { +} + +namespace C_WeaponMP7 { +} + +namespace C_WeaponMP9 { +} + +namespace C_WeaponNegev { +} + +namespace C_WeaponP250 { +} + +namespace C_WeaponP90 { +} + +namespace C_WeaponSCAR20 { +} + +namespace C_WeaponSG556 { +} + +namespace C_WeaponSSG08 { +} + +namespace C_WeaponTec9 { +} + +namespace C_WeaponUMP45 { +} + +namespace C_WeaponM249 { +} + +namespace C_MolotovGrenade { +} + +namespace C_IncendiaryGrenade { +} + +namespace C_DecoyGrenade { +} + +namespace C_Flashbang { +} + +namespace C_HEGrenade { +} + +namespace C_SmokeGrenade { +} + +namespace C_CSGO_PreviewPlayer { + constexpr std::ptrdiff_t m_animgraph = 0x23a0; + constexpr std::ptrdiff_t m_animgraphCharacterModeString = 0x23a8; + constexpr std::ptrdiff_t m_flInitialModelScale = 0x23b0; +} + +namespace C_CSGO_PreviewPlayerAlias_csgo_player_previewmodel { +} + +namespace C_CSGO_TeamPreviewModel { +} + diff --git a/generated/client.dll.json b/generated/client.dll.json new file mode 100644 index 0000000..4a5973d --- /dev/null +++ b/generated/client.dll.json @@ -0,0 +1,3640 @@ +{ + "ActiveModelConfig_t": { + "m_AssociatedEntities": 56, + "m_AssociatedEntityNames": 80, + "m_Handle": 40, + "m_Name": 48 + }, + "CAnimGraphNetworkedVariables": { + "m_OwnerOnlyPredNetBoolVariables": 224, + "m_OwnerOnlyPredNetByteVariables": 248, + "m_OwnerOnlyPredNetFloatVariables": 368, + "m_OwnerOnlyPredNetIntVariables": 296, + "m_OwnerOnlyPredNetQuaternionVariables": 416, + "m_OwnerOnlyPredNetUInt16Variables": 272, + "m_OwnerOnlyPredNetUInt32Variables": 320, + "m_OwnerOnlyPredNetUInt64Variables": 344, + "m_OwnerOnlyPredNetVectorVariables": 392, + "m_PredNetBoolVariables": 8, + "m_PredNetByteVariables": 32, + "m_PredNetFloatVariables": 152, + "m_PredNetIntVariables": 80, + "m_PredNetQuaternionVariables": 200, + "m_PredNetUInt16Variables": 56, + "m_PredNetUInt32Variables": 104, + "m_PredNetUInt64Variables": 128, + "m_PredNetVectorVariables": 176, + "m_flLastTeleportTime": 452, + "m_nBoolVariablesCount": 440, + "m_nOwnerOnlyBoolVariablesCount": 444, + "m_nRandomSeedOffset": 448 + }, + "CAttributeList": { + "m_Attributes": 8, + "m_pManager": 88 + }, + "CAttributeManager": { + "m_CachedResults": 48, + "m_ProviderType": 44, + "m_Providers": 8, + "m_bPreventLoopback": 40, + "m_hOuter": 36, + "m_iReapplyProvisionParity": 32 + }, + "CAttributeManager::cached_attribute_float_t": { + "flIn": 0, + "flOut": 16, + "iAttribHook": 8 + }, + "CBaseAnimGraph": { + "m_bAnimGraphUpdateEnabled": 3288, + "m_bBuiltRagdoll": 3496, + "m_bClientRagdoll": 3528, + "m_bHasAnimatedMaterialAttributes": 3529, + "m_bInitiallyPopulateInterpHistory": 3272, + "m_bShouldAnimateDuringGameplayPause": 3273, + "m_bSuppressAnimEventSounds": 3275, + "m_flLastEventAnimTime": 3436, + "m_flMaxSlopeDistance": 3448, + "m_hAnimationUpdate": 3444, + "m_nForceBone": 3480, + "m_pClientsideRagdoll": 3488, + "m_pRagdollPose": 3520, + "m_vLastSlopeCheckPos": 3452, + "m_vecForce": 3468 + }, + "CBaseAnimGraphController": { + "m_animGraphNetworkedVars": 56, + "m_bClientSideAnimation": 4908, + "m_bNetworkedAnimationInputsChanged": 4909, + "m_bSequenceFinished": 4888, + "m_baseLayer": 16, + "m_flLastEventCycle": 4892, + "m_flPlaybackRate": 4896, + "m_flPrevAnimTime": 4904, + "m_hLastAnimEventSequence": 4936, + "m_nAnimLoopMode": 4920, + "m_nNewSequenceParity": 4912, + "m_nPrevNewSequenceParity": 4910, + "m_nPrevResetEventsParity": 4911, + "m_nResetEventsParity": 4916 + }, + "CBasePlayerController": { + "m_CommandContext": 1360, + "m_bIsHLTV": 1544, + "m_bIsLocalPlayerController": 1696, + "m_hPawn": 1500, + "m_hPredictedPawn": 1504, + "m_hSplitOwner": 1512, + "m_hSplitScreenPlayers": 1520, + "m_iConnected": 1548, + "m_iDesiredFOV": 1700, + "m_iszPlayerName": 1552, + "m_nFinalPredictedTick": 1352, + "m_nInButtonsWhichAreToggles": 1488, + "m_nSplitScreenSlot": 1508, + "m_nTickBase": 1496, + "m_steamID": 1688 + }, + "CBasePlayerVData": { + "m_flArmDamageMultiplier": 312, + "m_flChestDamageMultiplier": 280, + "m_flCrouchTime": 372, + "m_flDrowningDamageInterval": 348, + "m_flHeadDamageMultiplier": 264, + "m_flHoldBreathTime": 344, + "m_flLegDamageMultiplier": 328, + "m_flStomachDamageMultiplier": 296, + "m_flUseAngleTolerance": 368, + "m_flUseRange": 364, + "m_nDrowningDamageInitial": 352, + "m_nDrowningDamageMax": 356, + "m_nWaterSpeed": 360, + "m_sModelName": 40 + }, + "CBasePlayerWeaponVData": { + "m_aShootSounds": 536, + "m_bAllowFlipping": 265, + "m_bAutoSwitchFrom": 529, + "m_bAutoSwitchTo": 528, + "m_bBuiltRightHanded": 264, + "m_bIsFullAuto": 266, + "m_iDefaultClip1": 516, + "m_iDefaultClip2": 520, + "m_iFlags": 504, + "m_iMaxClip1": 508, + "m_iMaxClip2": 512, + "m_iPosition": 572, + "m_iRumbleEffect": 532, + "m_iSlot": 568, + "m_iWeight": 524, + "m_nNumBullets": 268, + "m_nPrimaryAmmoType": 505, + "m_nSecondaryAmmoType": 506, + "m_sMuzzleAttachment": 272, + "m_szMuzzleFlashParticle": 280, + "m_szWorldModel": 40 + }, + "CBaseProp": { + "m_bConformToCollisionBounds": 3872, + "m_bModelOverrodeBlockLOS": 3864, + "m_iShapeType": 3868, + "m_mPreferredCatchTransform": 3876 + }, + "CBodyComponent": { + "__m_pChainEntity": 32, + "m_pSceneNode": 8 + }, + "CBodyComponentBaseAnimGraph": { + "__m_pChainEntity": 6160, + "m_animationController": 1136 + }, + "CBodyComponentBaseModelEntity": { + "__m_pChainEntity": 1136 + }, + "CBodyComponentPoint": { + "__m_pChainEntity": 416, + "m_sceneNode": 80 + }, + "CBodyComponentSkeletonInstance": { + "__m_pChainEntity": 1088, + "m_skeletonInstance": 80 + }, + "CBombTarget": { + "m_bBombPlantedHere": 3272 + }, + "CBuoyancyHelper": { + "m_flDisplacementFromObjects": 28, + "m_flFluidDensity": 24 + }, + "CCSGameModeRules": { + "__m_pChainEntity": 8 + }, + "CCSGameModeRules_Deathmatch": { + "m_bFirstThink": 48, + "m_bFirstThinkAfterConnected": 49, + "m_flDMBonusStartTime": 52, + "m_flDMBonusTimeLength": 56, + "m_nDMBonusWeaponLoadoutSlot": 60 + }, + "CCSPlayerController": { + "m_bAbandonAllowsSurrender": 2013, + "m_bAbandonOffersInstantSurrender": 2014, + "m_bCanControlObservedBot": 2040, + "m_bControllingBot": 2032, + "m_bDisconnection1MinWarningPrinted": 2015, + "m_bEverFullyConnected": 2012, + "m_bEverPlayedOnTeam": 1804, + "m_bHasBeenControlledByPlayerThisRound": 2034, + "m_bHasCommunicationAbuseMute": 1780, + "m_bHasControlledBotThisRound": 2033, + "m_bIsPlayerNameDirty": 2124, + "m_bPawnHasDefuser": 2064, + "m_bPawnHasHelmet": 2065, + "m_bPawnIsAlive": 2052, + "m_bScoreReported": 2016, + "m_flForceTeamTime": 1796, + "m_flPreviousForceJoinTeamTime": 1808, + "m_hObserverPawn": 2048, + "m_hOriginalControllerOfCurrentPawn": 2084, + "m_hPlayerPawn": 2044, + "m_iCoachingTeam": 1832, + "m_iCompTeammateColor": 1800, + "m_iCompetitiveRankType": 1864, + "m_iCompetitiveRanking": 1856, + "m_iCompetitiveRankingPredicted_Loss": 1872, + "m_iCompetitiveRankingPredicted_Tie": 1876, + "m_iCompetitiveRankingPredicted_Win": 1868, + "m_iCompetitiveWins": 1860, + "m_iDraftIndex": 2000, + "m_iMVPs": 2120, + "m_iPawnArmor": 2060, + "m_iPawnBotDifficulty": 2080, + "m_iPawnGunGameLevel": 2076, + "m_iPawnHealth": 2056, + "m_iPawnLifetimeEnd": 2072, + "m_iPawnLifetimeStart": 2068, + "m_iPendingTeamNum": 1792, + "m_iPing": 1776, + "m_iScore": 2088, + "m_msQueuedModeDisconnectionTimestamp": 2004, + "m_nBotsControlledThisRound": 2036, + "m_nDisconnectionTick": 2020, + "m_nEndMatchNextMapVote": 1880, + "m_nPawnCharacterDefIndex": 2066, + "m_nPlayerDominated": 1840, + "m_nPlayerDominatingMe": 1848, + "m_nQuestProgressReason": 1888, + "m_pActionTrackingServices": 1760, + "m_pDamageServices": 1768, + "m_pInGameMoneyServices": 1744, + "m_pInventoryServices": 1752, + "m_sSanitizedPlayerName": 1824, + "m_szClan": 1816, + "m_szCrosshairCodes": 1784, + "m_uiAbandonRecordedReason": 2008, + "m_unActiveQuestId": 1884, + "m_unPlayerTvControlFlags": 1892, + "m_vecKills": 2096 + }, + "CCSPlayerController_ActionTrackingServices": { + "m_iNumRoundKills": 264, + "m_iNumRoundKillsHeadshots": 268, + "m_matchStats": 144, + "m_perRoundStats": 64 + }, + "CCSPlayerController_DamageServices": { + "m_DamageList": 72, + "m_nSendUpdate": 64 + }, + "CCSPlayerController_InGameMoneyServices": { + "m_iAccount": 64, + "m_iCashSpentThisRound": 76, + "m_iStartAccount": 68, + "m_iTotalCashSpent": 72, + "m_nPreviousAccount": 80 + }, + "CCSPlayerController_InventoryServices": { + "m_nPersonaDataPublicCommendsFriendly": 104, + "m_nPersonaDataPublicCommendsLeader": 96, + "m_nPersonaDataPublicCommendsTeacher": 100, + "m_nPersonaDataPublicLevel": 92, + "m_rank": 68, + "m_unMusicID": 64, + "m_vecCounterTerroristLoadoutCache": 192, + "m_vecTerroristLoadoutCache": 112 + }, + "CCSPlayer_ActionTrackingServices": { + "m_bIsRescuing": 68, + "m_hLastWeaponBeforeC4AutoSwitch": 64, + "m_weaponPurchasesThisMatch": 72, + "m_weaponPurchasesThisRound": 160 + }, + "CCSPlayer_BulletServices": { + "m_totalHitsOnServer": 64 + }, + "CCSPlayer_BuyServices": { + "m_vecSellbackPurchaseEntries": 64 + }, + "CCSPlayer_CameraServices": { + "m_flDeathCamTilt": 552, + "m_flFOVRate": 540, + "m_flFOVTime": 536, + "m_flLastShotFOV": 548, + "m_hZoomOwner": 544, + "m_iFOV": 528, + "m_iFOVStart": 532 + }, + "CCSPlayer_HostageServices": { + "m_hCarriedHostage": 64, + "m_hCarriedHostageProp": 68 + }, + "CCSPlayer_ItemServices": { + "m_bHasDefuser": 64, + "m_bHasHeavyArmor": 66, + "m_bHasHelmet": 65 + }, + "CCSPlayer_MovementServices": { + "m_StuckLast": 1132, + "m_bDesiresDuck": 557, + "m_bDuckOverride": 556, + "m_bHasWalkMovedSinceLastJump": 601, + "m_bInStuckTest": 602, + "m_bOldJumpPressed": 1196, + "m_bSpeedCropped": 1136, + "m_bUpdatePredictedOriginAfterDataUpdate": 1232, + "m_duckUntilOnGround": 600, + "m_fStashGrenadeParameterWhen": 1212, + "m_flDuckAmount": 548, + "m_flDuckOffset": 560, + "m_flDuckSpeed": 552, + "m_flJumpPressedTime": 1200, + "m_flJumpUntil": 1204, + "m_flJumpVel": 1208, + "m_flLastDuckTime": 576, + "m_flMaxFallVelocity": 528, + "m_flOffsetTickCompleteTime": 1224, + "m_flOffsetTickStashedSpeed": 1228, + "m_flStuckCheckTime": 616, + "m_flWaterEntryTime": 1144, + "m_nButtonDownMaskPrev": 1216, + "m_nDuckJumpTimeMsecs": 568, + "m_nDuckTimeMsecs": 564, + "m_nJumpTimeMsecs": 572, + "m_nLadderSurfacePropIndex": 544, + "m_nOldWaterLevel": 1140, + "m_nTraceCount": 1128, + "m_vecForward": 1148, + "m_vecLadderNormal": 532, + "m_vecLastPositionAtFullCrouchSpeed": 592, + "m_vecLeft": 1160, + "m_vecPreviouslyPredictedOrigin": 1184, + "m_vecUp": 1172 + }, + "CCSPlayer_ObserverServices": { + "m_bCanShowDeathPanelNow": 192, + "m_bObserverInterpolationNeedsDeferredSetup": 164, + "m_bWasShowingDeathPanel": 193, + "m_flObsInterp_PathLength": 116, + "m_hLastObserverTarget": 88, + "m_nLastKillerActualDamageGiven": 184, + "m_nLastKillerActualDamageTaken": 188, + "m_nLastKillerDamageGiven": 176, + "m_nLastKillerDamageTaken": 168, + "m_nLastKillerHitsGiven": 180, + "m_nLastKillerHitsTaken": 172, + "m_obsInterpState": 160, + "m_qObsInterp_OrientationStart": 128, + "m_qObsInterp_OrientationTravelDir": 144, + "m_vecObserverInterpStartPos": 104, + "m_vecObserverInterpolateOffset": 92 + }, + "CCSPlayer_PingServices": { + "m_hPlayerPing": 64 + }, + "CCSPlayer_ViewModelServices": { + "m_hViewModel": 64 + }, + "CCSPlayer_WaterServices": { + "m_flSwimSoundTime": 80, + "m_flWaterJumpTime": 64, + "m_vecWaterJumpVel": 68 + }, + "CCSPlayer_WeaponServices": { + "m_bIsHoldingLookAtWeapon": 173, + "m_bIsLookingAtWeapon": 172, + "m_flNextAttack": 168 + }, + "CClientAlphaProperty": { + "m_bAlphaOverride": 0, + "m_bShadowAlphaOverride": 0, + "m_flFadeScale": 28, + "m_flRenderFxDuration": 36, + "m_flRenderFxStartTime": 32, + "m_nAlpha": 19, + "m_nDesyncOffset": 20, + "m_nDistFadeEnd": 26, + "m_nDistFadeStart": 24, + "m_nRenderFX": 16, + "m_nRenderMode": 17, + "m_nReserved": 0, + "m_nReserved2": 22 + }, + "CCollisionProperty": { + "m_CollisionGroup": 94, + "m_collisionAttribute": 16, + "m_flBoundingRadius": 96, + "m_flCapsuleRadius": 172, + "m_nEnablePhysics": 95, + "m_nSolidType": 91, + "m_nSurroundType": 93, + "m_triggerBloat": 92, + "m_usSolidFlags": 90, + "m_vCapsuleCenter1": 148, + "m_vCapsuleCenter2": 160, + "m_vecMaxs": 76, + "m_vecMins": 64, + "m_vecSpecifiedSurroundingMaxs": 112, + "m_vecSpecifiedSurroundingMins": 100, + "m_vecSurroundingMaxs": 124, + "m_vecSurroundingMins": 136 + }, + "CComicBook": { + "m_CoverImage": 8, + "m_XmlFile": 24 + }, + "CCompositeMaterialEditorDoc": { + "m_KVthumbnail": 40, + "m_Points": 16, + "m_nVersion": 8 + }, + "CDamageRecord": { + "m_DamagerXuid": 72, + "m_PlayerDamager": 40, + "m_PlayerRecipient": 44, + "m_RecipientXuid": 80, + "m_bIsOtherEnemy": 104, + "m_hPlayerControllerDamager": 48, + "m_hPlayerControllerRecipient": 52, + "m_iActualHealthRemoved": 92, + "m_iDamage": 88, + "m_iLastBulletUpdate": 100, + "m_iNumHits": 96, + "m_killType": 105, + "m_szPlayerDamagerName": 56, + "m_szPlayerRecipientName": 64 + }, + "CDecalInfo": { + "m_flAnimationLifeSpan": 4, + "m_flAnimationScale": 0, + "m_flFadeDuration": 16, + "m_flFadeStartTime": 12, + "m_flPlaceTime": 8, + "m_nBoneIndex": 24, + "m_nDecalMaterialIndex": 144, + "m_nVBSlot": 20, + "m_pNext": 40, + "m_pPrev": 48 + }, + "CEconItemAttribute": { + "m_bSetBonus": 64, + "m_flInitialValue": 56, + "m_flValue": 52, + "m_iAttributeDefinitionIndex": 48, + "m_nRefundableCurrency": 60 + }, + "CEffectData": { + "m_fFlags": 99, + "m_flMagnitude": 68, + "m_flRadius": 72, + "m_flScale": 64, + "m_hEntity": 56, + "m_hOtherEntity": 60, + "m_iEffectName": 108, + "m_nAttachmentIndex": 100, + "m_nAttachmentName": 104, + "m_nColor": 98, + "m_nDamageType": 88, + "m_nEffectIndex": 80, + "m_nExplosionType": 110, + "m_nHitBox": 96, + "m_nMaterial": 94, + "m_nPenetrate": 92, + "m_nSurfaceProp": 76, + "m_vAngles": 44, + "m_vNormal": 32, + "m_vOrigin": 8, + "m_vStart": 20 + }, + "CEntityIdentity": { + "m_PathIndex": 64, + "m_designerName": 32, + "m_fDataObjectTypes": 60, + "m_flags": 48, + "m_name": 24, + "m_nameStringableIndex": 20, + "m_pNext": 96, + "m_pNextByClass": 112, + "m_pPrev": 88, + "m_pPrevByClass": 104, + "m_worldGroupId": 56 + }, + "CEntityInstance": { + "m_CScriptComponent": 40, + "m_iszPrivateVScripts": 8, + "m_pEntity": 16 + }, + "CFireOverlay": { + "m_flScale": 264, + "m_nGUID": 268, + "m_pOwner": 208, + "m_vBaseColors": 216 + }, + "CFlashlightEffect": { + "m_FlashlightTexture": 96, + "m_MuzzleFlashTexture": 104, + "m_bCastsShadows": 88, + "m_bIsOn": 16, + "m_bMuzzleFlashEnabled": 32, + "m_flCurrentPullBackDist": 92, + "m_flFarZ": 80, + "m_flFov": 76, + "m_flLinearAtten": 84, + "m_flMuzzleFlashBrightness": 36, + "m_quatMuzzleFlashOrientation": 48, + "m_textureName": 112, + "m_vecMuzzleFlashOrigin": 64 + }, + "CFuncWater": { + "m_BuoyancyHelper": 3264 + }, + "CGameSceneNode": { + "m_angAbsRotation": 212, + "m_angRotation": 184, + "m_bBoneMergeFlex": 0, + "m_bDebugAbsOriginChanges": 230, + "m_bDirtyBoneMergeBoneToRoot": 0, + "m_bDirtyBoneMergeInfo": 0, + "m_bDirtyHierarchy": 0, + "m_bDormant": 231, + "m_bForceParentToBeNetworked": 232, + "m_bNetworkedAnglesChanged": 0, + "m_bNetworkedPositionChanged": 0, + "m_bNetworkedScaleChanged": 0, + "m_bNotifyBoneTransformsChanged": 0, + "m_bWillBeCallingPostDataUpdate": 0, + "m_flAbsScale": 224, + "m_flScale": 196, + "m_flZOffset": 308, + "m_hParent": 112, + "m_hierarchyAttachName": 304, + "m_nDoNotSetAnimTimeInInvalidatePhysicsCount": 237, + "m_nHierarchicalDepth": 235, + "m_nHierarchyType": 236, + "m_nLatchAbsOrigin": 0, + "m_nParentAttachmentOrBone": 228, + "m_name": 240, + "m_nodeToWorld": 16, + "m_pChild": 64, + "m_pNextSibling": 72, + "m_pOwner": 48, + "m_pParent": 56, + "m_vRenderOrigin": 312, + "m_vecAbsOrigin": 200, + "m_vecOrigin": 128 + }, + "CGameSceneNodeHandle": { + "m_hOwner": 8, + "m_name": 12 + }, + "CGlobalLightBase": { + "m_AmbientColor1": 110, + "m_AmbientColor2": 114, + "m_AmbientColor3": 118, + "m_AmbientDirection": 56, + "m_InspectorSpecularDirection": 80, + "m_LightColor": 106, + "m_ShadowDirection": 44, + "m_SpecularColor": 100, + "m_SpecularDirection": 68, + "m_SpotLightAngles": 32, + "m_SpotLightOrigin": 20, + "m_ViewAngles": 224, + "m_ViewOrigin": 212, + "m_WorldPoints": 240, + "m_bBackgroundClearNotRequired": 142, + "m_bEnableSeparateSkyboxFog": 196, + "m_bEnableShadows": 140, + "m_bEnabled": 105, + "m_bOldEnableShadows": 141, + "m_bSpotLight": 16, + "m_bStartDisabled": 104, + "m_flAmbientScale1": 176, + "m_flAmbientScale2": 180, + "m_flCloud1Direction": 152, + "m_flCloud1Speed": 148, + "m_flCloud2Direction": 160, + "m_flCloud2Speed": 156, + "m_flCloudScale": 144, + "m_flFOV": 128, + "m_flFarZ": 136, + "m_flFoWDarkness": 192, + "m_flGroundScale": 184, + "m_flLightScale": 188, + "m_flNearZ": 132, + "m_flSpecularIndependence": 96, + "m_flSpecularPower": 92, + "m_flSunDistance": 124, + "m_flViewFoV": 236, + "m_hEnvSky": 1212, + "m_hEnvWind": 1208, + "m_vFogOffsetLayer0": 1192, + "m_vFogOffsetLayer1": 1200, + "m_vFowColor": 200 + }, + "CGlowOverlay": { + "m_ListIndex": 196, + "m_Sprites": 48, + "m_bActivated": 194, + "m_bCacheGlowObstruction": 192, + "m_bCacheSkyObstruction": 193, + "m_bDirectional": 20, + "m_bInSky": 36, + "m_flGlowObstructionScale": 188, + "m_flHDRColorScale": 184, + "m_flProxyRadius": 180, + "m_nSprites": 176, + "m_queryHandle": 200, + "m_skyObstructionScale": 40, + "m_vDirection": 24, + "m_vPos": 8 + }, + "CGlowProperty": { + "m_bEligibleForScreenHighlight": 80, + "m_bFlashing": 68, + "m_bGlowing": 81, + "m_fGlowColor": 8, + "m_flGlowStartTime": 76, + "m_flGlowTime": 72, + "m_glowColorOverride": 64, + "m_iGlowTeam": 52, + "m_iGlowType": 48, + "m_nGlowRange": 56, + "m_nGlowRangeMin": 60 + }, + "CGlowSprite": { + "m_flHorzSize": 12, + "m_flVertSize": 16, + "m_hMaterial": 24, + "m_vColor": 0 + }, + "CGrenadeTracer": { + "m_flTracerDuration": 3296, + "m_nType": 3300 + }, + "CHitboxComponent": { + "m_bvDisabledHitGroups": 36 + }, + "CInfoDynamicShadowHint": { + "m_bDisabled": 1344, + "m_flRange": 1348, + "m_hLight": 1360, + "m_nImportance": 1352, + "m_nLightChoice": 1356 + }, + "CInfoDynamicShadowHintBox": { + "m_vBoxMaxs": 1380, + "m_vBoxMins": 1368 + }, + "CInfoOffscreenPanoramaTexture": { + "m_RenderAttrName": 1368, + "m_TargetEntities": 1376, + "m_bCheckCSSClasses": 1784, + "m_bDisabled": 1344, + "m_nResolutionX": 1348, + "m_nResolutionY": 1352, + "m_nTargetChangeCount": 1400, + "m_szLayoutFileName": 1360, + "m_vecCSSClasses": 1408 + }, + "CInfoWorldLayer": { + "m_bCreateAsChildSpawnGroup": 1402, + "m_bEntitiesSpawned": 1401, + "m_bWorldLayerActuallyVisible": 1408, + "m_bWorldLayerVisible": 1400, + "m_hLayerSpawnGroup": 1404, + "m_layerName": 1392, + "m_pOutputOnEntitiesSpawned": 1344, + "m_worldName": 1384 + }, + "CInterpolatedValue": { + "m_flEndTime": 4, + "m_flEndValue": 12, + "m_flStartTime": 0, + "m_flStartValue": 8, + "m_nInterpType": 16 + }, + "CLightComponent": { + "__m_pChainEntity": 72, + "m_Color": 133, + "m_LightGroups": 304, + "m_Pattern": 232, + "m_SecondaryColor": 137, + "m_SkyAmbientBounce": 424, + "m_SkyColor": 416, + "m_bEnabled": 336, + "m_bFlicker": 337, + "m_bMixedShadows": 429, + "m_bPrecomputedFieldsValid": 338, + "m_bRenderDiffuse": 208, + "m_bRenderToCubemaps": 296, + "m_bRenderTransmissive": 216, + "m_bUseSecondaryColor": 428, + "m_bUsesBakedShadowing": 284, + "m_flAttenuation0": 164, + "m_flAttenuation1": 168, + "m_flAttenuation2": 172, + "m_flBrightness": 144, + "m_flBrightnessMult": 152, + "m_flBrightnessScale": 148, + "m_flCapsuleLength": 436, + "m_flFadeMaxDist": 324, + "m_flFadeMinDist": 320, + "m_flFalloff": 160, + "m_flFogContributionStength": 408, + "m_flLightStyleStartTime": 432, + "m_flMinRoughness": 440, + "m_flNearClipPlane": 412, + "m_flOrthoLightHeight": 224, + "m_flOrthoLightWidth": 220, + "m_flPhi": 180, + "m_flPrecomputedMaxRange": 400, + "m_flRange": 156, + "m_flShadowCascadeCrossFade": 244, + "m_flShadowCascadeDistance0": 252, + "m_flShadowCascadeDistance1": 256, + "m_flShadowCascadeDistance2": 260, + "m_flShadowCascadeDistance3": 264, + "m_flShadowCascadeDistanceFade": 248, + "m_flShadowFadeMaxDist": 332, + "m_flShadowFadeMinDist": 328, + "m_flSkyIntensity": 420, + "m_flTheta": 176, + "m_hLightCookie": 184, + "m_nBakedShadowIndex": 292, + "m_nCascadeRenderStaticObjects": 240, + "m_nCascades": 192, + "m_nCastShadows": 196, + "m_nDirectLight": 312, + "m_nFogLightingMode": 404, + "m_nIndirectLight": 316, + "m_nRenderSpecular": 212, + "m_nShadowCascadeResolution0": 268, + "m_nShadowCascadeResolution1": 272, + "m_nShadowCascadeResolution2": 276, + "m_nShadowCascadeResolution3": 280, + "m_nShadowHeight": 204, + "m_nShadowPriority": 288, + "m_nShadowWidth": 200, + "m_nStyle": 228, + "m_vPrecomputedBoundsMaxs": 352, + "m_vPrecomputedBoundsMins": 340, + "m_vPrecomputedOBBAngles": 376, + "m_vPrecomputedOBBExtent": 388, + "m_vPrecomputedOBBOrigin": 364 + }, + "CLogicRelay": { + "m_OnSpawn": 1384, + "m_OnTrigger": 1344, + "m_bDisabled": 1424, + "m_bFastRetrigger": 1427, + "m_bPassthoughCaller": 1428, + "m_bTriggerOnce": 1426, + "m_bWaitForRefire": 1425 + }, + "CModelState": { + "m_MeshGroupMask": 384, + "m_ModelName": 168, + "m_bClientClothCreationSuppressed": 232, + "m_hModel": 160, + "m_nClothUpdateFlags": 548, + "m_nForceLOD": 547, + "m_nIdealMotionType": 546 + }, + "CNetworkedSequenceOperation": { + "m_bDiscontinuity": 29, + "m_bSequenceChangeNetworked": 28, + "m_flCycle": 16, + "m_flPrevCycle": 12, + "m_flPrevCycleForAnimEventDetection": 36, + "m_flPrevCycleFromDiscontinuity": 32, + "m_flWeight": 20, + "m_hSequence": 8 + }, + "CPlayer_CameraServices": { + "m_CurrentFog": 320, + "m_OverrideFogColor": 433, + "m_PlayerFog": 88, + "m_PostProcessingVolumes": 288, + "m_angDemoViewAngles": 504, + "m_audio": 168, + "m_bOverrideFogColor": 428, + "m_bOverrideFogStartEnd": 453, + "m_fOverrideFogEnd": 480, + "m_fOverrideFogStart": 460, + "m_flCsViewPunchAngleTickRatio": 80, + "m_flOldPlayerViewOffsetZ": 316, + "m_flOldPlayerZ": 312, + "m_hActivePostProcessingVolume": 500, + "m_hColorCorrectionCtrl": 152, + "m_hOldFogController": 424, + "m_hTonemapController": 160, + "m_hViewEntity": 156, + "m_nCsViewPunchAngleTick": 76, + "m_vecCsViewPunchAngle": 64 + }, + "CPlayer_MovementServices": { + "m_arrForceSubtickMoveWhen": 404, + "m_flForwardMove": 420, + "m_flLeftMove": 424, + "m_flMaxspeed": 400, + "m_flUpMove": 428, + "m_nButtonDoublePressed": 120, + "m_nButtons": 72, + "m_nImpulse": 64, + "m_nLastCommandNumberProcessed": 384, + "m_nQueuedButtonChangeMask": 112, + "m_nQueuedButtonDownMask": 104, + "m_nToggleButtonDownMask": 392, + "m_pButtonPressedCmdNumber": 128, + "m_vecLastMovementImpulses": 432, + "m_vecOldViewAngles": 444 + }, + "CPlayer_MovementServices_Humanoid": { + "m_bDucked": 484, + "m_bDucking": 485, + "m_bInCrouch": 472, + "m_bInDuckJump": 486, + "m_flCrouchTransitionStartTime": 480, + "m_flFallVelocity": 468, + "m_flStepSoundTime": 464, + "m_flSurfaceFriction": 500, + "m_groundNormal": 488, + "m_nCrouchState": 476, + "m_nStepside": 520, + "m_surfaceProps": 504 + }, + "CPlayer_ObserverServices": { + "m_bForcedObserverMode": 76, + "m_flObserverChaseDistance": 80, + "m_flObserverChaseDistanceCalcTime": 84, + "m_hObserverTarget": 68, + "m_iObserverLastMode": 72, + "m_iObserverMode": 64 + }, + "CPlayer_WeaponServices": { + "m_bAllowSwitchToNoWeapon": 64, + "m_hActiveWeapon": 96, + "m_hLastWeapon": 100, + "m_hMyWeapons": 72, + "m_iAmmo": 104 + }, + "CPointOffScreenIndicatorUi": { + "m_bBeenEnabled": 3872, + "m_bHide": 3873, + "m_flSeenTargetTime": 3876, + "m_pTargetPanel": 3880 + }, + "CPointTemplate": { + "m_ScriptCallbackScope": 1480, + "m_ScriptSpawnCallback": 1472, + "m_SpawnedEntityHandles": 1448, + "m_bAsynchronouslySpawnEntities": 1372, + "m_clientOnlyEntityBehavior": 1416, + "m_createdSpawnGroupHandles": 1424, + "m_flTimeoutInterval": 1368, + "m_iszEntityFilterName": 1360, + "m_iszSource2EntityLumpName": 1352, + "m_iszWorldName": 1344, + "m_ownerSpawnGroupType": 1420, + "m_pOutputOnSpawned": 1376 + }, + "CPrecipitationVData": { + "m_bBatchSameVolumeType": 272, + "m_flInnerDistance": 264, + "m_nAttachType": 268, + "m_nRTEnvCP": 276, + "m_nRTEnvCPComponent": 280, + "m_szModifier": 288, + "m_szParticlePrecipitationEffect": 40 + }, + "CProjectedTextureBase": { + "m_LightColor": 36, + "m_SpotlightTextureName": 84, + "m_bAlwaysUpdate": 17, + "m_bCameraSpace": 28, + "m_bEnableShadows": 24, + "m_bFlipHorizontal": 620, + "m_bLightOnlyTarget": 26, + "m_bLightWorld": 27, + "m_bSimpleProjection": 25, + "m_bState": 16, + "m_bVolumetric": 52, + "m_flAmbient": 80, + "m_flBrightnessScale": 32, + "m_flColorTransitionTime": 76, + "m_flFarZ": 608, + "m_flFlashlightTime": 64, + "m_flIntensity": 40, + "m_flLightFOV": 20, + "m_flLinearAttenuation": 44, + "m_flNearZ": 604, + "m_flNoiseStrength": 60, + "m_flPlaneOffset": 72, + "m_flProjectionSize": 612, + "m_flQuadraticAttenuation": 48, + "m_flRotation": 616, + "m_flVolumetricIntensity": 56, + "m_hTargetEntity": 12, + "m_nNumPlanes": 68, + "m_nShadowQuality": 600, + "m_nSpotlightTextureFrame": 596 + }, + "CRenderComponent": { + "__m_pChainEntity": 16, + "m_bEnableRendering": 96, + "m_bInterpolationReadyToDraw": 176, + "m_bIsRenderingWithViewModels": 80, + "m_nSplitscreenFlags": 84 + }, + "CSMatchStats_t": { + "m_iEnemy3Ks": 112, + "m_iEnemy4Ks": 108, + "m_iEnemy5Ks": 104 + }, + "CSPerRoundStats_t": { + "m_iAssists": 56, + "m_iCashEarned": 88, + "m_iDamage": 60, + "m_iDeaths": 52, + "m_iEnemiesFlashed": 96, + "m_iEquipmentValue": 64, + "m_iHeadShotKills": 80, + "m_iKillReward": 72, + "m_iKills": 48, + "m_iLiveTime": 76, + "m_iMoneySaved": 68, + "m_iObjective": 84, + "m_iUtilityDamage": 92 + }, + "CScriptComponent": { + "m_scriptClassName": 48 + }, + "CSkeletonInstance": { + "m_bDirtyMotionType": 0, + "m_bDisableSolidCollisionsForHierarchy": 914, + "m_bIsAnimationEnabled": 912, + "m_bIsGeneratingLatchedParentSpaceState": 0, + "m_bUseParentRenderBounds": 913, + "m_materialGroup": 916, + "m_modelState": 352, + "m_nHitboxSet": 920 + }, + "CSkyboxReference": { + "m_hSkyCamera": 1348, + "m_worldGroupId": 1344 + }, + "CTimeline": { + "m_bStopped": 544, + "m_flFinalValue": 536, + "m_flInterval": 532, + "m_flValues": 16, + "m_nBucketCount": 528, + "m_nCompressionType": 540, + "m_nValueCounts": 272 + }, + "CWeaponCSBaseVData": { + "m_DefaultLoadoutSlot": 3056, + "m_GearSlot": 3048, + "m_GearSlotPosition": 3052, + "m_WeaponCategory": 580, + "m_WeaponType": 576, + "m_angPivotAngle": 3352, + "m_bCannotShootUnderwater": 3091, + "m_bHasBurstMode": 3089, + "m_bHideViewModelWhenZoomed": 3305, + "m_bIsRevolver": 3090, + "m_bMeleeWeapon": 3088, + "m_bUnzoomsAfterShot": 3304, + "m_eSilencerType": 3112, + "m_flArmorRatio": 3384, + "m_flAttackMovespeedFactor": 3272, + "m_flBotAudibleRange": 3288, + "m_flCycleTime": 3124, + "m_flFlinchVelocityModifierLarge": 3400, + "m_flFlinchVelocityModifierSmall": 3404, + "m_flHeadshotMultiplier": 3380, + "m_flHeatPerShot": 3276, + "m_flIdleInterval": 3268, + "m_flInaccuracyAltSoundThreshold": 3284, + "m_flInaccuracyCrouch": 3148, + "m_flInaccuracyFire": 3188, + "m_flInaccuracyJump": 3164, + "m_flInaccuracyJumpApex": 3248, + "m_flInaccuracyJumpInitial": 3244, + "m_flInaccuracyLadder": 3180, + "m_flInaccuracyLand": 3172, + "m_flInaccuracyMove": 3196, + "m_flInaccuracyPitchShift": 3280, + "m_flInaccuracyReload": 3252, + "m_flInaccuracyStand": 3156, + "m_flIronSightFOV": 3340, + "m_flIronSightLooseness": 3348, + "m_flIronSightPivotForward": 3344, + "m_flIronSightPullUpSpeed": 3332, + "m_flIronSightPutDownSpeed": 3336, + "m_flMaxSpeed": 3132, + "m_flPenetration": 3388, + "m_flRange": 3392, + "m_flRangeModifier": 3396, + "m_flRecoilAngle": 3204, + "m_flRecoilAngleVariance": 3212, + "m_flRecoilMagnitude": 3220, + "m_flRecoilMagnitudeVariance": 3228, + "m_flRecoveryTimeCrouch": 3408, + "m_flRecoveryTimeCrouchFinal": 3416, + "m_flRecoveryTimeStand": 3412, + "m_flRecoveryTimeStandFinal": 3420, + "m_flSpread": 3140, + "m_flThrowVelocity": 3432, + "m_flTimeToIdleAfterFire": 3264, + "m_flZoomTime0": 3320, + "m_flZoomTime1": 3324, + "m_flZoomTime2": 3328, + "m_nCrosshairDeltaDistance": 3120, + "m_nCrosshairMinDistance": 3116, + "m_nDamage": 3376, + "m_nKillAward": 3076, + "m_nPrice": 3072, + "m_nPrimaryReserveAmmoMax": 3080, + "m_nRecoilSeed": 3256, + "m_nRecoveryTransitionEndBullet": 3428, + "m_nRecoveryTransitionStartBullet": 3424, + "m_nSecondaryReserveAmmoMax": 3084, + "m_nSpreadSeed": 3260, + "m_nTracerFrequency": 3236, + "m_nZoomFOV1": 3312, + "m_nZoomFOV2": 3316, + "m_nZoomLevels": 3308, + "m_sWrongTeamMsg": 3064, + "m_szAimsightLensMaskModel": 1256, + "m_szAnimClass": 3448, + "m_szAnimExtension": 3104, + "m_szEjectBrassEffect": 1928, + "m_szHeatEffect": 1704, + "m_szMagazineModel": 1480, + "m_szMuzzleFlashParticleAlt": 2152, + "m_szMuzzleFlashThirdPersonParticle": 2376, + "m_szMuzzleFlashThirdPersonParticleAlt": 2600, + "m_szName": 3096, + "m_szPlayerModel": 808, + "m_szTracerParticle": 2824, + "m_szUseRadioSubtitle": 3296, + "m_szViewModel": 584, + "m_szWorldDroppedModel": 1032, + "m_vSmokeColor": 3436, + "m_vecIronSightEyePos": 3364 + }, + "C_AttributeContainer": { + "m_Item": 80, + "m_iExternalItemProviderRegisteredToken": 1176, + "m_ullRegisteredAsItemID": 1184 + }, + "C_BRC4Target": { + "m_bBrokenOpen": 3872, + "m_flRadius": 3876 + }, + "C_BarnLight": { + "m_Color": 3272, + "m_LightStyleEvents": 3352, + "m_LightStyleString": 3312, + "m_LightStyleTargets": 3376, + "m_QueuedLightStyleStrings": 3328, + "m_StyleEvent": 3400, + "m_bContactShadow": 3644, + "m_bEnabled": 3264, + "m_bPrecomputedFieldsValid": 3708, + "m_fAlternateColorBrightness": 3672, + "m_flBounceScale": 3652, + "m_flBrightness": 3280, + "m_flBrightnessScale": 3284, + "m_flColorTemperature": 3276, + "m_flFadeSizeEnd": 3696, + "m_flFadeSizeStart": 3692, + "m_flFogScale": 3688, + "m_flFogStrength": 3680, + "m_flLightStyleStartTime": 3320, + "m_flLuminaireAnisotropy": 3304, + "m_flLuminaireSize": 3300, + "m_flMinRoughness": 3656, + "m_flRange": 3600, + "m_flShadowFadeSizeEnd": 3704, + "m_flShadowFadeSizeStart": 3700, + "m_flShape": 3568, + "m_flSkirt": 3580, + "m_flSkirtNear": 3584, + "m_flSoftX": 3572, + "m_flSoftY": 3576, + "m_hLightCookie": 3560, + "m_nBakeSpecularToCubemaps": 3616, + "m_nBakedShadowIndex": 3292, + "m_nBounceLight": 3648, + "m_nCastShadows": 3632, + "m_nColorMode": 3268, + "m_nDirectLight": 3288, + "m_nFog": 3676, + "m_nFogShadows": 3684, + "m_nLuminaireShape": 3296, + "m_nShadowMapSize": 3636, + "m_nShadowPriority": 3640, + "m_vAlternateColor": 3660, + "m_vBakeSpecularToCubemapsSize": 3620, + "m_vPrecomputedBoundsMaxs": 3724, + "m_vPrecomputedBoundsMins": 3712, + "m_vPrecomputedOBBAngles": 3748, + "m_vPrecomputedOBBExtent": 3760, + "m_vPrecomputedOBBOrigin": 3736, + "m_vShear": 3604, + "m_vSizeParams": 3588 + }, + "C_BaseButton": { + "m_glowEntity": 3264, + "m_szDisplayText": 3272, + "m_usable": 3268 + }, + "C_BaseCSGrenade": { + "m_bIsHeldByPlayer": 6545, + "m_bJumpThrow": 6547, + "m_bPinPulled": 6546, + "m_bRedraw": 6544, + "m_eThrowStatus": 6548, + "m_fDropTime": 6564, + "m_fThrowTime": 6552, + "m_flThrowStrength": 6556, + "m_flThrowStrengthApproach": 6560 + }, + "C_BaseCSGrenadeProjectile": { + "flNextTrailLineTime": 4408, + "m_arrTrajectoryTrailPointCreationTimes": 4456, + "m_arrTrajectoryTrailPoints": 4432, + "m_bCanCreateGrenadeTrail": 4413, + "m_bExplodeEffectBegan": 4412, + "m_flSpawnTime": 4392, + "m_flTrajectoryTrailEffectCreationTime": 4480, + "m_hSnapshotTrajectoryParticleSnapshot": 4424, + "m_nBounces": 4364, + "m_nExplodeEffectIndex": 4368, + "m_nExplodeEffectTickBegin": 4376, + "m_nSnapshotTrajectoryEffectIndex": 4416, + "m_vInitialVelocity": 4352, + "m_vecExplodeEffectOrigin": 4380, + "vecLastTrailLinePos": 4396 + }, + "C_BaseClientUIEntity": { + "m_DialogXMLName": 3280, + "m_PanelClassName": 3288, + "m_PanelID": 3296, + "m_bEnabled": 3272 + }, + "C_BaseCombatCharacter": { + "m_bloodColor": 4296, + "m_flFieldOfView": 4316, + "m_flWaterNextTraceTime": 4312, + "m_flWaterWorldZ": 4308, + "m_hMyWearables": 4272, + "m_leftFootAttachment": 4300, + "m_nWaterWakeMode": 4304, + "m_rightFootAttachment": 4301 + }, + "C_BaseDoor": { + "m_bIsUsable": 3264 + }, + "C_BaseEntity": { + "m_CBodyComponent": 48, + "m_DataChangeEventRef": 1268, + "m_EntClientFlags": 956, + "m_ListEntry": 924, + "m_MoveCollide": 1052, + "m_MoveType": 1053, + "m_NetworkTransmitComponent": 56, + "m_Particles": 1128, + "m_aThinkFunctions": 880, + "m_bAnimTimeChanged": 1321, + "m_bAnimatedEveryTick": 1085, + "m_bApplyLayerMatchIDToModel": 851, + "m_bClientSideRagdoll": 958, + "m_bHasAddedVarsToInterpolation": 914, + "m_bHasSuccessfullyInterpolated": 913, + "m_bInterpolateEvenWithNoModel": 849, + "m_bPredictable": 1105, + "m_bPredictionEligible": 850, + "m_bRenderEvenWhenNotSuccessfullyInterpolated": 915, + "m_bRenderWithViewModels": 1106, + "m_bSimulatedEveryTick": 1084, + "m_bSimulationTimeChanged": 1322, + "m_bTakesDamage": 817, + "m_dependencies": 1272, + "m_fBBoxVisFlags": 1104, + "m_fEffects": 1060, + "m_fFlags": 968, + "m_flAnimTime": 904, + "m_flCreateTime": 948, + "m_flElasticity": 1072, + "m_flFriction": 1068, + "m_flGravityScale": 1076, + "m_flNavIgnoreUntilTime": 1088, + "m_flProxyRandomValue": 840, + "m_flSimulationTime": 908, + "m_flSpeed": 952, + "m_flTimeScale": 1080, + "m_flWaterLevel": 1056, + "m_hEffectEntity": 1044, + "m_hGroundEntity": 1064, + "m_hOldMoveParent": 1120, + "m_hOwnerEntity": 1048, + "m_hSceneObjectController": 828, + "m_hThink": 1092, + "m_iCurrentThinkContext": 876, + "m_iEFlags": 844, + "m_iHealth": 812, + "m_iMaxHealth": 808, + "m_iTeamNum": 959, + "m_lifeState": 816, + "m_nCreationTick": 1296, + "m_nFirstPredictableCommand": 1112, + "m_nInterpolationLatchDirtyFlags": 916, + "m_nLastPredictableCommand": 1116, + "m_nLastThinkTick": 776, + "m_nNextScriptVarRecordID": 1240, + "m_nNextThinkTick": 964, + "m_nNoInterpolationTick": 832, + "m_nSceneObjectOverrideFlags": 912, + "m_nSimulationTick": 872, + "m_nSplitUserPlayerPredictionSlot": 1108, + "m_nSubclassID": 856, + "m_nTakeDamageFlags": 820, + "m_nVisibilityNoInterpolationTick": 836, + "m_nWaterType": 848, + "m_pCollision": 800, + "m_pGameSceneNode": 784, + "m_pRenderComponent": 792, + "m_sUniqueHammerID": 1336, + "m_spawnflags": 960, + "m_tokLayerMatchID": 852, + "m_ubInterpolationFrame": 824, + "m_vecAbsVelocity": 972, + "m_vecAngVelocity": 1256, + "m_vecBaseVelocity": 1032, + "m_vecPredictedScriptFloatIDs": 1192, + "m_vecPredictedScriptFloats": 1168, + "m_vecVelocity": 984 + }, + "C_BaseFire": { + "m_flScale": 1344, + "m_flScaleTime": 1352, + "m_flStartScale": 1348, + "m_nFlags": 1356 + }, + "C_BaseFlex": { + "m_CachedViewTarget": 4028, + "m_PhonemeClasses": 4176, + "m_bResetFlexWeightsOnModelChange": 4070, + "m_blinktime": 4048, + "m_blinktoggle": 3928, + "m_flBlinkAmount": 4064, + "m_flJawOpenAmount": 4060, + "m_flexWeight": 3880, + "m_iBlink": 4044, + "m_iEyeAttachment": 4069, + "m_iJawOpen": 4056, + "m_iMouthAttachment": 4068, + "m_mEyeOcclusionRendererCameraToBoneTransform": 4100, + "m_nEyeOcclusionRendererBone": 4096, + "m_nLastFlexUpdateFrameCount": 4024, + "m_nNextSceneEventId": 4040, + "m_prevblinktoggle": 4052, + "m_vEyeOcclusionRendererHalfExtent": 4148, + "m_vLookTargetPosition": 3904 + }, + "C_BaseFlex::Emphasized_Phoneme": { + "m_bBasechecked": 29, + "m_bRequired": 28, + "m_bValid": 30, + "m_flAmount": 24, + "m_sClassName": 0 + }, + "C_BaseGrenade": { + "m_DmgRadius": 4276, + "m_ExplosionSound": 4304, + "m_bHasWarnedAI": 4272, + "m_bIsLive": 4274, + "m_bIsSmokeGrenade": 4273, + "m_flDamage": 4288, + "m_flDetonateTime": 4280, + "m_flNextAttack": 4344, + "m_flWarnAITime": 4284, + "m_hOriginalThrower": 4348, + "m_hThrower": 4316, + "m_iszBounceSound": 4296 + }, + "C_BaseModelEntity": { + "m_CHitboxComponent": 2584, + "m_CRenderComponent": 2576, + "m_ClientOverrideTint": 3200, + "m_Collision": 2792, + "m_ConfigEntitiesToPropagateMaterialDecalsTo": 3120, + "m_Glow": 2968, + "m_LightGroup": 2784, + "m_bAllowFadeInView": 2674, + "m_bInitModelEffects": 2656, + "m_bIsStaticProp": 2657, + "m_bRenderToCubemaps": 2788, + "m_bUseClientOverrideTint": 3204, + "m_clrRender": 2675, + "m_fadeMaxDist": 3064, + "m_fadeMinDist": 3060, + "m_flDecalHealBloodRate": 3108, + "m_flDecalHealHeightRate": 3112, + "m_flFadeScale": 3068, + "m_flGlowBackfaceMult": 3056, + "m_flShadowStrength": 3072, + "m_iOldHealth": 2668, + "m_nAddDecal": 3080, + "m_nDecalsAdded": 2664, + "m_nLastAddDecal": 2660, + "m_nObjectCulling": 3076, + "m_nRenderFX": 2673, + "m_nRenderMode": 2672, + "m_pClientAlphaProperty": 3192, + "m_vDecalForwardAxis": 3096, + "m_vDecalPosition": 3084, + "m_vecRenderAttributes": 2680, + "m_vecViewOffset": 3144 + }, + "C_BasePlayerPawn": { + "m_ServerViewAngleChanges": 4496, + "m_bIsSwappingToPredictableController": 4808, + "m_flDeathTime": 4752, + "m_flFOVSensitivityAdjust": 4772, + "m_flMouseSensitivity": 4776, + "m_flOldSimulationTime": 4792, + "m_flPredictionErrorTime": 4768, + "m_hController": 4804, + "m_iHideHUD": 4604, + "m_nHighestConsumedServerViewAngleChangeIndex": 4576, + "m_nLastExecutedCommandNumber": 4796, + "m_nLastExecutedCommandTick": 4800, + "m_pAutoaimServices": 4432, + "m_pCameraServices": 4472, + "m_pFlashlightServices": 4464, + "m_pItemServices": 4424, + "m_pMovementServices": 4480, + "m_pObserverServices": 4440, + "m_pUseServices": 4456, + "m_pWaterServices": 4448, + "m_pWeaponServices": 4416, + "m_skybox3d": 4608, + "m_vOldOrigin": 4780, + "m_vecPredictionError": 4756, + "v_angle": 4580, + "v_anglePrevious": 4592 + }, + "C_BasePlayerWeapon": { + "m_bRemoveable": 5632, + "m_flNextPrimaryAttackTickRatio": 5640, + "m_flNextSecondaryAttackTickRatio": 5648, + "m_iClip1": 5652, + "m_iClip2": 5656, + "m_iOldState": 5628, + "m_iState": 5624, + "m_nNextPrimaryAttackTick": 5636, + "m_nNextSecondaryAttackTick": 5644, + "m_pReserveAmmo": 5660 + }, + "C_BasePropDoor": { + "m_bLocked": 4501, + "m_closedAngles": 4516, + "m_closedPosition": 4504, + "m_eDoorState": 4496, + "m_hMaster": 4528, + "m_modelChanged": 4500, + "m_vWhereToSetLightingOrigin": 4532 + }, + "C_BaseTrigger": { + "m_bClientSidePredicted": 3265, + "m_bDisabled": 3264 + }, + "C_BaseViewModel": { + "m_flAnimationStartTime": 3892, + "m_hControlPanel": 3964, + "m_hOldLayerSequence": 3952, + "m_hWeapon": 3896, + "m_hWeaponModel": 3920, + "m_iCameraAttachment": 3924, + "m_nAnimationParity": 3888, + "m_nOldAnimationParity": 3948, + "m_nViewModelIndex": 3884, + "m_oldLayer": 3956, + "m_oldLayerStartTime": 3960, + "m_previousCycle": 3944, + "m_previousElapsedDuration": 3940, + "m_sAnimationPrefix": 3912, + "m_sVMName": 3904, + "m_vecLastCameraAngles": 3928, + "m_vecLastFacing": 3872 + }, + "C_Beam": { + "m_bTurnedOff": 3432, + "m_fAmplitude": 3412, + "m_fEndWidth": 3400, + "m_fFadeLength": 3404, + "m_fHaloScale": 3408, + "m_fSpeed": 3420, + "m_fStartFrame": 3416, + "m_fWidth": 3396, + "m_flDamage": 3276, + "m_flFireTime": 3272, + "m_flFrame": 3424, + "m_flFrameRate": 3264, + "m_flHDRColorScale": 3268, + "m_hAttachEntity": 3344, + "m_hBaseMaterial": 3320, + "m_hEndEntity": 3448, + "m_nAttachIndex": 3384, + "m_nBeamFlags": 3340, + "m_nBeamType": 3336, + "m_nClipStyle": 3428, + "m_nHaloIndex": 3328, + "m_nNumBeamEnts": 3280, + "m_queryHandleHalo": 3284, + "m_vecEndPos": 3436 + }, + "C_BreachChargeProjectile": { + "m_bShouldExplode": 4352, + "m_nParentBoneIndex": 4360, + "m_vecParentBonePos": 4364, + "m_weaponThatThrewMe": 4356 + }, + "C_BreakableProp": { + "m_OnBreak": 3936, + "m_OnHealthChanged": 3976, + "m_OnTakeDamage": 4016, + "m_PerformanceMode": 4072, + "m_bHasBreakPiecesOrCommands": 4120, + "m_explodeDamage": 4124, + "m_explodeRadius": 4128, + "m_explosionBuildupSound": 4144, + "m_explosionCustomEffect": 4152, + "m_explosionCustomSound": 4160, + "m_explosionDelay": 4136, + "m_explosionModifier": 4168, + "m_flDefaultFadeScale": 4184, + "m_flDmgModBullet": 4076, + "m_flDmgModClub": 4080, + "m_flDmgModExplosive": 4084, + "m_flDmgModFire": 4088, + "m_flLastPhysicsInfluenceTime": 4180, + "m_flPressureDelay": 4064, + "m_flPreventDamageBeforeTime": 4116, + "m_hBreaker": 4068, + "m_hFlareEnt": 4192, + "m_hLastAttacker": 4188, + "m_hPhysicsAttacker": 4176, + "m_iInteractions": 4112, + "m_iMinHealthDmg": 4060, + "m_impactEnergyScale": 4056, + "m_iszBasePropData": 4104, + "m_iszPhysicsDamageTableName": 4096, + "m_noGhostCollision": 4196 + }, + "C_BulletHitModel": { + "m_bIsHit": 3920, + "m_flTimeCreated": 3924, + "m_hPlayerParent": 3916, + "m_iBoneIndex": 3912, + "m_matLocal": 3864, + "m_vecStartPos": 3928 + }, + "C_BumpMineProjectile": { + "m_bArmed": 4372, + "m_bShouldExplode": 4352, + "m_nParentBoneIndex": 4356, + "m_vecParentBonePos": 4360 + }, + "C_C4": { + "m_bBombPlacedAnimation": 6556, + "m_bBombPlanted": 6595, + "m_bDroppedFromDeath": 6596, + "m_bIsPlantingViaUse": 6558, + "m_bPlayedArmingBeeps": 6588, + "m_bShowC4LED": 6557, + "m_bStartedArming": 6548, + "m_bombdroppedlightParticleIndex": 6544, + "m_entitySpottedState": 6560, + "m_fArmedTime": 6552, + "m_nSpotRules": 6584, + "m_szScreenText": 6512 + }, + "C_CSGOViewModel": { + "m_bNeedToQueueHighResComposite": 4024, + "m_bShouldIgnoreOffsetAndAccuracy": 4008, + "m_nLastKnownAssociatedWeaponEntIndex": 4020, + "m_nOldWeaponParity": 4016, + "m_nWeaponParity": 4012, + "m_vLoweredWeaponOffset": 4092 + }, + "C_CSGO_MapPreviewCameraPath": { + "m_bConstantSpeed": 1354, + "m_bLoop": 1352, + "m_bVerticalFOV": 1353, + "m_flDuration": 1356, + "m_flPathDuration": 1428, + "m_flPathLength": 1424, + "m_flZFar": 1344, + "m_flZNear": 1348 + }, + "C_CSGO_MapPreviewCameraPathNode": { + "m_flEaseIn": 1388, + "m_flEaseOut": 1392, + "m_flFOV": 1380, + "m_flSpeed": 1384, + "m_nPathIndex": 1352, + "m_szParentPathUniqueID": 1344, + "m_vInTangentLocal": 1356, + "m_vInTangentWorld": 1396, + "m_vOutTangentLocal": 1368, + "m_vOutTangentWorld": 1408 + }, + "C_CSGO_PreviewModel": { + "m_animgraph": 4272, + "m_animgraphCharacterModeString": 4280, + "m_defaultAnim": 4288, + "m_flInitialModelScale": 4300, + "m_nDefaultAnimLoopMode": 4296 + }, + "C_CSGO_PreviewPlayer": { + "m_animgraph": 9120, + "m_animgraphCharacterModeString": 9128, + "m_flInitialModelScale": 9136 + }, + "C_CSGO_TeamPreviewCamera": { + "m_bDofEnabled": 1444, + "m_flDofFarBlurry": 1460, + "m_flDofFarCrisp": 1456, + "m_flDofNearBlurry": 1448, + "m_flDofNearCrisp": 1452, + "m_flDofTiltToGround": 1464, + "m_nVariant": 1440 + }, + "C_CSGO_TeamPreviewCharacterPosition": { + "m_nOrdinal": 1352, + "m_nRandom": 1348, + "m_nVariant": 1344, + "m_sWeaponName": 1360, + "m_weaponItem": 1376, + "m_xuid": 1368 + }, + "C_CSGameRules": { + "__m_pChainEntity": 8, + "m_GGProgressiveWeaponKillUpgradeOrderCT": 648, + "m_GGProgressiveWeaponKillUpgradeOrderT": 888, + "m_GGProgressiveWeaponOrderCT": 168, + "m_GGProgressiveWeaponOrderT": 408, + "m_MatchDevice": 1128, + "m_MinimapVerticalSectionHeights": 4156, + "m_RetakeRules": 6168, + "m_SurvivalRules": 4440, + "m_TeamRespawnWaveTimes": 3872, + "m_arrFeaturedGiftersAccounts": 3236, + "m_arrFeaturedGiftersGifts": 3252, + "m_arrProhibitedItemIndices": 3268, + "m_arrTournamentActiveCasterAccounts": 3468, + "m_bAnyHostageReached": 140, + "m_bBombDropped": 3492, + "m_bBombPlanted": 3493, + "m_bCTCantBuy": 3505, + "m_bCTTimeOutActive": 71, + "m_bDontIncrementCoopWave": 4188, + "m_bFreezePeriod": 48, + "m_bGamePaused": 69, + "m_bGameRestart": 108, + "m_bHasMatchStarted": 1132, + "m_bHasTriggeredCoopSpawnReset": 4402, + "m_bHasTriggeredRoundStartMusic": 4401, + "m_bIsDroppingItems": 3200, + "m_bIsQuestEligible": 3201, + "m_bIsQueuedMatchmaking": 144, + "m_bIsValveDS": 152, + "m_bLogoMap": 153, + "m_bMapHasBombTarget": 141, + "m_bMapHasBuyZone": 143, + "m_bMapHasRescueZone": 142, + "m_bMarkClientStopRecordAtRoundEnd": 4312, + "m_bMatchAbortedDueToPlayerBan": 4400, + "m_bMatchWaitingForResume": 89, + "m_bPlayAllStepSoundsOnServer": 154, + "m_bServerPaused": 68, + "m_bSpawnedTerrorHuntHeavy": 4189, + "m_bSwitchingTeamsAtRoundReset": 4403, + "m_bTCantBuy": 3504, + "m_bTeamIntroPeriod": 6460, + "m_bTechnicalTimeOut": 88, + "m_bTerroristTimeOutActive": 70, + "m_bWarmupPeriod": 49, + "m_eRoundWinReason": 3500, + "m_fMatchStartTime": 96, + "m_fRoundStartTime": 100, + "m_fWarmupPeriodEnd": 52, + "m_fWarmupPeriodStart": 56, + "m_flCMMItemDropRevealEndTime": 3196, + "m_flCMMItemDropRevealStartTime": 3192, + "m_flCTTimeOutRemaining": 76, + "m_flGameStartTime": 112, + "m_flGuardianBuyUntilTime": 3508, + "m_flNextRespawnWave": 4000, + "m_flRestartRoundTime": 104, + "m_flTerroristTimeOutRemaining": 72, + "m_gamePhase": 120, + "m_iHostagesRemaining": 136, + "m_iMatchStats_PlayersAlive_CT": 3632, + "m_iMatchStats_PlayersAlive_T": 3752, + "m_iMatchStats_RoundResults": 3512, + "m_iMaxGunGameProgressiveWeaponIndex": 4404, + "m_iNumConsecutiveCTLoses": 4276, + "m_iNumConsecutiveTerroristLoses": 4280, + "m_iNumGunGameProgressiveWeaponsCT": 156, + "m_iNumGunGameProgressiveWeaponsT": 160, + "m_iRoundTime": 92, + "m_iRoundWinStatus": 3496, + "m_iSpectatorSlotCount": 164, + "m_nCTTeamIntroVariant": 6456, + "m_nCTTimeOuts": 84, + "m_nEndMatchMapGroupVoteOptions": 4232, + "m_nEndMatchMapGroupVoteTypes": 4192, + "m_nEndMatchMapVoteWinner": 4272, + "m_nGuardianGrenadesToGiveBots": 3216, + "m_nGuardianModeSpecialKillsRemaining": 3208, + "m_nGuardianModeSpecialWeaponNeeded": 3212, + "m_nGuardianModeWaveNumber": 3204, + "m_nHalloweenMaskListSeed": 3488, + "m_nMatchEndCount": 6448, + "m_nNextMapInMapgroup": 1136, + "m_nNumHeaviesToSpawn": 3220, + "m_nOvertimePlaying": 132, + "m_nPauseStartTick": 64, + "m_nQueuedMatchmakingMode": 148, + "m_nRoundsPlayedThisPhase": 128, + "m_nServerQuestID": 4128, + "m_nTTeamIntroVariant": 6452, + "m_nTerroristTimeOuts": 80, + "m_nTotalPausedTicks": 60, + "m_nTournamentPredictionsPct": 3188, + "m_numBestOfMaps": 3484, + "m_numGlobalGifters": 3228, + "m_numGlobalGiftsGiven": 3224, + "m_numGlobalGiftsPeriodSeconds": 3232, + "m_pGameModeRules": 4432, + "m_szMatchStatTxt": 2164, + "m_szTournamentEventName": 1140, + "m_szTournamentEventStage": 1652, + "m_szTournamentPredictionsTxt": 2676, + "m_timeUntilNextPhaseStarts": 116, + "m_totalRoundsPlayed": 124, + "m_vMinimapMaxs": 4144, + "m_vMinimapMins": 4132 + }, + "C_CSGameRulesProxy": { + "m_pGameRules": 1344 + }, + "C_CSObserverPawn": { + "m_hDetectParentChange": 6256 + }, + "C_CSPlayerPawn": { + "m_EconGloves": 6576, + "m_RetakesMVPBoostExtraUtility": 6536, + "m_bIsBuyMenuOpen": 6288, + "m_bLastHeadBoneTransformIsValid": 9072, + "m_bMustSyncRagdollState": 7672, + "m_bNeedToReApplyGloves": 6568, + "m_bRagdollDamageHeadshot": 7768, + "m_bRetakesHasDefuseKit": 6528, + "m_bRetakesMVPLastRound": 6529, + "m_bSkipOneHeadConstraintUpdate": 9112, + "m_iRetakesMVPBoostItem": 6532, + "m_iRetakesOffering": 6520, + "m_iRetakesOfferingCard": 6524, + "m_nRagdollDamageBone": 7676, + "m_pBulletServices": 6256, + "m_pBuyServices": 6272, + "m_pGlowServices": 6280, + "m_pHostageServices": 6264, + "m_qDeathEyeAngles": 9100, + "m_szRagdollDamageWeaponName": 7704, + "m_vRagdollDamageForce": 7680, + "m_vRagdollDamagePosition": 7692 + }, + "C_CSPlayerPawnBase": { + "m_ArmorValue": 5620, + "m_aimPunchAngle": 6092, + "m_aimPunchAngleVel": 6104, + "m_aimPunchCache": 6128, + "m_aimPunchTickBase": 6116, + "m_aimPunchTickFraction": 6120, + "m_angEyeAngles": 5624, + "m_angLastMuzzleFlashAngle": 5484, + "m_angShootAngleHistory": 5012, + "m_angStashedShootAngles": 4976, + "m_bCachedPlaneIsValid": 4909, + "m_bCanMoveDuringFreezePeriod": 5264, + "m_bClipHitStaticWorld": 4908, + "m_bDeferStartMusicOnWarmup": 5820, + "m_bFlashBuildUp": 5444, + "m_bFlashDspHasBeenCleared": 5445, + "m_bFlashScreenshotHasBeenGrabbed": 5446, + "m_bGrenadeParametersStashed": 4972, + "m_bGuardianShouldSprayCustomXMark": 6088, + "m_bGunGameImmunity": 5196, + "m_bHasDeathInfo": 6164, + "m_bHasFemaleVoice": 4920, + "m_bHasMovedSinceSpawn": 5197, + "m_bHasNightVision": 5333, + "m_bHideTargetID": 5860, + "m_bHud_MiniScoreHidden": 5658, + "m_bHud_RadarHidden": 5659, + "m_bInBombZone": 5224, + "m_bInBuyZone": 5232, + "m_bInHostageRescueZone": 5648, + "m_bInLanding": 4960, + "m_bInNoDefuseArea": 5233, + "m_bInSurvivalDangerZone": 5968, + "m_bIsDefusing": 5176, + "m_bIsGrabbingHostage": 5177, + "m_bIsRescuing": 5184, + "m_bIsScoped": 5168, + "m_bIsSpawnRappelling": 5352, + "m_bIsWalking": 5169, + "m_bKilledByHeadshot": 6184, + "m_bKilledByTaser": 5257, + "m_bMadeFinalGunGameProgressiveKill": 5198, + "m_bNearDangerZone": 5969, + "m_bNightVisionOn": 5332, + "m_bOldIsScoped": 5580, + "m_bPrevDefuser": 6076, + "m_bPrevHelmet": 6077, + "m_bPreviouslyInBuyZone": 6064, + "m_bResumeZoom": 5170, + "m_bScreenTearFrameCaptured": 5428, + "m_bShouldAutobuyDMWeapons": 5656, + "m_bShouldAutobuyNow": 5657, + "m_bStrafing": 5272, + "m_bSuppressGuardianTooFarWarningAudio": 5256, + "m_bWaitForNoAttack": 5240, + "m_cycleLatch": 5824, + "m_delayTargetIDTimer": 5680, + "m_entitySpottedState": 6024, + "m_fImmuneToGunGameDamageTime": 5188, + "m_fImmuneToGunGameDamageTimeLast": 5192, + "m_fMolotovDamageTime": 5220, + "m_fMolotovUseTime": 5216, + "m_fNextThinkPushAway": 5652, + "m_fRenderingClipPlane": 4864, + "m_firstTaserShakeTime": 5868, + "m_flClientDeathTime": 5412, + "m_flCurrentMusicStartTime": 5812, + "m_flDeathCCWeight": 5576, + "m_flDeathInfoTime": 6168, + "m_flDetectedByEnemySensorTime": 5248, + "m_flEmitSoundTime": 5296, + "m_flFlashBangTime": 5432, + "m_flFlashDuration": 5452, + "m_flFlashMaxAlpha": 5448, + "m_flFlashOverlayAlpha": 5440, + "m_flFlashScreenshotAlpha": 5436, + "m_flGuardianTooFarDistFrac": 5244, + "m_flHealthFadeAlpha": 5508, + "m_flHealthFadeValue": 5504, + "m_flHealthShotBoostExpirationTime": 5380, + "m_flHitHeading": 5340, + "m_flLandingTime": 4964, + "m_flLandseconds": 6208, + "m_flLastCollisionCeiling": 4928, + "m_flLastCollisionCeilingChangeTime": 4932, + "m_flLastFiredWeaponTime": 5456, + "m_flLastKnownParachuteScreenEffectAmount": 5384, + "m_flLastNearbyItemHighlightCheck": 5964, + "m_flLastSmokeOverlayAlpha": 5872, + "m_flLastSpawnTimeIndex": 5292, + "m_flLowerBodyYawTarget": 5268, + "m_flMusicRoundStartTime": 5816, + "m_flNextGuardianTooFarWarning": 5252, + "m_flNextMagDropTime": 5892, + "m_flNextSprayDecalTime": 6060, + "m_flNightVisionAlpha": 5424, + "m_flOldFallVelocity": 6160, + "m_flPrevMatchEndTime": 5588, + "m_flPrevRoundEndTime": 5584, + "m_flProgressBarStartTime": 5316, + "m_flSlopeDropHeight": 5128, + "m_flSlopeDropOffset": 5112, + "m_flSpawnRappellingFadeOutForClientViewOffset": 5368, + "m_flStamina": 5320, + "m_flTimeOfLastInjury": 6048, + "m_flVelocityModifier": 5336, + "m_grenadeParameterStashTime": 4968, + "m_hMuzzleFlashShape": 5496, + "m_hOriginalController": 6188, + "m_hSurvivalAssassinationTarget": 5376, + "m_holdTargetIDTimer": 5712, + "m_iAddonBits": 5300, + "m_iBlockingUseActionInProgress": 5180, + "m_iDirection": 5324, + "m_iGunGameProgressiveWeaponIndex": 5200, + "m_iHealthBarRenderMaskIndex": 5500, + "m_iIDEntIndex": 5672, + "m_iMoveState": 5260, + "m_iNumGunGameKillsWithCurrentWeapon": 5208, + "m_iNumGunGameTRKillPoints": 5204, + "m_iOldIDEntIndex": 5708, + "m_iPlayerState": 5172, + "m_iPrimaryAddon": 5304, + "m_iProgressBarDuration": 5312, + "m_iSecondaryAddon": 5308, + "m_iShotsFired": 5328, + "m_iStartAccount": 5348, + "m_iTargetedWeaponEntIndex": 5704, + "m_iThrowGrenadeCounter": 5236, + "m_ignoreLadderJumpTime": 5516, + "m_isCurrentGunGameLeader": 5265, + "m_isCurrentGunGameTeamLeader": 5266, + "m_ladderSurpressionTimer": 5520, + "m_lastLadderNormal": 5544, + "m_lastLadderPos": 5556, + "m_lastStandingPos": 5460, + "m_nDeathCamMusic": 5668, + "m_nHeavyAssaultSuitCooldownRemaining": 5616, + "m_nHitBodyPart": 5344, + "m_nLastClipPlaneSetupFrame": 4880, + "m_nLastConcurrentKilled": 5664, + "m_nLastKillerIndex": 5660, + "m_nLastMagDropAttachmentIndex": 5896, + "m_nMyCollisionGroup": 5512, + "m_nPlayerSmokedFx": 5888, + "m_nPrevArmorVal": 6080, + "m_nPrevGrenadeAmmoCount": 6084, + "m_nRelativeDirectionOfLastInjury": 6052, + "m_nSurvivalTeam": 5372, + "m_nSurvivalTeamNumber": 6056, + "m_nWhichBombZone": 5228, + "m_nextTaserShakeTime": 5864, + "m_pActionTrackingServices": 4840, + "m_pClippingWeapon": 4912, + "m_pPingServices": 4848, + "m_pViewModelServices": 4856, + "m_passiveItems": 5598, + "m_previousPlayerState": 4924, + "m_serverIntendedCycle": 5828, + "m_szLastPlaceName": 5273, + "m_thirdPersonHeading": 5088, + "m_unCurrentEquipmentValue": 5592, + "m_unFreezetimeEndEquipmentValue": 5596, + "m_unPreviousWeaponHash": 6068, + "m_unRoundStartEquipmentValue": 5594, + "m_unTotalRoundDamageDealt": 5212, + "m_unWeaponHash": 6072, + "m_vHeadConstraintOffset": 5144, + "m_vLastSmokeOverlayColor": 5876, + "m_vecBulletHitModels": 5904, + "m_vecDeathInfoOrigin": 6172, + "m_vecIntroStartEyePosition": 5388, + "m_vecIntroStartPlayerForward": 5400, + "m_vecLastAliveLocalVelocity": 5952, + "m_vecLastClipCameraForward": 4896, + "m_vecLastClipCameraPos": 4884, + "m_vecLastMuzzleFlashPos": 5472, + "m_vecPickupModelSlerpers": 5928, + "m_vecPlayerPatchEconIndices": 5832, + "m_vecSpawnRappellingRopeOrigin": 5356, + "m_vecStashedGrenadeThrowPosition": 4988, + "m_vecStashedVelocity": 5000, + "m_vecThirdPersonViewPositionOverride": 5604, + "m_vecThrowPositionHistory": 5036, + "m_vecVelocityHistory": 5060 + }, + "C_CSPlayerResource": { + "m_bEndMatchNextMapAllVoted": 1488, + "m_bHostageAlive": 1344, + "m_bombsiteCenterA": 1416, + "m_bombsiteCenterB": 1428, + "m_foundGoalPositions": 1489, + "m_hostageRescueX": 1440, + "m_hostageRescueY": 1456, + "m_hostageRescueZ": 1472, + "m_iHostageEntityIDs": 1368, + "m_isHostageFollowingSomeone": 1356 + }, + "C_CSPropExplodingBarrelTop": { + "m_flOverrideAlpha": 4208 + }, + "C_CSTeam": { + "m_bSurrendered": 2044, + "m_iClanID": 2192, + "m_nGGLeaderSlot_CT": 2196, + "m_nGGLeaderSlot_T": 2200, + "m_numMapVictories": 2040, + "m_scoreFirstHalf": 2048, + "m_scoreOvertime": 2056, + "m_scoreSecondHalf": 2052, + "m_szClanTeamname": 2060, + "m_szTeamFlagImage": 2204, + "m_szTeamLogoImage": 2212, + "m_szTeamMatchStat": 1528 + }, + "C_Chicken": { + "m_AttributeManager": 4504, + "m_OriginalOwnerXuidHigh": 5700, + "m_OriginalOwnerXuidLow": 5696, + "m_bAttributesInitialized": 5704, + "m_hHolidayHatAddon": 4488, + "m_hWaterWakeParticles": 5708, + "m_jumpedThisFrame": 4492, + "m_leader": 4496 + }, + "C_ClientRagdoll": { + "m_bFadeOut": 3864, + "m_bFadingOut": 3894, + "m_bImportant": 3865, + "m_bReleaseRagdoll": 3892, + "m_flEffectTime": 3868, + "m_flScaleEnd": 3896, + "m_flScaleTimeEnd": 3976, + "m_flScaleTimeStart": 3936, + "m_gibDespawnTime": 3872, + "m_iCurrentFriction": 3876, + "m_iEyeAttachment": 3893, + "m_iFrictionAnimState": 3888, + "m_iMaxFriction": 3884, + "m_iMinFriction": 3880 + }, + "C_ColorCorrection": { + "m_MaxFalloff": 1360, + "m_MinFalloff": 1356, + "m_bClientSide": 1894, + "m_bEnabled": 1892, + "m_bEnabledOnClient": 1896, + "m_bExclusive": 1895, + "m_bFadingIn": 1904, + "m_bMaster": 1893, + "m_flCurWeight": 1376, + "m_flCurWeightOnClient": 1900, + "m_flFadeDuration": 1916, + "m_flFadeInDuration": 1364, + "m_flFadeOutDuration": 1368, + "m_flFadeStartTime": 1912, + "m_flFadeStartWeight": 1908, + "m_flMaxWeight": 1372, + "m_netlookupFilename": 1380, + "m_vecOrigin": 1344 + }, + "C_ColorCorrectionVolume": { + "m_FadeDuration": 3296, + "m_LastEnterTime": 3276, + "m_LastEnterWeight": 3272, + "m_LastExitTime": 3284, + "m_LastExitWeight": 3280, + "m_MaxWeight": 3292, + "m_Weight": 3300, + "m_bEnabled": 3288, + "m_lookupFilename": 3304 + }, + "C_CommandContext": { + "command_number": 120, + "needsprocessing": 0 + }, + "C_CsmFovOverride": { + "m_cameraName": 1344, + "m_flCsmFovOverrideValue": 1352 + }, + "C_DangerZone": { + "m_flBombLaunchTime": 1356, + "m_flExtraRadius": 1360, + "m_flExtraRadiusStartTime": 1364, + "m_flExtraRadiusTotalLerpTime": 1368, + "m_iWave": 1376, + "m_nDropOrder": 1372, + "m_vecDangerZoneOriginStartedAt": 1344 + }, + "C_DangerZoneController": { + "m_DangerZones": 1380, + "m_bDangerZoneControllerEnabled": 1344, + "m_bMissionControlledExplosions": 1345, + "m_flFinalExpansionTime": 1376, + "m_flStartTime": 1372, + "m_flWaveEndTimes": 1548, + "m_hTheFinalZone": 1568, + "m_vecEndGameCircleEnd": 1360, + "m_vecEndGameCircleStart": 1348 + }, + "C_DecoyProjectile": { + "m_flTimeParticleEffectSpawn": 4520 + }, + "C_Drone": { + "m_bPilotTakeoverAllowed": 4260, + "m_flJammedEffectAmount": 4744, + "m_flLastTimeCargoWasAttached": 4656, + "m_hCurrentPilot": 4268, + "m_hDeliveryCargo": 4252, + "m_hMoveToThisEntity": 4248, + "m_hPotentialCargo": 4264, + "m_hRecentCargo": 4256, + "m_vecClientSideTrailPositions": 4224, + "m_vecLastKnownCargoAttachPositions": 4660, + "m_vecTagIncrements": 4560, + "m_vecTagPositions": 4272, + "m_vecThrusterLastPos": 4708, + "m_vecThrusterSmoothAccel": 4732, + "m_vecThrusterSmoothVel": 4720 + }, + "C_Dronegun": { + "m_bHasTarget": 3896, + "m_bVarInit": 3920, + "m_flLastClientThinkTime": 3924, + "m_flNextSpark": 3928, + "m_nAttachMuzzle": 3921, + "m_nBoneOverrideIndex": 3932, + "m_nPoseParamPitch": 3912, + "m_nPoseParamYaw": 3916, + "m_vecAttentionCurrent": 3900, + "m_vecAttentionTarget": 3872, + "m_vecLaserTracePos": 3936, + "m_vecTargetOffset": 3884 + }, + "C_DynamicLight": { + "m_Exponent": 3272, + "m_Flags": 3264, + "m_InnerAngle": 3276, + "m_LightStyle": 3265, + "m_OuterAngle": 3280, + "m_Radius": 3268, + "m_SpotRadius": 3284 + }, + "C_DynamicProp": { + "m_OnAnimReachedEnd": 4368, + "m_OnAnimReachedStart": 4328, + "m_bAnimateOnServer": 4420, + "m_bCreateNonSolid": 4426, + "m_bFiredStartEndOutput": 4424, + "m_bForceNpcExclude": 4425, + "m_bIsOverrideProp": 4427, + "m_bRandomizeCycle": 4421, + "m_bScriptedMovement": 4423, + "m_bStartDisabled": 4422, + "m_bUseAnimGraph": 4201, + "m_bUseHitboxesForRenderBox": 4200, + "m_glowColor": 4440, + "m_iCachedFrameCount": 4448, + "m_iInitialGlowState": 4428, + "m_iszDefaultAnim": 4408, + "m_nDefaultAnimLoopMode": 4416, + "m_nGlowRange": 4432, + "m_nGlowRangeMin": 4436, + "m_nGlowTeam": 4444, + "m_pOutputAnimBegun": 4208, + "m_pOutputAnimLoopCycleOver": 4288, + "m_pOutputAnimOver": 4248, + "m_vecCachedRenderMaxs": 4464, + "m_vecCachedRenderMins": 4452 + }, + "C_EconEntity": { + "m_AttributeManager": 4312, + "m_OriginalOwnerXuidHigh": 5508, + "m_OriginalOwnerXuidLow": 5504, + "m_bAttachmentDirty": 5568, + "m_bAttributesInitialized": 4304, + "m_bClientside": 5528, + "m_bParticleSystemsCreated": 5529, + "m_flFallbackWear": 5520, + "m_flFlexDelayTime": 4288, + "m_flFlexDelayedWeight": 4296, + "m_hOldProvidee": 5592, + "m_hViewmodelAttachment": 5560, + "m_iNumOwnerValidationRetries": 5576, + "m_iOldTeam": 5564, + "m_nFallbackPaintKit": 5512, + "m_nFallbackSeed": 5516, + "m_nFallbackStatTrak": 5524, + "m_nUnloadedModelIndex": 5572, + "m_vecAttachedModels": 5600, + "m_vecAttachedParticles": 5536 + }, + "C_EconEntity::AttachedModelData_t": { + "m_iModelDisplayFlags": 0 + }, + "C_EconItemView": { + "m_AttributeList": 528, + "m_NetworkedDynamicAttributes": 624, + "m_bInitialized": 488, + "m_bInitializedTags": 1088, + "m_bInventoryImageRgbaRequested": 96, + "m_bInventoryImageTriedCache": 97, + "m_bIsStoreItem": 489, + "m_bIsTradeItem": 490, + "m_bRestoreCustomMaterialAfterPrecache": 440, + "m_iAccountID": 472, + "m_iEntityLevel": 448, + "m_iEntityQuality": 444, + "m_iEntityQuantity": 492, + "m_iInventoryPosition": 476, + "m_iItemDefinitionIndex": 442, + "m_iItemID": 456, + "m_iItemIDHigh": 464, + "m_iItemIDLow": 468, + "m_iQualityOverride": 500, + "m_iRarityOverride": 496, + "m_nInventoryImageRgbaHeight": 132, + "m_nInventoryImageRgbaWidth": 128, + "m_szCurrentLoadCachedFileName": 136, + "m_szCustomName": 720, + "m_szCustomNameOverride": 881, + "m_unClientFlags": 504, + "m_unOverrideStyle": 505 + }, + "C_EconWearable": { + "m_bAlwaysAllow": 5628, + "m_nForceSkin": 5624 + }, + "C_EntityDissolve": { + "m_bCoreExplode": 3324, + "m_bLinkedToServerEnt": 3325, + "m_flFadeInLength": 3280, + "m_flFadeInStart": 3276, + "m_flFadeOutLength": 3296, + "m_flFadeOutModelLength": 3288, + "m_flFadeOutModelStart": 3284, + "m_flFadeOutStart": 3292, + "m_flNextSparkTime": 3300, + "m_flStartTime": 3272, + "m_nDissolveType": 3304, + "m_nMagnitude": 3320, + "m_vDissolverOrigin": 3308 + }, + "C_EntityFlame": { + "m_bCheapEffect": 1388, + "m_hEntAttached": 1344, + "m_hOldAttached": 1384 + }, + "C_EnvCombinedLightProbeVolume": { + "m_Color": 5648, + "m_LightGroups": 5728, + "m_bCustomCubemapTexture": 5664, + "m_bEnabled": 5817, + "m_bMoveable": 5736, + "m_bStartDisabled": 5752, + "m_flBrightness": 5652, + "m_flEdgeFadeDist": 5756, + "m_hCubemapTexture": 5656, + "m_hLightProbeDirectLightIndicesTexture": 5680, + "m_hLightProbeDirectLightScalarsTexture": 5688, + "m_hLightProbeDirectLightShadowsTexture": 5696, + "m_hLightProbeTexture": 5672, + "m_nEnvCubeMapArrayIndex": 5744, + "m_nHandshake": 5740, + "m_nLightProbeAtlasX": 5784, + "m_nLightProbeAtlasY": 5788, + "m_nLightProbeAtlasZ": 5792, + "m_nLightProbeSizeX": 5772, + "m_nLightProbeSizeY": 5776, + "m_nLightProbeSizeZ": 5780, + "m_nPriority": 5748, + "m_vBoxMaxs": 5716, + "m_vBoxMins": 5704, + "m_vEdgeFadeDists": 5760 + }, + "C_EnvCubemap": { + "m_LightGroups": 1624, + "m_bCopyDiffuseFromDefaultCubemap": 1672, + "m_bCustomCubemapTexture": 1592, + "m_bDefaultEnvMap": 1669, + "m_bDefaultSpecEnvMap": 1670, + "m_bEnabled": 1688, + "m_bIndoorCubeMap": 1671, + "m_bMoveable": 1632, + "m_bStartDisabled": 1668, + "m_flDiffuseScale": 1664, + "m_flEdgeFadeDist": 1648, + "m_flInfluenceRadius": 1596, + "m_hCubemapTexture": 1584, + "m_nEnvCubeMapArrayIndex": 1640, + "m_nHandshake": 1636, + "m_nPriority": 1644, + "m_vBoxProjectMaxs": 1612, + "m_vBoxProjectMins": 1600, + "m_vEdgeFadeDists": 1652 + }, + "C_EnvCubemapFog": { + "m_bActive": 1380, + "m_bFirstTime": 1417, + "m_bHasHeightFogEnd": 1416, + "m_bHeightFogEnabled": 1356, + "m_bStartDisabled": 1381, + "m_flEndDistance": 1344, + "m_flFogFalloffExponent": 1352, + "m_flFogHeightEnd": 1364, + "m_flFogHeightExponent": 1372, + "m_flFogHeightStart": 1368, + "m_flFogHeightWidth": 1360, + "m_flFogMaxOpacity": 1384, + "m_flLODBias": 1376, + "m_flStartDistance": 1348, + "m_hFogCubemapTexture": 1408, + "m_hSkyMaterial": 1392, + "m_iszSkyEntity": 1400, + "m_nCubemapSourceType": 1388 + }, + "C_EnvDecal": { + "m_bProjectOnCharacters": 3289, + "m_bProjectOnWater": 3290, + "m_bProjectOnWorld": 3288, + "m_flDepth": 3280, + "m_flDepthSortBias": 3292, + "m_flHeight": 3276, + "m_flWidth": 3272, + "m_hDecalMaterial": 3264, + "m_nRenderOrder": 3284 + }, + "C_EnvDetailController": { + "m_flFadeEndDist": 1348, + "m_flFadeStartDist": 1344 + }, + "C_EnvGasCanister": { + "m_bDoImpactEffects": 4097, + "m_bInSkybox": 4096, + "m_bLanded": 3864, + "m_bLaunchedFromWithinWorld": 4060, + "m_bSpawnedSkyboxParticles": 3968, + "m_flFlightSpeed": 4040, + "m_flFlightTime": 4036, + "m_flHorizSpeed": 4056, + "m_flInitialZSpeed": 4048, + "m_flKillImpactParticlesTime": 3972, + "m_flLaunchHeight": 4108, + "m_flLaunchTime": 4044, + "m_flSkyboxScale": 4092, + "m_flWorldEnterTime": 4076, + "m_flZAcceleration": 4052, + "m_hSkyboxCopy": 4104, + "m_nMyZoneIndex": 4100, + "m_vecDirection": 4012, + "m_vecEnterWorldPosition": 4000, + "m_vecImpactPosition": 3976, + "m_vecParabolaDirection": 4064, + "m_vecSkyboxOrigin": 4080, + "m_vecStartAngles": 4024, + "m_vecStartPosition": 3988 + }, + "C_EnvLightProbeVolume": { + "m_LightGroups": 5464, + "m_bEnabled": 5521, + "m_bMoveable": 5472, + "m_bStartDisabled": 5484, + "m_hLightProbeDirectLightIndicesTexture": 5416, + "m_hLightProbeDirectLightScalarsTexture": 5424, + "m_hLightProbeDirectLightShadowsTexture": 5432, + "m_hLightProbeTexture": 5408, + "m_nHandshake": 5476, + "m_nLightProbeAtlasX": 5500, + "m_nLightProbeAtlasY": 5504, + "m_nLightProbeAtlasZ": 5508, + "m_nLightProbeSizeX": 5488, + "m_nLightProbeSizeY": 5492, + "m_nLightProbeSizeZ": 5496, + "m_nPriority": 5480, + "m_vBoxMaxs": 5452, + "m_vBoxMins": 5440 + }, + "C_EnvParticleGlow": { + "m_ColorTint": 4732, + "m_flAlphaScale": 4720, + "m_flRadiusScale": 4724, + "m_flSelfIllumScale": 4728, + "m_hTextureOverride": 4736 + }, + "C_EnvScreenOverlay": { + "m_bIsActive": 1472, + "m_bWasActive": 1473, + "m_flCurrentOverlayTime": 1484, + "m_flOverlayTimes": 1424, + "m_flStartTime": 1464, + "m_iCachedDesiredOverlay": 1476, + "m_iCurrentOverlay": 1480, + "m_iDesiredOverlay": 1468, + "m_iszOverlayNames": 1344 + }, + "C_EnvSky": { + "m_bEnabled": 3316, + "m_bStartDisabled": 3280, + "m_flBrightnessScale": 3292, + "m_flFogMaxEnd": 3312, + "m_flFogMaxStart": 3308, + "m_flFogMinEnd": 3304, + "m_flFogMinStart": 3300, + "m_hSkyMaterial": 3264, + "m_hSkyMaterialLightingOnly": 3272, + "m_nFogType": 3296, + "m_vTintColor": 3281, + "m_vTintColorLightingOnly": 3285 + }, + "C_EnvVolumetricFogController": { + "m_bActive": 1408, + "m_bEnableIndirect": 1449, + "m_bFirstTime": 1468, + "m_bIsMaster": 1450, + "m_bStartDisabled": 1448, + "m_flAnisotropy": 1348, + "m_flDefaultAnisotropy": 1436, + "m_flDefaultDrawDistance": 1444, + "m_flDefaultScattering": 1440, + "m_flDrawDistance": 1356, + "m_flFadeInEnd": 1364, + "m_flFadeInStart": 1360, + "m_flFadeSpeed": 1352, + "m_flIndirectStrength": 1368, + "m_flScattering": 1344, + "m_flStartAnisoTime": 1412, + "m_flStartAnisotropy": 1424, + "m_flStartDrawDistance": 1432, + "m_flStartDrawDistanceTime": 1420, + "m_flStartScatterTime": 1416, + "m_flStartScattering": 1428, + "m_hFogIndirectTexture": 1456, + "m_nForceRefreshCount": 1464, + "m_nIndirectTextureDimX": 1372, + "m_nIndirectTextureDimY": 1376, + "m_nIndirectTextureDimZ": 1380, + "m_vBoxMaxs": 1396, + "m_vBoxMins": 1384 + }, + "C_EnvVolumetricFogVolume": { + "m_bActive": 1344, + "m_bStartDisabled": 1372, + "m_flFalloffExponent": 1384, + "m_flStrength": 1376, + "m_nFalloffShape": 1380, + "m_vBoxMaxs": 1360, + "m_vBoxMins": 1348 + }, + "C_EnvWind": { + "m_EnvWindShared": 1344 + }, + "C_EnvWindClientside": { + "m_EnvWindShared": 1344 + }, + "C_EnvWindShared": { + "m_CurrentSwayVector": 80, + "m_PrevSwayVector": 92, + "m_bGusting": 132, + "m_currentWindVector": 68, + "m_flAveWindSpeed": 128, + "m_flGustDuration": 36, + "m_flInitialWindSpeed": 108, + "m_flMaxGustDelay": 32, + "m_flMinGustDelay": 28, + "m_flSimTime": 120, + "m_flStartTime": 8, + "m_flSwayTime": 116, + "m_flSwitchTime": 124, + "m_flVariationTime": 112, + "m_flWindAngleVariation": 136, + "m_flWindSpeed": 64, + "m_flWindSpeedVariation": 140, + "m_iEntIndex": 144, + "m_iGustDirChange": 40, + "m_iInitialWindDir": 104, + "m_iMaxGust": 26, + "m_iMaxWind": 18, + "m_iMinGust": 24, + "m_iMinWind": 16, + "m_iWindDir": 60, + "m_iWindSeed": 12, + "m_iszGustSound": 56, + "m_location": 44, + "m_windRadius": 20 + }, + "C_EnvWindShared::WindAveEvent_t": { + "m_flAveWindSpeed": 4, + "m_flStartWindSpeed": 0 + }, + "C_EnvWindShared::WindVariationEvent_t": { + "m_flWindAngleVariation": 0, + "m_flWindSpeedVariation": 4 + }, + "C_FireSmoke": { + "m_bClipTested": 1412, + "m_bFadingOut": 1413, + "m_flChildFlameSpread": 1388, + "m_flClipPerc": 1408, + "m_flScaleEnd": 1376, + "m_flScaleRegister": 1368, + "m_flScaleStart": 1372, + "m_flScaleTimeEnd": 1384, + "m_flScaleTimeStart": 1380, + "m_nFlameFromAboveModelIndex": 1364, + "m_nFlameModelIndex": 1360, + "m_pFireOverlay": 1424, + "m_tParticleSpawn": 1416 + }, + "C_FireSprite": { + "m_bFadeFromAbove": 3580, + "m_vecMoveDir": 3568 + }, + "C_Fish": { + "m_actualAngles": 3964, + "m_actualPos": 3952, + "m_angle": 4008, + "m_angles": 3888, + "m_averageError": 4100, + "m_buoyancy": 3912, + "m_deathAngle": 3908, + "m_deathDepth": 3904, + "m_errorHistory": 4012, + "m_errorHistoryCount": 4096, + "m_errorHistoryIndex": 4092, + "m_gotUpdate": 3992, + "m_localLifeState": 3900, + "m_poolOrigin": 3976, + "m_pos": 3864, + "m_vel": 3876, + "m_waterLevel": 3988, + "m_wigglePhase": 3944, + "m_wiggleRate": 3948, + "m_wiggleTimer": 3920, + "m_x": 3996, + "m_y": 4000, + "m_z": 4004 + }, + "C_Fists": { + "m_bPlayingUninterruptableAct": 6512, + "m_nUninterruptableActivity": 6516 + }, + "C_FogController": { + "m_bUseAngles": 1448, + "m_fog": 1344, + "m_iChangedVariables": 1452 + }, + "C_FootstepControl": { + "m_destination": 3280, + "m_source": 3272 + }, + "C_FuncConveyor": { + "m_flCurrentConveyorOffset": 3328, + "m_flCurrentConveyorSpeed": 3332, + "m_flTargetSpeed": 3284, + "m_flTransitionStartSpeed": 3296, + "m_hConveyorModels": 3304, + "m_nTransitionDurationTicks": 3292, + "m_nTransitionStartTick": 3288, + "m_vecMoveDirEntitySpace": 3272 + }, + "C_FuncElectrifiedVolume": { + "m_EffectName": 3272, + "m_bState": 3280, + "m_nAmbientEffect": 3264 + }, + "C_FuncMonitor": { + "m_bDraw3DSkybox": 3293, + "m_bEnabled": 3292, + "m_bRenderShadows": 3276, + "m_bUseUniqueColorTarget": 3277, + "m_brushModelName": 3280, + "m_hTargetCamera": 3288, + "m_nResolutionEnum": 3272, + "m_targetCamera": 3264 + }, + "C_FuncTrackTrain": { + "m_flLineLength": 3272, + "m_flRadius": 3268, + "m_nLongAxis": 3264 + }, + "C_GlobalLight": { + "m_WindClothForceHandle": 2560 + }, + "C_GradientFog": { + "m_bGradientFogNeedsTextures": 1402, + "m_bHeightFogEnabled": 1360, + "m_bIsEnabled": 1401, + "m_bStartDisabled": 1400, + "m_flFadeTime": 1396, + "m_flFarZ": 1372, + "m_flFogEndDistance": 1356, + "m_flFogEndHeight": 1368, + "m_flFogFalloffExponent": 1380, + "m_flFogMaxOpacity": 1376, + "m_flFogStartDistance": 1352, + "m_flFogStartHeight": 1364, + "m_flFogStrength": 1392, + "m_flFogVerticalExponent": 1384, + "m_fogColor": 1388, + "m_hGradientFogTexture": 1344 + }, + "C_GrassBurn": { + "m_bClientPendingClear": 1348, + "m_flGrassBurnClearTime": 1344, + "m_flGrassBurnClearTimeLocal": 1352, + "m_vecGrassBurnPositions": 1360 + }, + "C_HandleTest": { + "m_Handle": 1344, + "m_bSendHandle": 1348 + }, + "C_Hostage": { + "m_bHandsHaveBeenCut": 4492, + "m_blinkTimer": 4536, + "m_chestAttachment": 4602, + "m_entitySpottedState": 4416, + "m_eyeAttachment": 4601, + "m_fLastGrabTime": 4500, + "m_fNewestAlphaThinkTime": 4616, + "m_flDeadOrRescuedTime": 4528, + "m_flDropStartTime": 4524, + "m_flGrabSuccessTime": 4520, + "m_flRescueStartTime": 4516, + "m_hHostageGrabber": 4496, + "m_isInit": 4600, + "m_isRescued": 4484, + "m_jumpedThisFrame": 4485, + "m_leader": 4440, + "m_lookAroundTimer": 4576, + "m_lookAt": 4560, + "m_nHostageState": 4488, + "m_pPredictionOwner": 4608, + "m_reuseTimer": 4448, + "m_vecGrabbedPos": 4504, + "m_vel": 4472 + }, + "C_Inferno": { + "m_BurnNormal": 4932, + "m_bFireIsBurning": 4868, + "m_bInPostEffectTime": 5712, + "m_blosCheck": 33380, + "m_drawableCount": 33376, + "m_fireCount": 5700, + "m_fireParentXDelta": 4100, + "m_fireParentYDelta": 4356, + "m_fireParentZDelta": 4612, + "m_fireXDelta": 3332, + "m_fireYDelta": 3588, + "m_fireZDelta": 3844, + "m_flLastGrassBurnThink": 33420, + "m_lastFireCount": 5716, + "m_maxBounds": 33408, + "m_maxFireHalfWidth": 33388, + "m_maxFireHeight": 33392, + "m_minBounds": 33396, + "m_nFireEffectTickBegin": 5720, + "m_nFireLifetime": 5708, + "m_nInfernoType": 5704, + "m_nfxFireDamageEffect": 3328, + "m_nlosperiod": 33384 + }, + "C_InfoMapRegion": { + "m_flRadius": 1344, + "m_pNext": 1480, + "m_szLocToken": 1348 + }, + "C_InfoVisibilityBox": { + "m_bEnabled": 1364, + "m_nMode": 1348, + "m_vBoxSize": 1352 + }, + "C_IronSightController": { + "m_angDeltaAverage": 48, + "m_angViewLast": 144, + "m_bIronSightAvailable": 16, + "m_flDotBlur": 164, + "m_flInterpolationLastUpdated": 44, + "m_flIronSightAmount": 20, + "m_flIronSightAmountBiased": 28, + "m_flIronSightAmountBiased_Interpolated": 40, + "m_flIronSightAmountGained": 24, + "m_flIronSightAmountGained_Interpolated": 36, + "m_flIronSightAmount_Interpolated": 32, + "m_flSpeedRatio": 168, + "m_vecDotCoords": 156 + }, + "C_Item": { + "m_bShouldGlow": 5624, + "m_pReticleHintTextName": 5625 + }, + "C_ItemDogtags": { + "m_KillingPlayer": 5892, + "m_OwningPlayer": 5888 + }, + "C_LightEntity": { + "m_CLightComponent": 3264 + }, + "C_LightGlow": { + "m_Glow": 3296, + "m_flGlowProxySize": 3284, + "m_flHDRColorScale": 3288, + "m_nHorizontalSize": 3264, + "m_nMaxDist": 3276, + "m_nMinDist": 3272, + "m_nOuterMaxDist": 3280, + "m_nVerticalSize": 3268 + }, + "C_LightGlowOverlay": { + "m_bModulateByDot": 245, + "m_bOneSided": 244, + "m_nMaxDist": 236, + "m_nMinDist": 232, + "m_nOuterMaxDist": 240, + "m_vecDirection": 220, + "m_vecOrigin": 208 + }, + "C_LocalTempEntity": { + "bounceFactor": 3912, + "die": 3892, + "fadeSpeed": 3908, + "flags": 3888, + "hitSound": 3916, + "m_bParticleCollision": 4000, + "m_flFrame": 3976, + "m_flFrameMax": 3896, + "m_flFrameRate": 3972, + "m_flSpriteScale": 3964, + "m_iLastCollisionFrame": 4004, + "m_nFlickerFrame": 3968, + "m_pszImpactEffect": 3984, + "m_pszParticleEffect": 3992, + "m_vLastCollisionOrigin": 4008, + "m_vecNormal": 3952, + "m_vecPrevAbsOrigin": 4032, + "m_vecTempEntAcceleration": 4044, + "m_vecTempEntAngVelocity": 3936, + "m_vecTempEntVelocity": 4020, + "priority": 3920, + "tempent_renderamt": 3948, + "tentOffset": 3924, + "x": 3900, + "y": 3904 + }, + "C_MapVetoPickController": { + "m_bDisabledHud": 3716, + "m_nAccountIDs": 1652, + "m_nCurrentPhase": 3700, + "m_nDraftType": 1360, + "m_nMapId0": 1908, + "m_nMapId1": 2164, + "m_nMapId2": 2420, + "m_nMapId3": 2676, + "m_nMapId4": 2932, + "m_nMapId5": 3188, + "m_nPhaseDurationTicks": 3708, + "m_nPhaseStartTick": 3704, + "m_nPostDataUpdateTick": 3712, + "m_nStartingSide0": 3444, + "m_nTeamWinningCoinToss": 1364, + "m_nTeamWithFirstChoice": 1368, + "m_nVoteMapIdsList": 1624 + }, + "C_Melee": { + "m_flThrowAt": 6512 + }, + "C_MolotovProjectile": { + "m_bIsIncGrenade": 4488 + }, + "C_Multimeter": { + "m_hTargetC4": 3872 + }, + "C_OmniLight": { + "m_bShowLight": 3856, + "m_flInnerAngle": 3848, + "m_flOuterAngle": 3852 + }, + "C_ParadropChopper": { + "m_bCalledByPlayer": 3900, + "m_flLastRopeTime": 3884, + "m_hCallingPlayer": 3896, + "m_nRappelABone": 3888, + "m_nRappelBBone": 3892, + "m_vecLastRopeTargetPos": 3872 + }, + "C_ParticleSystem": { + "m_bActive": 3776, + "m_bAnimateDuringGameplayPause": 3788, + "m_bFrozen": 3777, + "m_bNoFreeze": 4117, + "m_bNoRamp": 4118, + "m_bNoSave": 4116, + "m_bOldActive": 4696, + "m_bOldFrozen": 4697, + "m_bStartActive": 4119, + "m_clrTint": 4660, + "m_flFreezeTransitionDuration": 3780, + "m_flPreSimTime": 3804, + "m_flStartTime": 3800, + "m_hControlPointEnts": 3860, + "m_iEffectIndex": 3792, + "m_iServerControlPointAssignments": 3856, + "m_iszControlPointNames": 4128, + "m_iszEffectName": 4120, + "m_nDataCP": 4640, + "m_nStopType": 3784, + "m_nTintCP": 4656, + "m_szSnapshotFileName": 3264, + "m_vServerControlPoints": 3808, + "m_vecDataCPValue": 4644 + }, + "C_PathParticleRope": { + "m_ColorTint": 1396, + "m_PathNodes_Color": 1488, + "m_PathNodes_Name": 1360, + "m_PathNodes_PinEnabled": 1512, + "m_PathNodes_Position": 1416, + "m_PathNodes_RadiusScale": 1536, + "m_PathNodes_TangentIn": 1440, + "m_PathNodes_TangentOut": 1464, + "m_bStartActive": 1344, + "m_flMaxSimulationTime": 1348, + "m_flParticleSpacing": 1384, + "m_flRadius": 1392, + "m_flSlack": 1388, + "m_iEffectIndex": 1408, + "m_iszEffectName": 1352, + "m_nEffectState": 1400 + }, + "C_PhysMagnet": { + "m_aAttachedObjects": 3888, + "m_aAttachedObjectsFromServer": 3864 + }, + "C_PhysPropClientside": { + "m_bHasBreakPiecesOrCommands": 4252, + "m_fDeathTime": 4204, + "m_flDmgModBullet": 4216, + "m_flDmgModClub": 4220, + "m_flDmgModExplosive": 4224, + "m_flDmgModFire": 4228, + "m_flTouchDelta": 4200, + "m_iInteractions": 4248, + "m_impactEnergyScale": 4208, + "m_inertiaScale": 4212, + "m_iszBasePropData": 4240, + "m_iszPhysicsDamageTableName": 4232, + "m_nDamageType": 4280, + "m_vecDamageDirection": 4268, + "m_vecDamagePosition": 4256 + }, + "C_PhysPropLootCrate": { + "m_bRenderInPSPM": 4216, + "m_bRenderInTablet": 4217, + "m_iHealth": 4224, + "m_iMaxHealth": 4220 + }, + "C_PhysicsProp": { + "m_bAwake": 4200 + }, + "C_PickUpModelSlerper": { + "m_angOriginal": 3876, + "m_angRandom": 3904, + "m_flTimePickedUp": 3872, + "m_hItem": 3868, + "m_hPlayerParent": 3864, + "m_vecPosOriginal": 3888 + }, + "C_PlantedC4": { + "m_bBeingDefused": 3924, + "m_bBombDefused": 3952, + "m_bBombTicking": 3864, + "m_bC4Activated": 3940, + "m_bCannotBeDefused": 3916, + "m_bExplodeWarning": 3936, + "m_bHasExploded": 3917, + "m_bLocalBRMusicPlayed": 3941, + "m_bRadarFlash": 3972, + "m_bTenSecWarning": 3928, + "m_bTriggerWarning": 3932, + "m_entitySpottedState": 3880, + "m_fLastDefuseTime": 3980, + "m_flC4Blow": 3912, + "m_flDefuseCountDown": 3948, + "m_flDefuseLength": 3944, + "m_flNextBeep": 3908, + "m_flNextGlow": 3904, + "m_flNextRadarFlashTime": 3968, + "m_flTimerLength": 3920, + "m_hBombDefuser": 3956, + "m_hControlPanel": 3960, + "m_hDefuserMultimeter": 3964, + "m_nBombSite": 3868, + "m_nSourceSoundscapeHash": 3872, + "m_pBombDefuser": 3976, + "m_pPredictionOwner": 3984 + }, + "C_PlayerPing": { + "m_bUrgent": 1404, + "m_hPingedEntity": 1396, + "m_hPlayer": 1392, + "m_iType": 1400, + "m_szPlaceName": 1405 + }, + "C_PlayerSprayDecal": { + "m_SprayRenderHelper": 3488, + "m_flCreationTime": 3340, + "m_nEntity": 3332, + "m_nHitbox": 3336, + "m_nPlayer": 3328, + "m_nTintID": 3344, + "m_nUniqueID": 3264, + "m_nVersion": 3348, + "m_rtGcTime": 3276, + "m_ubSignature": 3349, + "m_unAccountID": 3268, + "m_unTraceID": 3272, + "m_vecEndPos": 3280, + "m_vecLeft": 3304, + "m_vecNormal": 3316, + "m_vecStart": 3292 + }, + "C_PlayerVisibility": { + "m_bIsEnabled": 1361, + "m_bStartDisabled": 1360, + "m_flFadeTime": 1356, + "m_flFogDistanceMultiplier": 1348, + "m_flFogMaxDensityMultiplier": 1352, + "m_flVisibilityStrength": 1344 + }, + "C_PointCamera": { + "m_DegreesPerSecond": 1424, + "m_FOV": 1344, + "m_FogColor": 1353, + "m_Resolution": 1348, + "m_TargetFOV": 1420, + "m_bActive": 1372, + "m_bDofEnabled": 1396, + "m_bFogEnable": 1352, + "m_bIsOn": 1428, + "m_bNoSky": 1380, + "m_bUseScreenAspectRatio": 1373, + "m_fBrightness": 1384, + "m_flAspectRatio": 1376, + "m_flDofFarBlurry": 1412, + "m_flDofFarCrisp": 1408, + "m_flDofNearBlurry": 1400, + "m_flDofNearCrisp": 1404, + "m_flDofTiltToGround": 1416, + "m_flFogEnd": 1364, + "m_flFogMaxDensity": 1368, + "m_flFogStart": 1360, + "m_flZFar": 1388, + "m_flZNear": 1392, + "m_pNext": 1432 + }, + "C_PointCameraVFOV": { + "m_flVerticalFOV": 1440 + }, + "C_PointClientUIDialog": { + "m_bStartEnabled": 3316, + "m_hActivator": 3312 + }, + "C_PointClientUIHUD": { + "m_bAllowInteractionFromAllSceneWorlds": 3752, + "m_bCheckCSSClasses": 3320, + "m_bIgnoreInput": 3712, + "m_flDPI": 3724, + "m_flDepthOffset": 3732, + "m_flHeight": 3720, + "m_flInteractDistance": 3728, + "m_flWidth": 3716, + "m_unHorizontalAlign": 3740, + "m_unOrientation": 3748, + "m_unOwnerContext": 3736, + "m_unVerticalAlign": 3744, + "m_vecCSSClasses": 3760 + }, + "C_PointClientUIWorldPanel": { + "m_anchorDeltaTransform": 3328, + "m_bAllowInteractionFromAllSceneWorlds": 3824, + "m_bCheckCSSClasses": 3322, + "m_bDisableMipGen": 3863, + "m_bExcludeFromSaveGames": 3860, + "m_bFollowPlayerAcrossTeleport": 3786, + "m_bForceRecreateNextUpdate": 3320, + "m_bGrabbable": 3861, + "m_bIgnoreInput": 3784, + "m_bLit": 3785, + "m_bMoveViewToPlayerNextThink": 3321, + "m_bNoDepth": 3857, + "m_bOnlyRenderToTexture": 3862, + "m_bOpaque": 3856, + "m_bRenderBackface": 3858, + "m_bUseOffScreenIndicator": 3859, + "m_flDPI": 3796, + "m_flDepthOffset": 3804, + "m_flHeight": 3792, + "m_flInteractDistance": 3800, + "m_flWidth": 3788, + "m_nExplicitImageLayout": 3864, + "m_pOffScreenIndicator": 3744, + "m_unHorizontalAlign": 3812, + "m_unOrientation": 3820, + "m_unOwnerContext": 3808, + "m_unVerticalAlign": 3816, + "m_vecCSSClasses": 3832 + }, + "C_PointClientUIWorldTextPanel": { + "m_messageText": 3872 + }, + "C_PointCommentaryNode": { + "m_bActive": 3872, + "m_bListenedTo": 3920, + "m_bRestartAfterRestore": 3940, + "m_bWasActive": 3873, + "m_flEndTime": 3876, + "m_flStartTime": 3880, + "m_flStartTimeInCommentary": 3884, + "m_hViewPosition": 3936, + "m_iNodeNumber": 3912, + "m_iNodeNumberMax": 3916, + "m_iszCommentaryFile": 3888, + "m_iszSpeakers": 3904, + "m_iszTitle": 3896 + }, + "C_PointValueRemapper": { + "m_bDisabled": 1344, + "m_bDisabledOld": 1345, + "m_bEngaged": 1440, + "m_bFirstUpdate": 1441, + "m_bRequiresUseKey": 1372, + "m_bUpdateOnClient": 1346, + "m_flCurrentMomentum": 1424, + "m_flDisengageDistance": 1364, + "m_flEngageDistance": 1368, + "m_flInputOffset": 1436, + "m_flMaximumChangePerSecond": 1360, + "m_flMomentumModifier": 1416, + "m_flPreviousUpdateTickTime": 1448, + "m_flPreviousValue": 1444, + "m_flRatchetOffset": 1432, + "m_flSnapValue": 1420, + "m_hOutputEntities": 1384, + "m_hRemapLineEnd": 1356, + "m_hRemapLineStart": 1352, + "m_nHapticsType": 1408, + "m_nInputType": 1348, + "m_nMomentumType": 1412, + "m_nOutputType": 1376, + "m_nRatchetType": 1428, + "m_vecPreviousTestPoint": 1452 + }, + "C_PointWorldText": { + "m_Color": 3880, + "m_FontName": 3800, + "m_bEnabled": 3864, + "m_bForceRecreateNextUpdate": 3272, + "m_bFullbright": 3865, + "m_flDepthOffset": 3876, + "m_flFontSize": 3872, + "m_flWorldUnitsPerPx": 3868, + "m_messageText": 3288, + "m_nJustifyHorizontal": 3884, + "m_nJustifyVertical": 3888, + "m_nReorientMode": 3892 + }, + "C_PostProcessingVolume": { + "m_bExposureControl": 3333, + "m_bMaster": 3332, + "m_flExposureCompensation": 3316, + "m_flExposureFadeSpeedDown": 3324, + "m_flExposureFadeSpeedUp": 3320, + "m_flFadeDuration": 3296, + "m_flMaxExposure": 3312, + "m_flMaxLogExposure": 3304, + "m_flMinExposure": 3308, + "m_flMinLogExposure": 3300, + "m_flRate": 3336, + "m_flTonemapEVSmoothingRange": 3328, + "m_flTonemapMinAvgLum": 3348, + "m_flTonemapPercentBrightPixels": 3344, + "m_flTonemapPercentTarget": 3340, + "m_hPostSettings": 3288 + }, + "C_Precipitation": { + "m_bActiveParticlePrecipEmitter": 3344, + "m_bHasSimulatedSinceLastSceneObjectUpdate": 3346, + "m_bParticlePrecipInitialized": 3345, + "m_flDensity": 3272, + "m_flParticleInnerDist": 3288, + "m_nAvailableSheetSequencesMaxIndex": 3348, + "m_pParticleDef": 3296, + "m_tParticlePrecipTraceTimer": 3336 + }, + "C_PredictedViewModel": { + "m_LagAnglesHistory": 3968, + "m_vPredictedOffset": 3992 + }, + "C_PropCounter": { + "m_flDisplayValue": 3864, + "m_flDisplayValueLocal": 3868, + "m_flPreviousValue": 3876, + "m_flTimeOfLastValueChange": 3872 + }, + "C_RagdollManager": { + "m_iCurrentMaxRagdollCount": 1344 + }, + "C_RagdollProp": { + "m_flBlendWeight": 3920, + "m_flBlendWeightCurrent": 3932, + "m_hRagdollSource": 3924, + "m_iEyeAttachment": 3928, + "m_parentPhysicsBoneIndices": 3936, + "m_ragAngles": 3896, + "m_ragPos": 3872, + "m_worldSpaceBoneComputationOrder": 3960 + }, + "C_RagdollPropAttached": { + "m_attachmentPointBoneSpace": 3992, + "m_attachmentPointRagdollSpace": 4004, + "m_bHasParent": 4032, + "m_boneIndexAttached": 3984, + "m_parentTime": 4028, + "m_ragdollAttachedObjectIndex": 3988, + "m_vecOffset": 4016 + }, + "C_RectLight": { + "m_bShowLight": 3848 + }, + "C_RetakeGameRules": { + "m_bBlockersPresent": 252, + "m_bRoundInProgress": 253, + "m_iBombSite": 260, + "m_iFirstSecondHalfRound": 256, + "m_nMatchSeed": 248 + }, + "C_RopeKeyframe": { + "m_LightValues": 3968, + "m_LinksTouchingSomething": 3272, + "m_PhysicsDelegate": 4120, + "m_RopeFlags": 3328, + "m_RopeLength": 4104, + "m_Slack": 4106, + "m_Subdiv": 4102, + "m_TextureHeight": 4144, + "m_TextureScale": 4108, + "m_Width": 4116, + "m_bApplyWind": 3280, + "m_bConstrainBetweenEndpoints": 4256, + "m_bEndPointAttachmentAnglesDirty": 0, + "m_bEndPointAttachmentPositionsDirty": 0, + "m_bNewDataThisFrame": 0, + "m_bPhysicsInitted": 0, + "m_bPrevEndPointPos": 3292, + "m_fLockedPoints": 4112, + "m_fPrevLockedPoints": 3284, + "m_flCurScroll": 3320, + "m_flCurrentGustLifetime": 4176, + "m_flCurrentGustTimer": 4172, + "m_flScrollSpeed": 3324, + "m_flTimeToNextGust": 4180, + "m_hEndPoint": 4096, + "m_hMaterial": 4136, + "m_hStartPoint": 4092, + "m_iEndAttachment": 4101, + "m_iForcePointMoveCounter": 3288, + "m_iRopeMaterialModelIndex": 3336, + "m_iStartAttachment": 4100, + "m_nChangeCount": 4113, + "m_nLinksTouchingSomething": 3276, + "m_nSegments": 4088, + "m_vCachedEndPointAttachmentAngle": 4232, + "m_vCachedEndPointAttachmentPos": 4208, + "m_vColorMod": 4196, + "m_vPrevEndPointPos": 3296, + "m_vWindDir": 4184, + "m_vecImpulse": 4148, + "m_vecPreviousImpulse": 4160 + }, + "C_RopeKeyframe::CPhysicsDelegate": { + "m_pKeyframe": 8 + }, + "C_SceneEntity": { + "m_QueuedEvents": 1408, + "m_bAutogenerated": 1355, + "m_bClientOnly": 1362, + "m_bIsPlayingBack": 1352, + "m_bMultiplayer": 1354, + "m_bPaused": 1353, + "m_bWasPlaying": 1392, + "m_flCurrentTime": 1432, + "m_flForceClientTime": 1356, + "m_hActorList": 1368, + "m_hOwner": 1364, + "m_nSceneStringIndex": 1360 + }, + "C_SceneEntity::QueuedEvents_t": { + "starttime": 0 + }, + "C_ShatterGlassShardPhysics": { + "m_ShardDesc": 4216 + }, + "C_SkyCamera": { + "m_bUseAngles": 1492, + "m_pNext": 1496, + "m_skyboxData": 1344, + "m_skyboxSlotToken": 1488 + }, + "C_SmokeGrenadeProjectile": { + "m_VoxelFrameData": 4536, + "m_bDidSmokeEffect": 4500, + "m_bSmokeEffectSpawned": 4561, + "m_bSmokeVolumeDataReceived": 4560, + "m_nRandomSeed": 4504, + "m_nSmokeEffectTickBegin": 4496, + "m_vSmokeColor": 4508, + "m_vSmokeDetonationPos": 4520 + }, + "C_SoundAreaEntityBase": { + "m_bDisabled": 1344, + "m_bWasEnabled": 1352, + "m_iszSoundAreaType": 1360, + "m_vPos": 1368 + }, + "C_SoundAreaEntityOrientedBox": { + "m_vMax": 1396, + "m_vMin": 1384 + }, + "C_SoundAreaEntitySphere": { + "m_flRadius": 1384 + }, + "C_SoundOpvarSetPointBase": { + "m_bUseAutoCompare": 1372, + "m_iOpvarIndex": 1368, + "m_iszOperatorName": 1352, + "m_iszOpvarName": 1360, + "m_iszStackName": 1344 + }, + "C_SpotlightEnd": { + "m_Radius": 3268, + "m_flLightScale": 3264 + }, + "C_Sprite": { + "m_bWorldSpaceScale": 3344, + "m_flBrightnessDuration": 3332, + "m_flBrightnessTimeStart": 3384, + "m_flDestScale": 3368, + "m_flDieTime": 3312, + "m_flFrame": 3308, + "m_flGlowProxySize": 3348, + "m_flHDRColorScale": 3352, + "m_flLastTime": 3356, + "m_flMaxFrame": 3360, + "m_flScaleDuration": 3340, + "m_flScaleTimeStart": 3372, + "m_flSpriteFramerate": 3304, + "m_flSpriteScale": 3336, + "m_flStartScale": 3364, + "m_hAttachedToEntity": 3296, + "m_hOldSpriteMaterial": 3392, + "m_hSpriteMaterial": 3288, + "m_nAttachment": 3300, + "m_nBrightness": 3328, + "m_nDestBrightness": 3380, + "m_nSpriteHeight": 3564, + "m_nSpriteWidth": 3560, + "m_nStartBrightness": 3376 + }, + "C_Sun": { + "m_bOn": 3324, + "m_bmaxColor": 3325, + "m_clrOverlay": 3320, + "m_fdistNormalize": 3272, + "m_flAlphaHaze": 3344, + "m_flAlphaHdr": 3352, + "m_flAlphaScale": 3348, + "m_flFarZScale": 3356, + "m_flHDRColorScale": 3340, + "m_flHazeScale": 3332, + "m_flRotation": 3336, + "m_flSize": 3328, + "m_fxSSSunFlareEffectIndex": 3264, + "m_fxSunFlareEffectIndex": 3268, + "m_iszEffectName": 3304, + "m_iszSSEffectName": 3312, + "m_vDirection": 3288, + "m_vSunPos": 3276 + }, + "C_SunGlowOverlay": { + "m_bModulateByDot": 208 + }, + "C_SurvivalGameRules": { + "m_SpawnTileState": 288, + "m_SurvivalGameRuleDecisionTypes": 1568, + "m_SurvivalGameRuleDecisionValues": 1632, + "m_flLastThinkTime": 1700, + "m_flSpawnSelectionTimeEndCurrentStage": 516, + "m_flSpawnSelectionTimeEndLastStage": 520, + "m_flSpawnSelectionTimeStartCurrentStage": 512, + "m_flSurvivalStartTime": 1696, + "m_flTabletHexOriginX": 528, + "m_flTabletHexOriginY": 532, + "m_flTabletHexSize": 536, + "m_iPlayerSpawnHexIndices": 32, + "m_roundData_playerPositions": 1056, + "m_roundData_playerTeams": 1312, + "m_roundData_playerXuids": 544, + "m_spawnStage": 524, + "m_vecPlayAreaMaxs": 20, + "m_vecPlayAreaMins": 8 + }, + "C_Tablet": { + "m_WorkingColor": 8356, + "m_angLastCameraAng": 8372, + "m_bTabletReceptionIsBlocked": 6712, + "m_buildingMaterial": 8336, + "m_flBootTime": 6720, + "m_flLastClosePoseParamVal": 8396, + "m_flNoiseFadeAlpha": 8352, + "m_flPrevScanProgress": 8388, + "m_flScanProgress": 6716, + "m_flShowMapTime": 6724, + "m_flUpgradeExpirationTime": 6520, + "m_hZoneOverlayMaterial": 8344, + "m_nContractKillGridHighResIndex": 6708, + "m_nContractKillGridIndex": 6704, + "m_nDrawElementCount": 8384, + "m_nLastPurchaseIndex": 6808, + "m_nRenderTargetRes": 8392, + "m_radarMaterial": 8328, + "m_skinState": 6740, + "m_vecLastCameraPos": 8360, + "m_vecLastHexPlayerOccupancyChange": 7268, + "m_vecLocalHexFlags": 6536, + "m_vecLocalHexFlagsClientCopy": 7100, + "m_vecNearestMetalCratePos": 6728, + "m_vecNotificationIds": 6744, + "m_vecNotificationTimestamps": 6776, + "m_vecPlayerPositionHistory": 6812 + }, + "C_Team": { + "m_aPlayerControllers": 1344, + "m_aPlayers": 1368, + "m_iScore": 1392, + "m_szTeamname": 1396 + }, + "C_TeamRoundTimer": { + "m_bAutoCountdown": 1372, + "m_bFire10SecRemain": 1400, + "m_bFire1MinRemain": 1398, + "m_bFire1SecRemain": 1405, + "m_bFire2MinRemain": 1397, + "m_bFire2SecRemain": 1404, + "m_bFire30SecRemain": 1399, + "m_bFire3MinRemain": 1396, + "m_bFire3SecRemain": 1403, + "m_bFire4MinRemain": 1395, + "m_bFire4SecRemain": 1402, + "m_bFire5MinRemain": 1394, + "m_bFire5SecRemain": 1401, + "m_bFireFinished": 1393, + "m_bInCaptureWatchState": 1385, + "m_bIsDisabled": 1356, + "m_bShowInHUD": 1357, + "m_bStartPaused": 1384, + "m_bStopWatchTimer": 1392, + "m_bTimerPaused": 1344, + "m_flTimeRemaining": 1348, + "m_flTimerEndTime": 1352, + "m_flTotalTime": 1388, + "m_nOldTimerLength": 1408, + "m_nOldTimerState": 1412, + "m_nSetupTimeLength": 1376, + "m_nState": 1380, + "m_nTimerInitialLength": 1364, + "m_nTimerLength": 1360, + "m_nTimerMaxLength": 1368 + }, + "C_TextureBasedAnimatable": { + "m_bLoop": 3264, + "m_flFPS": 3268, + "m_flStartFrame": 3316, + "m_flStartTime": 3312, + "m_hPositionKeys": 3272, + "m_hRotationKeys": 3280, + "m_vAnimationBoundsMax": 3300, + "m_vAnimationBoundsMin": 3288 + }, + "C_TonemapController2": { + "m_flAutoExposureMax": 1348, + "m_flAutoExposureMin": 1344, + "m_flExposureAdaptationSpeedDown": 1368, + "m_flExposureAdaptationSpeedUp": 1364, + "m_flTonemapEVSmoothingRange": 1372, + "m_flTonemapMinAvgLum": 1360, + "m_flTonemapPercentBrightPixels": 1356, + "m_flTonemapPercentTarget": 1352 + }, + "C_TriggerBuoyancy": { + "m_BuoyancyHelper": 3272, + "m_flFluidDensity": 3312 + }, + "C_TripWireFireProjectile": { + "m_bTripWireEndPositionsUsed": 4476, + "m_flAttachTime": 4352, + "m_nTripWireCenterIndex0": 4496, + "m_nTripWireEndIndex0": 4492, + "m_nTripWireStartIndex0": 4488, + "m_vecTripWireEndPositions": 4356 + }, + "C_ViewmodelWeapon": { + "m_worldModel": 3864 + }, + "C_VoteController": { + "m_bIsYesNoVote": 1394, + "m_bTypeDirty": 1393, + "m_bVotesDirty": 1392, + "m_iActiveIssueIndex": 1360, + "m_iOnlyTeamToVote": 1364, + "m_nPotentialVotes": 1388, + "m_nVoteOptionCount": 1368 + }, + "C_WeaponBaseItem": { + "m_SequenceCompleteTimer": 6512, + "m_bRedraw": 6536 + }, + "C_WeaponCSBase": { + "m_IronSightController": 6272, + "m_OnPlayerPickup": 5840, + "m_bBurstMode": 5928, + "m_bFireOnEmpty": 5836, + "m_bGlowForPing": 6104, + "m_bInReload": 5936, + "m_bIsHauledBack": 5944, + "m_bOldFirstPersonSpectatedState": 6081, + "m_bPlayerFireEventIsPrimary": 5764, + "m_bReloadVisuallyComplete": 5937, + "m_bReloadsWithClips": 5828, + "m_bSilencerOn": 5945, + "m_bUIWeapon": 6105, + "m_bVisualsDataSet": 6080, + "m_bWasOwnedByCT": 6164, + "m_bWasOwnedByTerrorist": 6165, + "m_donated": 6156, + "m_fAccuracyPenalty": 5904, + "m_fAccuracySmoothedForZoom": 5912, + "m_fLastShotTime": 6160, + "m_fScopeZoomEndTime": 5916, + "m_flCrosshairDistance": 5800, + "m_flDroppedAtTime": 5940, + "m_flFireSequenceStartTime": 5752, + "m_flGunAccuracyPosition": 5820, + "m_flLastAccuracyUpdateTime": 5908, + "m_flLastClientFireBulletTime": 6180, + "m_flLastLOSTraceFailureTime": 6464, + "m_flNextAttackRenderTimeOffset": 5956, + "m_flPostponeFireReadyTime": 5932, + "m_flRecoilIndex": 5924, + "m_flTimeSilencerSwitchComplete": 5948, + "m_flTimeWeaponIdle": 5832, + "m_flTurningInaccuracy": 5900, + "m_flTurningInaccuracyDelta": 5884, + "m_gunHeat": 6168, + "m_hOurPing": 6084, + "m_hPrevOwner": 6120, + "m_iAlpha": 5808, + "m_iAmmoLastCheck": 5804, + "m_iCrosshairTextureID": 5816, + "m_iIronSightMode": 6448, + "m_iNumEmptyAttacks": 6468, + "m_iOriginalTeamNumber": 5952, + "m_iRecoilIndex": 5920, + "m_iScopeTextureID": 5812, + "m_lastSmokeTime": 6176, + "m_nDropTick": 6124, + "m_nFireSequenceStartTimeAck": 5760, + "m_nFireSequenceStartTimeChange": 5756, + "m_nOurPingIndex": 6088, + "m_nViewModelIndex": 5824, + "m_seqFirePrimary": 5772, + "m_seqFireSecondary": 5776, + "m_seqIdle": 5768, + "m_smokeAttachments": 6172, + "m_vecOurPingPos": 6092, + "m_vecTurningInaccuracyEyeDirLast": 5888, + "m_weaponMode": 5880 + }, + "C_WeaponCSBaseGun": { + "m_bNeedsBoltAction": 6541, + "m_iBurstShotsRemaining": 6516, + "m_iSilencerBodygroup": 6520, + "m_inPrecache": 6540, + "m_silencedModelIndex": 6536, + "m_zoomLevel": 6512 + }, + "C_WeaponShield": { + "m_flDisplayHealth": 6544 + }, + "C_WeaponTaser": { + "m_fFireTime": 6544 + }, + "C_WeaponZoneRepulsor": { + "m_flLastTimeNotIdle": 6548, + "m_flPitchLocal": 6544 + }, + "C_fogplayerparams_t": { + "m_NewColor": 40, + "m_OldColor": 16, + "m_flNewEnd": 48, + "m_flNewFarZ": 60, + "m_flNewHDRColorScale": 56, + "m_flNewMaxDensity": 52, + "m_flNewStart": 44, + "m_flOldEnd": 24, + "m_flOldFarZ": 36, + "m_flOldHDRColorScale": 32, + "m_flOldMaxDensity": 28, + "m_flOldStart": 20, + "m_flTransitionTime": 12, + "m_hCtrl": 8 + }, + "CompMatMutatorCondition_t": { + "m_bPassWhenTrue": 32, + "m_nMutatorCondition": 0, + "m_strMutatorConditionContainerName": 8, + "m_strMutatorConditionContainerVarName": 16, + "m_strMutatorConditionContainerVarValue": 24 + }, + "CompMatPropertyMutator_t": { + "m_bCaptureInRenderDoc": 750, + "m_bEnabled": 0, + "m_bIsScratchTarget": 748, + "m_bSplatDebugInfo": 749, + "m_colDrawText_Color": 832, + "m_nMutatorCommandType": 4, + "m_nResolution": 744, + "m_nSetValue_Value": 104, + "m_strCopyKeysWithSuffix_FindSuffix": 88, + "m_strCopyKeysWithSuffix_InputContainerSrc": 80, + "m_strCopyKeysWithSuffix_ReplaceSuffix": 96, + "m_strCopyMatchingKeys_InputContainerSrc": 72, + "m_strCopyProperty_InputContainerProperty": 24, + "m_strCopyProperty_InputContainerSrc": 16, + "m_strCopyProperty_TargetProperty": 32, + "m_strDrawText_Font": 840, + "m_strDrawText_InputContainerProperty": 816, + "m_strDrawText_InputContainerSrc": 808, + "m_strGenerateTexture_InitialContainer": 736, + "m_strGenerateTexture_TargetParam": 728, + "m_strInitWith_Container": 8, + "m_strPopInputQueue_Container": 800, + "m_strRandomRollInputVars_SeedInputVar": 40, + "m_vecConditionalMutators": 776, + "m_vecConditions": 848, + "m_vecDrawText_Position": 824, + "m_vecRandomRollInputVars_InputVarsToRoll": 48, + "m_vecTexGenInstructions": 752 + }, + "CompositeMaterialAssemblyProcedure_t": { + "m_vecCompMatIncludes": 0, + "m_vecCompositeInputContainers": 48, + "m_vecMatchFilters": 24, + "m_vecPropertyMutators": 72 + }, + "CompositeMaterialEditorPoint_t": { + "m_ChildModelName": 256, + "m_KVModelStateChoices": 232, + "m_ModelName": 0, + "m_bEnableChildModel": 248, + "m_flCycle": 228, + "m_nSequenceIndex": 224, + "m_vecCompositeMaterialAssemblyProcedures": 480, + "m_vecCompositeMaterials": 504 + }, + "CompositeMaterialInputContainer_t": { + "m_bEnabled": 0, + "m_bExposeExternally": 280, + "m_nCompositeMaterialInputContainerSourceType": 4, + "m_strAlias": 240, + "m_strAttrName": 232, + "m_strAttrNameForVar": 272, + "m_strSpecificContainerMaterial": 8, + "m_vecLooseVariables": 248 + }, + "CompositeMaterialInputLooseVariable_t": { + "m_bExposeExternally": 8, + "m_bExposedVariableIsFixedRange": 32, + "m_bHasFloatBounds": 80, + "m_bValueBoolean": 60, + "m_cValueColor4": 132, + "m_flValueFloatW": 120, + "m_flValueFloatW_Max": 128, + "m_flValueFloatW_Min": 124, + "m_flValueFloatX": 84, + "m_flValueFloatX_Max": 92, + "m_flValueFloatX_Min": 88, + "m_flValueFloatY": 96, + "m_flValueFloatY_Max": 104, + "m_flValueFloatY_Min": 100, + "m_flValueFloatZ": 108, + "m_flValueFloatZ_Max": 116, + "m_flValueFloatZ_Min": 112, + "m_nTextureType": 608, + "m_nValueIntW": 76, + "m_nValueIntX": 64, + "m_nValueIntY": 68, + "m_nValueIntZ": 72, + "m_nValueSystemVar": 136, + "m_nVariableType": 56, + "m_strExposedFriendlyGroupName": 24, + "m_strExposedFriendlyName": 16, + "m_strExposedHiddenWhenTrue": 48, + "m_strExposedVisibleWhenTrue": 40, + "m_strName": 0, + "m_strResourceMaterial": 144, + "m_strString": 616, + "m_strTextureCompilationVtexTemplate": 600, + "m_strTextureContentAssetPath": 368, + "m_strTextureRuntimeResourcePath": 376 + }, + "CompositeMaterialMatchFilter_t": { + "m_bPassWhenTrue": 24, + "m_nCompositeMaterialMatchFilterType": 0, + "m_strMatchFilter": 8, + "m_strMatchValue": 16 + }, + "CompositeMaterial_t": { + "m_FinalKVs": 40, + "m_PreGenerationKVs": 24, + "m_TargetKVs": 8, + "m_vecGeneratedTextures": 64 + }, + "CountdownTimer": { + "m_duration": 8, + "m_nWorldGroupId": 20, + "m_timescale": 16, + "m_timestamp": 12 + }, + "EngineCountdownTimer": { + "m_duration": 8, + "m_timescale": 16, + "m_timestamp": 12 + }, + "EntityRenderAttribute_t": { + "m_ID": 48, + "m_Values": 52 + }, + "EntitySpottedState_t": { + "m_bSpotted": 8, + "m_bSpottedByMask": 12 + }, + "GeneratedTextureHandle_t": { + "m_strBitmapName": 0 + }, + "IntervalTimer": { + "m_nWorldGroupId": 12, + "m_timestamp": 8 + }, + "PhysicsRagdollPose_t": { + "__m_pChainEntity": 8, + "m_Transforms": 48, + "m_bDirty": 104, + "m_hOwner": 72 + }, + "SellbackPurchaseEntry_t": { + "m_bPrevHelmet": 60, + "m_hItem": 64, + "m_nCost": 52, + "m_nPrevArmor": 56, + "m_unDefIdx": 48 + }, + "TimedEvent": { + "m_TimeBetweenEvents": 0, + "m_fNextEvent": 4 + }, + "VPhysicsCollisionAttribute_t": { + "m_nCollisionFunctionMask": 43, + "m_nCollisionGroup": 42, + "m_nEntityId": 32, + "m_nHierarchyId": 40, + "m_nInteractsAs": 8, + "m_nInteractsExclude": 24, + "m_nInteractsWith": 16, + "m_nOwnerId": 36 + }, + "ViewAngleServerChange_t": { + "nIndex": 64, + "nType": 48, + "qAngle": 52 + }, + "WeaponPurchaseCount_t": { + "m_nCount": 50, + "m_nItemDefIndex": 48 + }, + "WeaponPurchaseTracker_t": { + "m_weaponPurchases": 8 + }, + "audioparams_t": { + "localBits": 108, + "localSound": 8, + "soundEventHash": 116, + "soundscapeEntityListIndex": 112, + "soundscapeIndex": 104 + }, + "fogparams_t": { + "HDRColorScale": 56, + "blend": 101, + "blendtobackground": 88, + "colorPrimary": 20, + "colorPrimaryLerpTo": 28, + "colorSecondary": 24, + "colorSecondaryLerpTo": 32, + "dirPrimary": 8, + "duration": 84, + "enable": 100, + "end": 40, + "endLerpTo": 72, + "exponent": 52, + "farz": 44, + "lerptime": 80, + "locallightscale": 96, + "m_bNoReflectionFog": 102, + "m_bPadding": 103, + "maxdensity": 48, + "maxdensityLerpTo": 76, + "scattering": 92, + "skyboxFogFactor": 60, + "skyboxFogFactorLerpTo": 64, + "start": 36, + "startLerpTo": 68 + }, + "shard_model_desc_t": { + "m_LightGroup": 92, + "m_ShatterPanelMode": 25, + "m_SurfacePropStringToken": 88, + "m_bHasParent": 84, + "m_bParentFrozen": 85, + "m_flGlassHalfThickness": 80, + "m_hMaterial": 16, + "m_nModelID": 8, + "m_solid": 24, + "m_vecPanelSize": 28, + "m_vecPanelVertices": 56, + "m_vecStressPositionA": 36, + "m_vecStressPositionB": 44 + }, + "sky3dparams_t": { + "bClip3DSkyBoxNearToWorldFar": 24, + "flClip3DSkyBoxNearToWorldFarOffset": 28, + "fog": 32, + "m_nWorldGroupID": 136, + "origin": 12, + "scale": 8 + } +} \ No newline at end of file diff --git a/generated/engine2.dll.hpp b/generated/engine2.dll.hpp new file mode 100644 index 0000000..8136c8c --- /dev/null +++ b/generated/engine2.dll.hpp @@ -0,0 +1,243 @@ +#pragma once + +#include + +namespace EngineLoopState_t { + constexpr std::ptrdiff_t m_nPlatWindowWidth = 0x18; + constexpr std::ptrdiff_t m_nPlatWindowHeight = 0x1c; + constexpr std::ptrdiff_t m_nRenderWidth = 0x20; + constexpr std::ptrdiff_t m_nRenderHeight = 0x24; +} + +namespace EventModInitialized_t { +} + +namespace EventFrameBoundary_t { + constexpr std::ptrdiff_t m_flFrameTime = 0x0; +} + +namespace EventProfileStorageAvailable_t { + constexpr std::ptrdiff_t m_nSplitScreenSlot = 0x0; +} + +namespace EventSplitScreenStateChanged_t { +} + +namespace EventSetTime_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_nClientOutputFrames = 0x28; + constexpr std::ptrdiff_t m_flRealTime = 0x30; + constexpr std::ptrdiff_t m_flRenderTime = 0x38; + constexpr std::ptrdiff_t m_flRenderFrameTime = 0x40; + constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x48; + constexpr std::ptrdiff_t m_flRenderFrameTimeUnscaled = 0x50; + constexpr std::ptrdiff_t m_flTickRemainder = 0x58; +} + +namespace EventClientPollInput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRealTime = 0x28; +} + +namespace EventClientProcessInput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRealTime = 0x28; +} + +namespace EventClientProcessGameInput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRealTime = 0x28; + constexpr std::ptrdiff_t m_flFrameTime = 0x2c; +} + +namespace EventClientPreOutput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRenderTime = 0x28; + constexpr std::ptrdiff_t m_flRenderFrameTime = 0x30; + constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x38; + constexpr std::ptrdiff_t m_flRealTime = 0x40; + constexpr std::ptrdiff_t m_bRenderOnly = 0x44; +} + +namespace EventClientSceneSystemThreadStateChange_t { + constexpr std::ptrdiff_t m_bThreadsActive = 0x0; +} + +namespace EventClientOutput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRenderTime = 0x28; + constexpr std::ptrdiff_t m_flRealTime = 0x2c; + constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x30; + constexpr std::ptrdiff_t m_bRenderOnly = 0x34; +} + +namespace EventClientPostOutput_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRenderTime = 0x28; + constexpr std::ptrdiff_t m_flRenderFrameTime = 0x30; + constexpr std::ptrdiff_t m_flRenderFrameTimeUnbounded = 0x34; + constexpr std::ptrdiff_t m_bRenderOnly = 0x38; +} + +namespace EventClientFrameSimulate_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRealTime = 0x28; + constexpr std::ptrdiff_t m_flFrameTime = 0x2c; +} + +namespace EventSimpleLoopFrameUpdate_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_flRealTime = 0x28; + constexpr std::ptrdiff_t m_flFrameTime = 0x2c; +} + +namespace EventSimulate_t { + constexpr std::ptrdiff_t m_LoopState = 0x0; + constexpr std::ptrdiff_t m_bFirstTick = 0x28; + constexpr std::ptrdiff_t m_bLastTick = 0x29; +} + +namespace EventAdvanceTick_t { + constexpr std::ptrdiff_t m_nCurrentTick = 0x30; + constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; + constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; + constexpr std::ptrdiff_t m_nTotalTicks = 0x3c; +} + +namespace EventPostAdvanceTick_t { + constexpr std::ptrdiff_t m_nCurrentTick = 0x30; + constexpr std::ptrdiff_t m_nCurrentTickThisFrame = 0x34; + constexpr std::ptrdiff_t m_nTotalTicksThisFrame = 0x38; + constexpr std::ptrdiff_t m_nTotalTicks = 0x3c; +} + +namespace EventServerAdvanceTick_t { +} + +namespace EventServerPostAdvanceTick_t { +} + +namespace EventClientAdvanceTick_t { +} + +namespace EventClientPostAdvanceTick_t { +} + +namespace EventClientSendInput_t { + constexpr std::ptrdiff_t m_bFinalClientCommandTick = 0x0; + constexpr std::ptrdiff_t m_nAdditionalClientCommandsToCreate = 0x4; +} + +namespace EventClientPredictionPostNetupdate_t { +} + +namespace EventClientPollNetworking_t { + constexpr std::ptrdiff_t m_nTickCount = 0x0; +} + +namespace EventClientProcessNetworking_t { +} + +namespace EventClientPreSimulate_t { +} + +namespace EventClientSimulate_t { +} + +namespace EventServerPollNetworking_t { +} + +namespace EventServerProcessNetworking_t { +} + +namespace EventServerSimulate_t { +} + +namespace EventServerPostSimulate_t { +} + +namespace EventClientPostSimulate_t { +} + +namespace EventClientPauseSimulate_t { +} + +namespace EventPostDataUpdate_t { + constexpr std::ptrdiff_t m_nCount = 0x0; +} + +namespace EventPreDataUpdate_t { + constexpr std::ptrdiff_t m_nCount = 0x0; +} + +namespace EventAppShutdown_t { + constexpr std::ptrdiff_t m_nDummy0 = 0x0; +} + +namespace IHandleEntity { +} + +namespace CNetworkVarChainer { + constexpr std::ptrdiff_t m_PathIndex = 0x20; +} + +namespace CVariantDefaultAllocator { +} + +namespace EntOutput_t { +} + +namespace EntComponentInfo_t { + constexpr std::ptrdiff_t m_pName = 0x0; + constexpr std::ptrdiff_t m_pCPPClassname = 0x8; + constexpr std::ptrdiff_t m_pNetworkDataReferencedDescription = 0x10; + constexpr std::ptrdiff_t m_pNetworkDataReferencedPtrPropDescription = 0x18; + constexpr std::ptrdiff_t m_nRuntimeIndex = 0x20; + constexpr std::ptrdiff_t m_nFlags = 0x24; + constexpr std::ptrdiff_t m_pBaseClassComponentHelper = 0x60; +} + +namespace CEntityComponent { +} + +namespace EntInput_t { +} + +namespace CEntityComponentHelper { + constexpr std::ptrdiff_t m_flags = 0x8; + constexpr std::ptrdiff_t m_pInfo = 0x10; + constexpr std::ptrdiff_t m_nPriority = 0x18; + constexpr std::ptrdiff_t m_pNext = 0x20; +} + +namespace CEntityIdentity { + constexpr std::ptrdiff_t m_nameStringableIndex = 0x14; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_designerName = 0x20; + constexpr std::ptrdiff_t m_flags = 0x30; + constexpr std::ptrdiff_t m_worldGroupId = 0x38; + constexpr std::ptrdiff_t m_fDataObjectTypes = 0x3c; + constexpr std::ptrdiff_t m_PathIndex = 0x40; + constexpr std::ptrdiff_t m_pPrev = 0x58; + constexpr std::ptrdiff_t m_pNext = 0x60; + constexpr std::ptrdiff_t m_pPrevByClass = 0x68; + constexpr std::ptrdiff_t m_pNextByClass = 0x70; +} + +namespace CEmptyEntityInstance { +} + +namespace CEntityInstance { + constexpr std::ptrdiff_t m_iszPrivateVScripts = 0x8; + constexpr std::ptrdiff_t m_pEntity = 0x10; + constexpr std::ptrdiff_t m_CScriptComponent = 0x28; +} + +namespace CEntityIOOutput { + constexpr std::ptrdiff_t m_Value = 0x18; +} + +namespace CScriptComponent { + constexpr std::ptrdiff_t m_scriptClassName = 0x30; +} + diff --git a/generated/engine2.dll.json b/generated/engine2.dll.json new file mode 100644 index 0000000..b770af5 --- /dev/null +++ b/generated/engine2.dll.json @@ -0,0 +1,147 @@ +{ + "CEntityComponentHelper": { + "m_flags": 8, + "m_nPriority": 24, + "m_pInfo": 16, + "m_pNext": 32 + }, + "CEntityIOOutput": { + "m_Value": 24 + }, + "CEntityIdentity": { + "m_PathIndex": 64, + "m_designerName": 32, + "m_fDataObjectTypes": 60, + "m_flags": 48, + "m_name": 24, + "m_nameStringableIndex": 20, + "m_pNext": 96, + "m_pNextByClass": 112, + "m_pPrev": 88, + "m_pPrevByClass": 104, + "m_worldGroupId": 56 + }, + "CEntityInstance": { + "m_CScriptComponent": 40, + "m_iszPrivateVScripts": 8, + "m_pEntity": 16 + }, + "CNetworkVarChainer": { + "m_PathIndex": 32 + }, + "CScriptComponent": { + "m_scriptClassName": 48 + }, + "EngineLoopState_t": { + "m_nPlatWindowHeight": 28, + "m_nPlatWindowWidth": 24, + "m_nRenderHeight": 36, + "m_nRenderWidth": 32 + }, + "EntComponentInfo_t": { + "m_nFlags": 36, + "m_nRuntimeIndex": 32, + "m_pBaseClassComponentHelper": 96, + "m_pCPPClassname": 8, + "m_pName": 0, + "m_pNetworkDataReferencedDescription": 16, + "m_pNetworkDataReferencedPtrPropDescription": 24 + }, + "EventAdvanceTick_t": { + "m_nCurrentTick": 48, + "m_nCurrentTickThisFrame": 52, + "m_nTotalTicks": 60, + "m_nTotalTicksThisFrame": 56 + }, + "EventAppShutdown_t": { + "m_nDummy0": 0 + }, + "EventClientFrameSimulate_t": { + "m_LoopState": 0, + "m_flFrameTime": 44, + "m_flRealTime": 40 + }, + "EventClientOutput_t": { + "m_LoopState": 0, + "m_bRenderOnly": 52, + "m_flRealTime": 44, + "m_flRenderFrameTimeUnbounded": 48, + "m_flRenderTime": 40 + }, + "EventClientPollInput_t": { + "m_LoopState": 0, + "m_flRealTime": 40 + }, + "EventClientPollNetworking_t": { + "m_nTickCount": 0 + }, + "EventClientPostOutput_t": { + "m_LoopState": 0, + "m_bRenderOnly": 56, + "m_flRenderFrameTime": 48, + "m_flRenderFrameTimeUnbounded": 52, + "m_flRenderTime": 40 + }, + "EventClientPreOutput_t": { + "m_LoopState": 0, + "m_bRenderOnly": 68, + "m_flRealTime": 64, + "m_flRenderFrameTime": 48, + "m_flRenderFrameTimeUnbounded": 56, + "m_flRenderTime": 40 + }, + "EventClientProcessGameInput_t": { + "m_LoopState": 0, + "m_flFrameTime": 44, + "m_flRealTime": 40 + }, + "EventClientProcessInput_t": { + "m_LoopState": 0, + "m_flRealTime": 40 + }, + "EventClientSceneSystemThreadStateChange_t": { + "m_bThreadsActive": 0 + }, + "EventClientSendInput_t": { + "m_bFinalClientCommandTick": 0, + "m_nAdditionalClientCommandsToCreate": 4 + }, + "EventFrameBoundary_t": { + "m_flFrameTime": 0 + }, + "EventPostAdvanceTick_t": { + "m_nCurrentTick": 48, + "m_nCurrentTickThisFrame": 52, + "m_nTotalTicks": 60, + "m_nTotalTicksThisFrame": 56 + }, + "EventPostDataUpdate_t": { + "m_nCount": 0 + }, + "EventPreDataUpdate_t": { + "m_nCount": 0 + }, + "EventProfileStorageAvailable_t": { + "m_nSplitScreenSlot": 0 + }, + "EventSetTime_t": { + "m_LoopState": 0, + "m_flRealTime": 48, + "m_flRenderFrameTime": 64, + "m_flRenderFrameTimeUnbounded": 72, + "m_flRenderFrameTimeUnscaled": 80, + "m_flRenderTime": 56, + "m_flTickRemainder": 88, + "m_nClientOutputFrames": 40 + }, + "EventSimpleLoopFrameUpdate_t": { + "m_LoopState": 0, + "m_flFrameTime": 44, + "m_flRealTime": 40 + }, + "EventSimulate_t": { + "m_LoopState": 0, + "m_bFirstTick": 40, + "m_bLastTick": 41 + } +} \ No newline at end of file diff --git a/generated/host.dll.hpp b/generated/host.dll.hpp new file mode 100644 index 0000000..1ec6248 --- /dev/null +++ b/generated/host.dll.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +namespace CAnimScriptBase { + constexpr std::ptrdiff_t m_bIsValid = 0x8; +} + +namespace EmptyTestScript { + constexpr std::ptrdiff_t m_hTest = 0x10; +} + diff --git a/generated/host.dll.json b/generated/host.dll.json new file mode 100644 index 0000000..fa98613 --- /dev/null +++ b/generated/host.dll.json @@ -0,0 +1,8 @@ +{ + "CAnimScriptBase": { + "m_bIsValid": 8 + }, + "EmptyTestScript": { + "m_hTest": 16 + } +} \ No newline at end of file diff --git a/generated/materialsystem2.dll.hpp b/generated/materialsystem2.dll.hpp new file mode 100644 index 0000000..d73d35a --- /dev/null +++ b/generated/materialsystem2.dll.hpp @@ -0,0 +1,111 @@ +#pragma once + +#include + +namespace MaterialParam_t { + constexpr std::ptrdiff_t m_name = 0x0; +} + +namespace MaterialParamInt_t { + constexpr std::ptrdiff_t m_nValue = 0x8; +} + +namespace MaterialParamFloat_t { + constexpr std::ptrdiff_t m_flValue = 0x8; +} + +namespace MaterialParamVector_t { + constexpr std::ptrdiff_t m_value = 0x8; +} + +namespace MaterialParamTexture_t { + constexpr std::ptrdiff_t m_pValue = 0x8; +} + +namespace MaterialParamString_t { + constexpr std::ptrdiff_t m_value = 0x8; +} + +namespace MaterialParamBuffer_t { + constexpr std::ptrdiff_t m_value = 0x8; +} + +namespace MaterialResourceData_t { + constexpr std::ptrdiff_t m_materialName = 0x0; + constexpr std::ptrdiff_t m_shaderName = 0x8; + constexpr std::ptrdiff_t m_intParams = 0x10; + constexpr std::ptrdiff_t m_floatParams = 0x28; + constexpr std::ptrdiff_t m_vectorParams = 0x40; + constexpr std::ptrdiff_t m_textureParams = 0x58; + constexpr std::ptrdiff_t m_dynamicParams = 0x70; + constexpr std::ptrdiff_t m_dynamicTextureParams = 0x88; + constexpr std::ptrdiff_t m_intAttributes = 0xa0; + constexpr std::ptrdiff_t m_floatAttributes = 0xb8; + constexpr std::ptrdiff_t m_vectorAttributes = 0xd0; + constexpr std::ptrdiff_t m_textureAttributes = 0xe8; + constexpr std::ptrdiff_t m_stringAttributes = 0x100; + constexpr std::ptrdiff_t m_renderAttributesUsed = 0x118; +} + +namespace PostProcessingTonemapParameters_t { + constexpr std::ptrdiff_t m_flExposureBias = 0x0; + constexpr std::ptrdiff_t m_flShoulderStrength = 0x4; + constexpr std::ptrdiff_t m_flLinearStrength = 0x8; + constexpr std::ptrdiff_t m_flLinearAngle = 0xc; + constexpr std::ptrdiff_t m_flToeStrength = 0x10; + constexpr std::ptrdiff_t m_flToeNum = 0x14; + constexpr std::ptrdiff_t m_flToeDenom = 0x18; + constexpr std::ptrdiff_t m_flWhitePoint = 0x1c; + constexpr std::ptrdiff_t m_flLuminanceSource = 0x20; + constexpr std::ptrdiff_t m_flExposureBiasShadows = 0x24; + constexpr std::ptrdiff_t m_flExposureBiasHighlights = 0x28; + constexpr std::ptrdiff_t m_flMinShadowLum = 0x2c; + constexpr std::ptrdiff_t m_flMaxShadowLum = 0x30; + constexpr std::ptrdiff_t m_flMinHighlightLum = 0x34; + constexpr std::ptrdiff_t m_flMaxHighlightLum = 0x38; +} + +namespace PostProcessingBloomParameters_t { + constexpr std::ptrdiff_t m_blendMode = 0x0; + constexpr std::ptrdiff_t m_flBloomStrength = 0x4; + constexpr std::ptrdiff_t m_flScreenBloomStrength = 0x8; + constexpr std::ptrdiff_t m_flBlurBloomStrength = 0xc; + constexpr std::ptrdiff_t m_flBloomThreshold = 0x10; + constexpr std::ptrdiff_t m_flBloomThresholdWidth = 0x14; + constexpr std::ptrdiff_t m_flSkyboxBloomStrength = 0x18; + constexpr std::ptrdiff_t m_flBloomStartValue = 0x1c; + constexpr std::ptrdiff_t m_flBlurWeight = 0x20; + constexpr std::ptrdiff_t m_vBlurTint = 0x34; +} + +namespace PostProcessingVignetteParameters_t { + constexpr std::ptrdiff_t m_flVignetteStrength = 0x0; + constexpr std::ptrdiff_t m_vCenter = 0x4; + constexpr std::ptrdiff_t m_flRadius = 0xc; + constexpr std::ptrdiff_t m_flRoundness = 0x10; + constexpr std::ptrdiff_t m_flFeather = 0x14; + constexpr std::ptrdiff_t m_vColorTint = 0x18; +} + +namespace PostProcessingLocalContrastParameters_t { + constexpr std::ptrdiff_t m_flLocalContrastStrength = 0x0; + constexpr std::ptrdiff_t m_flLocalContrastEdgeStrength = 0x4; + constexpr std::ptrdiff_t m_flLocalContrastVignetteStart = 0x8; + constexpr std::ptrdiff_t m_flLocalContrastVignetteEnd = 0xc; + constexpr std::ptrdiff_t m_flLocalContrastVignetteBlur = 0x10; +} + +namespace PostProcessingResource_t { + constexpr std::ptrdiff_t m_bHasTonemapParams = 0x0; + constexpr std::ptrdiff_t m_toneMapParams = 0x4; + constexpr std::ptrdiff_t m_bHasBloomParams = 0x40; + constexpr std::ptrdiff_t m_bloomParams = 0x44; + constexpr std::ptrdiff_t m_bHasVignetteParams = 0xb4; + constexpr std::ptrdiff_t m_vignetteParams = 0xb8; + constexpr std::ptrdiff_t m_bHasLocalContrastParams = 0xdc; + constexpr std::ptrdiff_t m_localConstrastParams = 0xe0; + constexpr std::ptrdiff_t m_nColorCorrectionVolumeDim = 0xf4; + constexpr std::ptrdiff_t m_colorCorrectionVolumeData = 0xf8; + constexpr std::ptrdiff_t m_bHasColorCorrection = 0x110; +} + diff --git a/generated/materialsystem2.dll.json b/generated/materialsystem2.dll.json new file mode 100644 index 0000000..5de0460 --- /dev/null +++ b/generated/materialsystem2.dll.json @@ -0,0 +1,96 @@ +{ + "MaterialParamBuffer_t": { + "m_value": 8 + }, + "MaterialParamFloat_t": { + "m_flValue": 8 + }, + "MaterialParamInt_t": { + "m_nValue": 8 + }, + "MaterialParamString_t": { + "m_value": 8 + }, + "MaterialParamTexture_t": { + "m_pValue": 8 + }, + "MaterialParamVector_t": { + "m_value": 8 + }, + "MaterialParam_t": { + "m_name": 0 + }, + "MaterialResourceData_t": { + "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 + }, + "PostProcessingBloomParameters_t": { + "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 + }, + "PostProcessingLocalContrastParameters_t": { + "m_flLocalContrastEdgeStrength": 4, + "m_flLocalContrastStrength": 0, + "m_flLocalContrastVignetteBlur": 16, + "m_flLocalContrastVignetteEnd": 12, + "m_flLocalContrastVignetteStart": 8 + }, + "PostProcessingResource_t": { + "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 + }, + "PostProcessingTonemapParameters_t": { + "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 + }, + "PostProcessingVignetteParameters_t": { + "m_flFeather": 20, + "m_flRadius": 12, + "m_flRoundness": 16, + "m_flVignetteStrength": 0, + "m_vCenter": 4, + "m_vColorTint": 24 + } +} \ No newline at end of file diff --git a/generated/meshsystem.dll.hpp b/generated/meshsystem.dll.hpp new file mode 100644 index 0000000..1ad0691 --- /dev/null +++ b/generated/meshsystem.dll.hpp @@ -0,0 +1,4 @@ +#pragma once + +#include + diff --git a/generated/meshsystem.dll.json b/generated/meshsystem.dll.json new file mode 100644 index 0000000..ec747fa --- /dev/null +++ b/generated/meshsystem.dll.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/generated/networksystem.dll.hpp b/generated/networksystem.dll.hpp new file mode 100644 index 0000000..2be0f41 --- /dev/null +++ b/generated/networksystem.dll.hpp @@ -0,0 +1,8 @@ +#pragma once + +#include + +namespace ChangeAccessorFieldPathIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + diff --git a/generated/networksystem.dll.json b/generated/networksystem.dll.json new file mode 100644 index 0000000..3425e0c --- /dev/null +++ b/generated/networksystem.dll.json @@ -0,0 +1,5 @@ +{ + "ChangeAccessorFieldPathIndex_t": { + "m_Value": 0 + } +} \ No newline at end of file diff --git a/generated/panorama.dll.hpp b/generated/panorama.dll.hpp new file mode 100644 index 0000000..1ad0691 --- /dev/null +++ b/generated/panorama.dll.hpp @@ -0,0 +1,4 @@ +#pragma once + +#include + diff --git a/generated/panorama.dll.json b/generated/panorama.dll.json new file mode 100644 index 0000000..ec747fa --- /dev/null +++ b/generated/panorama.dll.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/generated/particles.dll.hpp b/generated/particles.dll.hpp new file mode 100644 index 0000000..6e95974 --- /dev/null +++ b/generated/particles.dll.hpp @@ -0,0 +1,4023 @@ +#pragma once + +#include + +namespace CRandomNumberGeneratorParameters { + constexpr std::ptrdiff_t m_bDistributeEvenly = 0x0; + constexpr std::ptrdiff_t m_nSeed = 0x4; +} + +namespace MaterialVariable_t { + constexpr std::ptrdiff_t m_strVariable = 0x0; + constexpr std::ptrdiff_t m_nVariableField = 0x8; + constexpr std::ptrdiff_t m_flScale = 0xc; +} + +namespace ParticleAttributeIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace ParticlePreviewBodyGroup_t { + constexpr std::ptrdiff_t m_bodyGroupName = 0x0; + constexpr std::ptrdiff_t m_nValue = 0x8; +} + +namespace ParticlePreviewState_t { + constexpr std::ptrdiff_t m_previewModel = 0x0; + constexpr std::ptrdiff_t m_nModSpecificData = 0x8; + constexpr std::ptrdiff_t m_groundType = 0xc; + constexpr std::ptrdiff_t m_sequenceName = 0x10; + constexpr std::ptrdiff_t m_nFireParticleOnSequenceFrame = 0x18; + constexpr std::ptrdiff_t m_hitboxSetName = 0x20; + constexpr std::ptrdiff_t m_materialGroupName = 0x28; + constexpr std::ptrdiff_t m_vecBodyGroups = 0x30; + constexpr std::ptrdiff_t m_flPlaybackSpeed = 0x48; + constexpr std::ptrdiff_t m_flParticleSimulationRate = 0x4c; + constexpr std::ptrdiff_t m_bShouldDrawHitboxes = 0x50; + constexpr std::ptrdiff_t m_bShouldDrawAttachments = 0x51; + constexpr std::ptrdiff_t m_bShouldDrawAttachmentNames = 0x52; + constexpr std::ptrdiff_t m_bShouldDrawControlPointAxes = 0x53; + constexpr std::ptrdiff_t m_bAnimationNonLooping = 0x54; + constexpr std::ptrdiff_t m_vecPreviewGravity = 0x58; +} + +namespace ParticleControlPointDriver_t { + constexpr std::ptrdiff_t m_iControlPoint = 0x0; + constexpr std::ptrdiff_t m_iAttachType = 0x4; + constexpr std::ptrdiff_t m_attachmentName = 0x8; + constexpr std::ptrdiff_t m_vecOffset = 0x10; + constexpr std::ptrdiff_t m_angOffset = 0x1c; + constexpr std::ptrdiff_t m_entityName = 0x28; +} + +namespace ParticleControlPointConfiguration_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_drivers = 0x8; + constexpr std::ptrdiff_t m_previewState = 0x20; +} + +namespace IParticleCollection { +} + +namespace IControlPointEditorData { +} + +namespace IParticleSystemDefinition { +} + +namespace CParticleVisibilityInputs { + constexpr std::ptrdiff_t m_flCameraBias = 0x0; + constexpr std::ptrdiff_t m_nCPin = 0x4; + constexpr std::ptrdiff_t m_flProxyRadius = 0x8; + constexpr std::ptrdiff_t m_flInputMin = 0xc; + constexpr std::ptrdiff_t m_flInputMax = 0x10; + constexpr std::ptrdiff_t m_flNoPixelVisibilityFallback = 0x14; + constexpr std::ptrdiff_t m_flDistanceInputMin = 0x18; + constexpr std::ptrdiff_t m_flDistanceInputMax = 0x1c; + constexpr std::ptrdiff_t m_flDotInputMin = 0x20; + constexpr std::ptrdiff_t m_flDotInputMax = 0x24; + constexpr std::ptrdiff_t m_bDotCPAngles = 0x28; + constexpr std::ptrdiff_t m_bDotCameraAngles = 0x29; + constexpr std::ptrdiff_t m_flAlphaScaleMin = 0x2c; + constexpr std::ptrdiff_t m_flAlphaScaleMax = 0x30; + constexpr std::ptrdiff_t m_flRadiusScaleMin = 0x34; + constexpr std::ptrdiff_t m_flRadiusScaleMax = 0x38; + constexpr std::ptrdiff_t m_flRadiusScaleFOVBase = 0x3c; + constexpr std::ptrdiff_t m_bRightEye = 0x40; +} + +namespace CPathParameters { + constexpr std::ptrdiff_t m_nStartControlPointNumber = 0x0; + constexpr std::ptrdiff_t m_nEndControlPointNumber = 0x4; + constexpr std::ptrdiff_t m_nBulgeControl = 0x8; + constexpr std::ptrdiff_t m_flBulge = 0xc; + constexpr std::ptrdiff_t m_flMidPoint = 0x10; + constexpr std::ptrdiff_t m_vStartPointOffset = 0x14; + constexpr std::ptrdiff_t m_vMidPointOffset = 0x20; + constexpr std::ptrdiff_t m_vEndOffset = 0x2c; +} + +namespace ParticleChildrenInfo_t { + constexpr std::ptrdiff_t m_ChildRef = 0x0; + constexpr std::ptrdiff_t m_flDelay = 0x8; + constexpr std::ptrdiff_t m_bEndCap = 0xc; + constexpr std::ptrdiff_t m_bDisableChild = 0xd; + constexpr std::ptrdiff_t m_nDetailLevel = 0x10; +} + +namespace ControlPointReference_t { + constexpr std::ptrdiff_t m_controlPointNameString = 0x0; + constexpr std::ptrdiff_t m_vOffsetFromControlPoint = 0x4; + constexpr std::ptrdiff_t m_bOffsetInLocalSpace = 0x10; +} + +namespace ModelReference_t { + constexpr std::ptrdiff_t m_model = 0x0; + constexpr std::ptrdiff_t m_flRelativeProbabilityOfSpawn = 0x8; +} + +namespace SequenceWeightedList_t { + constexpr std::ptrdiff_t m_nSequence = 0x0; + constexpr std::ptrdiff_t m_flRelativeWeight = 0x4; +} + +namespace CollisionGroupContext_t { + constexpr std::ptrdiff_t m_nCollisionGroupNumber = 0x0; +} + +namespace PointDefinition_t { + constexpr std::ptrdiff_t m_nControlPoint = 0x0; + constexpr std::ptrdiff_t m_bLocalCoords = 0x4; + constexpr std::ptrdiff_t m_vOffset = 0x8; +} + +namespace PointDefinitionWithTimeValues_t { + constexpr std::ptrdiff_t m_flTimeDuration = 0x14; +} + +namespace CParticleSystemDefinition { + constexpr std::ptrdiff_t m_nBehaviorVersion = 0x8; + constexpr std::ptrdiff_t m_PreEmissionOperators = 0x10; + constexpr std::ptrdiff_t m_Emitters = 0x28; + constexpr std::ptrdiff_t m_Initializers = 0x40; + constexpr std::ptrdiff_t m_Operators = 0x58; + constexpr std::ptrdiff_t m_ForceGenerators = 0x70; + constexpr std::ptrdiff_t m_Constraints = 0x88; + constexpr std::ptrdiff_t m_Renderers = 0xa0; + constexpr std::ptrdiff_t m_Children = 0xb8; + constexpr std::ptrdiff_t m_nFirstMultipleOverride_BackwardCompat = 0x178; + constexpr std::ptrdiff_t m_nInitialParticles = 0x210; + constexpr std::ptrdiff_t m_nMaxParticles = 0x214; + constexpr std::ptrdiff_t m_nGroupID = 0x218; + constexpr std::ptrdiff_t m_BoundingBoxMin = 0x21c; + constexpr std::ptrdiff_t m_BoundingBoxMax = 0x228; + constexpr std::ptrdiff_t m_flDepthSortBias = 0x234; + constexpr std::ptrdiff_t m_nSortOverridePositionCP = 0x238; + constexpr std::ptrdiff_t m_bInfiniteBounds = 0x23c; + constexpr std::ptrdiff_t m_bEnableNamedValues = 0x23d; + constexpr std::ptrdiff_t m_NamedValueDomain = 0x240; + constexpr std::ptrdiff_t m_NamedValueLocals = 0x248; + constexpr std::ptrdiff_t m_ConstantColor = 0x260; + constexpr std::ptrdiff_t m_ConstantNormal = 0x264; + constexpr std::ptrdiff_t m_flConstantRadius = 0x270; + constexpr std::ptrdiff_t m_flConstantRotation = 0x274; + constexpr std::ptrdiff_t m_flConstantRotationSpeed = 0x278; + constexpr std::ptrdiff_t m_flConstantLifespan = 0x27c; + constexpr std::ptrdiff_t m_nConstantSequenceNumber = 0x280; + constexpr std::ptrdiff_t m_nConstantSequenceNumber1 = 0x284; + constexpr std::ptrdiff_t m_nSnapshotControlPoint = 0x288; + constexpr std::ptrdiff_t m_hSnapshot = 0x290; + constexpr std::ptrdiff_t m_pszCullReplacementName = 0x298; + constexpr std::ptrdiff_t m_flCullRadius = 0x2a0; + constexpr std::ptrdiff_t m_flCullFillCost = 0x2a4; + constexpr std::ptrdiff_t m_nCullControlPoint = 0x2a8; + constexpr std::ptrdiff_t m_hFallback = 0x2b0; + constexpr std::ptrdiff_t m_nFallbackMaxCount = 0x2b8; + constexpr std::ptrdiff_t m_hLowViolenceDef = 0x2c0; + constexpr std::ptrdiff_t m_hReferenceReplacement = 0x2c8; + constexpr std::ptrdiff_t m_flPreSimulationTime = 0x2d0; + constexpr std::ptrdiff_t m_flStopSimulationAfterTime = 0x2d4; + constexpr std::ptrdiff_t m_flMaximumTimeStep = 0x2d8; + constexpr std::ptrdiff_t m_flMaximumSimTime = 0x2dc; + constexpr std::ptrdiff_t m_flMinimumSimTime = 0x2e0; + constexpr std::ptrdiff_t m_flMinimumTimeStep = 0x2e4; + constexpr std::ptrdiff_t m_nMinimumFrames = 0x2e8; + constexpr std::ptrdiff_t m_nMinCPULevel = 0x2ec; + constexpr std::ptrdiff_t m_nMinGPULevel = 0x2f0; + constexpr std::ptrdiff_t m_flNoDrawTimeToGoToSleep = 0x2f4; + constexpr std::ptrdiff_t m_flMaxDrawDistance = 0x2f8; + constexpr std::ptrdiff_t m_flStartFadeDistance = 0x2fc; + constexpr std::ptrdiff_t m_flMaxCreationDistance = 0x300; + constexpr std::ptrdiff_t m_nAggregationMinAvailableParticles = 0x304; + constexpr std::ptrdiff_t m_flAggregateRadius = 0x308; + constexpr std::ptrdiff_t m_bShouldBatch = 0x30c; + constexpr std::ptrdiff_t m_bShouldHitboxesFallbackToRenderBounds = 0x30d; + constexpr std::ptrdiff_t m_bShouldHitboxesFallbackToSnapshot = 0x30e; + constexpr std::ptrdiff_t m_nViewModelEffect = 0x310; + constexpr std::ptrdiff_t m_bScreenSpaceEffect = 0x314; + constexpr std::ptrdiff_t m_pszTargetLayerID = 0x318; + constexpr std::ptrdiff_t m_nSkipRenderControlPoint = 0x320; + constexpr std::ptrdiff_t m_nAllowRenderControlPoint = 0x324; + constexpr std::ptrdiff_t m_bShouldSort = 0x328; + constexpr std::ptrdiff_t m_controlPointConfigurations = 0x370; +} + +namespace CParticleFunction { + constexpr std::ptrdiff_t m_flOpStrength = 0x8; + constexpr std::ptrdiff_t m_nOpEndCapState = 0x160; + constexpr std::ptrdiff_t m_flOpStartFadeInTime = 0x164; + constexpr std::ptrdiff_t m_flOpEndFadeInTime = 0x168; + constexpr std::ptrdiff_t m_flOpStartFadeOutTime = 0x16c; + constexpr std::ptrdiff_t m_flOpEndFadeOutTime = 0x170; + constexpr std::ptrdiff_t m_flOpFadeOscillatePeriod = 0x174; + constexpr std::ptrdiff_t m_bNormalizeToStopTime = 0x178; + constexpr std::ptrdiff_t m_flOpTimeOffsetMin = 0x17c; + constexpr std::ptrdiff_t m_flOpTimeOffsetMax = 0x180; + constexpr std::ptrdiff_t m_nOpTimeOffsetSeed = 0x184; + constexpr std::ptrdiff_t m_nOpTimeScaleSeed = 0x188; + constexpr std::ptrdiff_t m_flOpTimeScaleMin = 0x18c; + constexpr std::ptrdiff_t m_flOpTimeScaleMax = 0x190; + constexpr std::ptrdiff_t m_bDisableOperator = 0x196; + constexpr std::ptrdiff_t m_Notes = 0x198; +} + +namespace CParticleFunctionInitializer { + constexpr std::ptrdiff_t m_nAssociatedEmitterIndex = 0x1b8; +} + +namespace CParticleFunctionEmitter { + constexpr std::ptrdiff_t m_nEmitterIndex = 0x1b8; +} + +namespace CParticleFunctionConstraint { +} + +namespace CParticleFunctionOperator { +} + +namespace CParticleFunctionForce { +} + +namespace CParticleFunctionPreEmission { + constexpr std::ptrdiff_t m_bRunOnce = 0x1c0; +} + +namespace CParticleFunctionRenderer { + constexpr std::ptrdiff_t VisibilityInputs = 0x1b8; + constexpr std::ptrdiff_t m_bCannotBeRefracted = 0x1fc; + constexpr std::ptrdiff_t m_bSkipRenderingOnMobile = 0x1fd; +} + +namespace TextureControls_t { + constexpr std::ptrdiff_t m_flFinalTextureScaleU = 0x0; + constexpr std::ptrdiff_t m_flFinalTextureScaleV = 0x158; + constexpr std::ptrdiff_t m_flFinalTextureOffsetU = 0x2b0; + constexpr std::ptrdiff_t m_flFinalTextureOffsetV = 0x408; + constexpr std::ptrdiff_t m_flFinalTextureUVRotation = 0x560; + constexpr std::ptrdiff_t m_flZoomScale = 0x6b8; + constexpr std::ptrdiff_t m_flDistortion = 0x810; + constexpr std::ptrdiff_t m_bRandomizeOffsets = 0x968; + constexpr std::ptrdiff_t m_bClampUVs = 0x969; + constexpr std::ptrdiff_t m_nPerParticleBlend = 0x96c; + constexpr std::ptrdiff_t m_nPerParticleScale = 0x970; + constexpr std::ptrdiff_t m_nPerParticleOffsetU = 0x974; + constexpr std::ptrdiff_t m_nPerParticleOffsetV = 0x978; + constexpr std::ptrdiff_t m_nPerParticleRotation = 0x97c; + constexpr std::ptrdiff_t m_nPerParticleZoom = 0x980; + constexpr std::ptrdiff_t m_nPerParticleDistortion = 0x984; +} + +namespace TextureGroup_t { + constexpr std::ptrdiff_t m_bEnabled = 0x0; + constexpr std::ptrdiff_t m_bReplaceTextureWithGradient = 0x1; + constexpr std::ptrdiff_t m_hTexture = 0x8; + constexpr std::ptrdiff_t m_Gradient = 0x10; + constexpr std::ptrdiff_t m_nTextureType = 0x28; + constexpr std::ptrdiff_t m_nTextureChannels = 0x2c; + constexpr std::ptrdiff_t m_nTextureBlendMode = 0x30; + constexpr std::ptrdiff_t m_flTextureBlend = 0x38; + constexpr std::ptrdiff_t m_TextureControls = 0x190; +} + +namespace CBaseRendererSource2 { + constexpr std::ptrdiff_t m_flRadiusScale = 0x200; + constexpr std::ptrdiff_t m_flAlphaScale = 0x358; + constexpr std::ptrdiff_t m_flRollScale = 0x4b0; + constexpr std::ptrdiff_t m_nAlpha2Field = 0x608; + constexpr std::ptrdiff_t m_vecColorScale = 0x610; + constexpr std::ptrdiff_t m_nColorBlendType = 0xc68; + constexpr std::ptrdiff_t m_nShaderType = 0xc6c; + constexpr std::ptrdiff_t m_strShaderOverride = 0xc70; + constexpr std::ptrdiff_t m_flCenterXOffset = 0xc78; + constexpr std::ptrdiff_t m_flCenterYOffset = 0xdd0; + constexpr std::ptrdiff_t m_flBumpStrength = 0xf28; + constexpr std::ptrdiff_t m_nCropTextureOverride = 0xf2c; + constexpr std::ptrdiff_t m_vecTexturesInput = 0xf30; + constexpr std::ptrdiff_t m_flAnimationRate = 0xf48; + constexpr std::ptrdiff_t m_nAnimationType = 0xf4c; + constexpr std::ptrdiff_t m_bAnimateInFPS = 0xf50; + constexpr std::ptrdiff_t m_flSelfIllumAmount = 0xf58; + constexpr std::ptrdiff_t m_flDiffuseAmount = 0x10b0; + constexpr std::ptrdiff_t m_nLightingControlPoint = 0x1208; + constexpr std::ptrdiff_t m_nSelfIllumPerParticle = 0x120c; + constexpr std::ptrdiff_t m_nOutputBlendMode = 0x1210; + constexpr std::ptrdiff_t m_bGammaCorrectVertexColors = 0x1214; + constexpr std::ptrdiff_t m_bSaturateColorPreAlphaBlend = 0x1215; + constexpr std::ptrdiff_t m_flAddSelfAmount = 0x1218; + constexpr std::ptrdiff_t m_flDesaturation = 0x1370; + constexpr std::ptrdiff_t m_flOverbrightFactor = 0x14c8; + constexpr std::ptrdiff_t m_nHSVShiftControlPoint = 0x1620; + constexpr std::ptrdiff_t m_nFogType = 0x1624; + constexpr std::ptrdiff_t m_flFogAmount = 0x1628; + constexpr std::ptrdiff_t m_bTintByFOW = 0x1780; + constexpr std::ptrdiff_t m_bTintByGlobalLight = 0x1781; + constexpr std::ptrdiff_t m_nPerParticleAlphaReference = 0x1784; + constexpr std::ptrdiff_t m_nPerParticleAlphaRefWindow = 0x1788; + constexpr std::ptrdiff_t m_nAlphaReferenceType = 0x178c; + constexpr std::ptrdiff_t m_flAlphaReferenceSoftness = 0x1790; + constexpr std::ptrdiff_t m_flSourceAlphaValueToMapToZero = 0x18e8; + constexpr std::ptrdiff_t m_flSourceAlphaValueToMapToOne = 0x1a40; + constexpr std::ptrdiff_t m_bRefract = 0x1b98; + constexpr std::ptrdiff_t m_bRefractSolid = 0x1b99; + constexpr std::ptrdiff_t m_flRefractAmount = 0x1ba0; + constexpr std::ptrdiff_t m_nRefractBlurRadius = 0x1cf8; + constexpr std::ptrdiff_t m_nRefractBlurType = 0x1cfc; + constexpr std::ptrdiff_t m_bOnlyRenderInEffectsBloomPass = 0x1d00; + constexpr std::ptrdiff_t m_bOnlyRenderInEffectsWaterPass = 0x1d01; + constexpr std::ptrdiff_t m_bUseMixedResolutionRendering = 0x1d02; + constexpr std::ptrdiff_t m_bOnlyRenderInEffecsGameOverlay = 0x1d03; + constexpr std::ptrdiff_t m_stencilTestID = 0x1d04; + constexpr std::ptrdiff_t m_bStencilTestExclude = 0x1d84; + constexpr std::ptrdiff_t m_stencilWriteID = 0x1d85; + constexpr std::ptrdiff_t m_bWriteStencilOnDepthPass = 0x1e05; + constexpr std::ptrdiff_t m_bWriteStencilOnDepthFail = 0x1e06; + constexpr std::ptrdiff_t m_bReverseZBuffering = 0x1e07; + constexpr std::ptrdiff_t m_bDisableZBuffering = 0x1e08; + constexpr std::ptrdiff_t m_nFeatheringMode = 0x1e0c; + constexpr std::ptrdiff_t m_flFeatheringMinDist = 0x1e10; + constexpr std::ptrdiff_t m_flFeatheringMaxDist = 0x1f68; + constexpr std::ptrdiff_t m_flFeatheringFilter = 0x20c0; + constexpr std::ptrdiff_t m_flDepthBias = 0x2218; + constexpr std::ptrdiff_t m_nSortMethod = 0x221c; + constexpr std::ptrdiff_t m_bBlendFramesSeq0 = 0x2220; + constexpr std::ptrdiff_t m_bMaxLuminanceBlendingSequence0 = 0x2221; +} + +namespace C_OP_RenderSprites { + constexpr std::ptrdiff_t m_nSequenceOverride = 0x2470; + constexpr std::ptrdiff_t m_nOrientationType = 0x25c8; + constexpr std::ptrdiff_t m_nOrientationControlPoint = 0x25cc; + constexpr std::ptrdiff_t m_bUseYawWithNormalAligned = 0x25d0; + constexpr std::ptrdiff_t m_flMinSize = 0x25d4; + constexpr std::ptrdiff_t m_flMaxSize = 0x25d8; + constexpr std::ptrdiff_t m_flAlphaAdjustWithSizeAdjust = 0x25dc; + constexpr std::ptrdiff_t m_flStartFadeSize = 0x25e0; + constexpr std::ptrdiff_t m_flEndFadeSize = 0x2738; + constexpr std::ptrdiff_t m_flStartFadeDot = 0x2890; + constexpr std::ptrdiff_t m_flEndFadeDot = 0x2894; + constexpr std::ptrdiff_t m_bDistanceAlpha = 0x2898; + constexpr std::ptrdiff_t m_bSoftEdges = 0x2899; + constexpr std::ptrdiff_t m_flEdgeSoftnessStart = 0x289c; + constexpr std::ptrdiff_t m_flEdgeSoftnessEnd = 0x28a0; + constexpr std::ptrdiff_t m_bOutline = 0x28a4; + constexpr std::ptrdiff_t m_OutlineColor = 0x28a5; + constexpr std::ptrdiff_t m_nOutlineAlpha = 0x28ac; + constexpr std::ptrdiff_t m_flOutlineStart0 = 0x28b0; + constexpr std::ptrdiff_t m_flOutlineStart1 = 0x28b4; + constexpr std::ptrdiff_t m_flOutlineEnd0 = 0x28b8; + constexpr std::ptrdiff_t m_flOutlineEnd1 = 0x28bc; + constexpr std::ptrdiff_t m_nLightingMode = 0x28c0; + constexpr std::ptrdiff_t m_flLightingTessellation = 0x28c8; + constexpr std::ptrdiff_t m_flLightingDirectionality = 0x2a20; + constexpr std::ptrdiff_t m_bParticleShadows = 0x2b78; + constexpr std::ptrdiff_t m_flShadowDensity = 0x2b7c; +} + +namespace FloatInputMaterialVariable_t { + constexpr std::ptrdiff_t m_strVariable = 0x0; + constexpr std::ptrdiff_t m_flInput = 0x8; +} + +namespace VecInputMaterialVariable_t { + constexpr std::ptrdiff_t m_strVariable = 0x0; + constexpr std::ptrdiff_t m_vecInput = 0x8; +} + +namespace C_OP_RenderCables { + constexpr std::ptrdiff_t m_flRadiusScale = 0x200; + constexpr std::ptrdiff_t m_flAlphaScale = 0x358; + constexpr std::ptrdiff_t m_vecColorScale = 0x4b0; + constexpr std::ptrdiff_t m_nColorBlendType = 0xb08; + constexpr std::ptrdiff_t m_hMaterial = 0xb10; + constexpr std::ptrdiff_t m_nTextureRepetitionMode = 0xb18; + constexpr std::ptrdiff_t m_flTextureRepeatsPerSegment = 0xb20; + constexpr std::ptrdiff_t m_flTextureRepeatsCircumference = 0xc78; + constexpr std::ptrdiff_t m_flColorMapOffsetV = 0xdd0; + constexpr std::ptrdiff_t m_flColorMapOffsetU = 0xf28; + constexpr std::ptrdiff_t m_flNormalMapOffsetV = 0x1080; + constexpr std::ptrdiff_t m_flNormalMapOffsetU = 0x11d8; + constexpr std::ptrdiff_t m_bDrawCableCaps = 0x1330; + constexpr std::ptrdiff_t m_flCapRoundness = 0x1334; + constexpr std::ptrdiff_t m_flCapOffsetAmount = 0x1338; + constexpr std::ptrdiff_t m_flTessScale = 0x133c; + constexpr std::ptrdiff_t m_nMinTesselation = 0x1340; + constexpr std::ptrdiff_t m_nMaxTesselation = 0x1344; + constexpr std::ptrdiff_t m_nRoundness = 0x1348; + constexpr std::ptrdiff_t m_LightingTransform = 0x1350; + constexpr std::ptrdiff_t m_MaterialFloatVars = 0x13b8; + constexpr std::ptrdiff_t m_MaterialVecVars = 0x13e8; +} + +namespace CParticleInput { +} + +namespace CParticleFloatInput { + constexpr std::ptrdiff_t m_nType = 0x10; + constexpr std::ptrdiff_t m_nMapType = 0x14; + constexpr std::ptrdiff_t m_flLiteralValue = 0x18; + constexpr std::ptrdiff_t m_NamedValue = 0x20; + constexpr std::ptrdiff_t m_nControlPoint = 0x60; + constexpr std::ptrdiff_t m_nScalarAttribute = 0x64; + constexpr std::ptrdiff_t m_nVectorAttribute = 0x68; + constexpr std::ptrdiff_t m_nVectorComponent = 0x6c; + constexpr std::ptrdiff_t m_flRandomMin = 0x70; + constexpr std::ptrdiff_t m_flRandomMax = 0x74; + constexpr std::ptrdiff_t m_bHasRandomSignFlip = 0x78; + constexpr std::ptrdiff_t m_nRandomMode = 0x7c; + constexpr std::ptrdiff_t m_flLOD0 = 0x84; + constexpr std::ptrdiff_t m_flLOD1 = 0x88; + constexpr std::ptrdiff_t m_flLOD2 = 0x8c; + constexpr std::ptrdiff_t m_flLOD3 = 0x90; + constexpr std::ptrdiff_t m_nNoiseInputVectorAttribute = 0x94; + constexpr std::ptrdiff_t m_flNoiseOutputMin = 0x98; + constexpr std::ptrdiff_t m_flNoiseOutputMax = 0x9c; + constexpr std::ptrdiff_t m_flNoiseScale = 0xa0; + constexpr std::ptrdiff_t m_vecNoiseOffsetRate = 0xa4; + constexpr std::ptrdiff_t m_flNoiseOffset = 0xb0; + constexpr std::ptrdiff_t m_nNoiseOctaves = 0xb4; + constexpr std::ptrdiff_t m_nNoiseTurbulence = 0xb8; + constexpr std::ptrdiff_t m_nNoiseType = 0xbc; + constexpr std::ptrdiff_t m_nNoiseModifier = 0xc0; + constexpr std::ptrdiff_t m_flNoiseTurbulenceScale = 0xc4; + constexpr std::ptrdiff_t m_flNoiseTurbulenceMix = 0xc8; + constexpr std::ptrdiff_t m_flNoiseImgPreviewScale = 0xcc; + constexpr std::ptrdiff_t m_bNoiseImgPreviewLive = 0xd0; + constexpr std::ptrdiff_t m_flNoCameraFallback = 0xdc; + constexpr std::ptrdiff_t m_bUseBoundsCenter = 0xe0; + constexpr std::ptrdiff_t m_nInputMode = 0xe4; + constexpr std::ptrdiff_t m_flMultFactor = 0xe8; + constexpr std::ptrdiff_t m_flInput0 = 0xec; + constexpr std::ptrdiff_t m_flInput1 = 0xf0; + constexpr std::ptrdiff_t m_flOutput0 = 0xf4; + constexpr std::ptrdiff_t m_flOutput1 = 0xf8; + constexpr std::ptrdiff_t m_flNotchedRangeMin = 0xfc; + constexpr std::ptrdiff_t m_flNotchedRangeMax = 0x100; + constexpr std::ptrdiff_t m_flNotchedOutputOutside = 0x104; + constexpr std::ptrdiff_t m_flNotchedOutputInside = 0x108; + constexpr std::ptrdiff_t m_nBiasType = 0x10c; + constexpr std::ptrdiff_t m_flBiasParameter = 0x110; + constexpr std::ptrdiff_t m_Curve = 0x118; +} + +namespace CPerParticleFloatInput { +} + +namespace CParticleCollectionFloatInput { +} + +namespace CParticleCollectionRendererFloatInput { +} + +namespace CParticleRemapFloatInput { +} + +namespace CParticleTransformInput { + constexpr std::ptrdiff_t m_nType = 0x10; + constexpr std::ptrdiff_t m_NamedValue = 0x18; + constexpr std::ptrdiff_t m_bFollowNamedValue = 0x58; + constexpr std::ptrdiff_t m_bSupportsDisabled = 0x59; + constexpr std::ptrdiff_t m_bUseOrientation = 0x5a; + constexpr std::ptrdiff_t m_nControlPoint = 0x5c; + constexpr std::ptrdiff_t m_nControlPointRangeMax = 0x60; + constexpr std::ptrdiff_t m_flEndCPGrowthTime = 0x64; +} + +namespace CParticleModelInput { + constexpr std::ptrdiff_t m_nType = 0x10; + constexpr std::ptrdiff_t m_NamedValue = 0x18; + constexpr std::ptrdiff_t m_nControlPoint = 0x58; +} + +namespace CParticleVecInput { + constexpr std::ptrdiff_t m_nType = 0x10; + constexpr std::ptrdiff_t m_vLiteralValue = 0x14; + constexpr std::ptrdiff_t m_LiteralColor = 0x20; + constexpr std::ptrdiff_t m_NamedValue = 0x28; + constexpr std::ptrdiff_t m_bFollowNamedValue = 0x68; + constexpr std::ptrdiff_t m_nVectorAttribute = 0x6c; + constexpr std::ptrdiff_t m_vVectorAttributeScale = 0x70; + constexpr std::ptrdiff_t m_nControlPoint = 0x7c; + constexpr std::ptrdiff_t m_nDeltaControlPoint = 0x80; + constexpr std::ptrdiff_t m_vCPValueScale = 0x84; + constexpr std::ptrdiff_t m_vCPRelativePosition = 0x90; + constexpr std::ptrdiff_t m_vCPRelativeDir = 0x9c; + constexpr std::ptrdiff_t m_FloatComponentX = 0xa8; + constexpr std::ptrdiff_t m_FloatComponentY = 0x200; + constexpr std::ptrdiff_t m_FloatComponentZ = 0x358; + constexpr std::ptrdiff_t m_FloatInterp = 0x4b0; + constexpr std::ptrdiff_t m_flInterpInput0 = 0x608; + constexpr std::ptrdiff_t m_flInterpInput1 = 0x60c; + constexpr std::ptrdiff_t m_vInterpOutput0 = 0x610; + constexpr std::ptrdiff_t m_vInterpOutput1 = 0x61c; + constexpr std::ptrdiff_t m_Gradient = 0x628; + constexpr std::ptrdiff_t m_vRandomMin = 0x640; + constexpr std::ptrdiff_t m_vRandomMax = 0x64c; +} + +namespace CPerParticleVecInput { +} + +namespace CParticleCollectionVecInput { +} + +namespace CParticleCollectionRendererVecInput { +} + +namespace PARTICLE_EHANDLE__ { + constexpr std::ptrdiff_t unused = 0x0; +} + +namespace PARTICLE_WORLD_HANDLE__ { + constexpr std::ptrdiff_t unused = 0x0; +} + +namespace IParticleEffect { +} + +namespace CParticleCollectionBindingInstance { +} + +namespace CParticleBindingRealPulse { +} + +namespace ParticleNamedValueConfiguration_t { + constexpr std::ptrdiff_t m_ConfigName = 0x0; + constexpr std::ptrdiff_t m_ConfigValue = 0x8; + constexpr std::ptrdiff_t m_iAttachType = 0x18; + constexpr std::ptrdiff_t m_BoundEntityPath = 0x20; + constexpr std::ptrdiff_t m_strEntityScope = 0x28; + constexpr std::ptrdiff_t m_strAttachmentName = 0x30; +} + +namespace ParticleNamedValueSource_t { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_IsPublic = 0x8; + constexpr std::ptrdiff_t m_ValueType = 0xc; + constexpr std::ptrdiff_t m_DefaultConfig = 0x10; + constexpr std::ptrdiff_t m_NamedConfigs = 0x48; +} + +namespace CParticleVariableRef { + constexpr std::ptrdiff_t m_variableName = 0x0; + constexpr std::ptrdiff_t m_variableType = 0x38; +} + +namespace CParticleProperty { +} + +namespace CNewParticleEffect { + constexpr std::ptrdiff_t m_pNext = 0x10; + constexpr std::ptrdiff_t m_pPrev = 0x18; + constexpr std::ptrdiff_t m_pParticles = 0x20; + constexpr std::ptrdiff_t m_pDebugName = 0x28; + constexpr std::ptrdiff_t m_bDontRemove = 0x0; + constexpr std::ptrdiff_t m_bRemove = 0x0; + constexpr std::ptrdiff_t m_bNeedsBBoxUpdate = 0x0; + constexpr std::ptrdiff_t m_bIsFirstFrame = 0x0; + constexpr std::ptrdiff_t m_bAutoUpdateBBox = 0x0; + constexpr std::ptrdiff_t m_bAllocated = 0x0; + constexpr std::ptrdiff_t m_bSimulate = 0x0; + constexpr std::ptrdiff_t m_bShouldPerformCullCheck = 0x0; + constexpr std::ptrdiff_t m_bForceNoDraw = 0x0; + constexpr std::ptrdiff_t m_bShouldSave = 0x0; + constexpr std::ptrdiff_t m_bDisableAggregation = 0x0; + constexpr std::ptrdiff_t m_bShouldSimulateDuringGamePaused = 0x0; + constexpr std::ptrdiff_t m_bShouldCheckFoW = 0x0; + constexpr std::ptrdiff_t m_vSortOrigin = 0x40; + constexpr std::ptrdiff_t m_flScale = 0x4c; + constexpr std::ptrdiff_t m_hOwner = 0x50; + constexpr std::ptrdiff_t m_pOwningParticleProperty = 0x58; + constexpr std::ptrdiff_t m_flFreezeTransitionStart = 0x70; + constexpr std::ptrdiff_t m_flFreezeTransitionDuration = 0x74; + constexpr std::ptrdiff_t m_flFreezeTransitionOverride = 0x78; + constexpr std::ptrdiff_t m_bFreezeTransitionActive = 0x7c; + constexpr std::ptrdiff_t m_bFreezeTargetState = 0x7d; + constexpr std::ptrdiff_t m_bCanFreeze = 0x7e; + constexpr std::ptrdiff_t m_LastMin = 0x80; + constexpr std::ptrdiff_t m_LastMax = 0x8c; + constexpr std::ptrdiff_t m_nSplitScreenUser = 0x98; + constexpr std::ptrdiff_t m_vecAggregationCenter = 0x9c; + constexpr std::ptrdiff_t m_RefCount = 0xc0; +} + +namespace C_OP_ConstrainDistance { + constexpr std::ptrdiff_t m_fMinDistance = 0x1c0; + constexpr std::ptrdiff_t m_fMaxDistance = 0x318; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x470; + constexpr std::ptrdiff_t m_CenterOffset = 0x474; + constexpr std::ptrdiff_t m_bGlobalCenter = 0x480; +} + +namespace C_OP_CollideWithSelf { + constexpr std::ptrdiff_t m_flRadiusScale = 0x1c0; + constexpr std::ptrdiff_t m_flMinimumSpeed = 0x318; +} + +namespace C_OP_CollideWithParentParticles { + constexpr std::ptrdiff_t m_flParentRadiusScale = 0x1c0; + constexpr std::ptrdiff_t m_flRadiusScale = 0x318; +} + +namespace C_OP_ConstrainDistanceToPath { + constexpr std::ptrdiff_t m_fMinDistance = 0x1c0; + constexpr std::ptrdiff_t m_flMaxDistance0 = 0x1c4; + constexpr std::ptrdiff_t m_flMaxDistanceMid = 0x1c8; + constexpr std::ptrdiff_t m_flMaxDistance1 = 0x1cc; + constexpr std::ptrdiff_t m_PathParameters = 0x1d0; + constexpr std::ptrdiff_t m_flTravelTime = 0x210; + constexpr std::ptrdiff_t m_nFieldScale = 0x214; + constexpr std::ptrdiff_t m_nManualTField = 0x218; +} + +namespace C_OP_ConstrainDistanceToUserSpecifiedPath { + constexpr std::ptrdiff_t m_fMinDistance = 0x1c0; + constexpr std::ptrdiff_t m_flMaxDistance = 0x1c4; + constexpr std::ptrdiff_t m_flTimeScale = 0x1c8; + constexpr std::ptrdiff_t m_bLoopedPath = 0x1cc; + constexpr std::ptrdiff_t m_pointList = 0x1d0; +} + +namespace C_OP_PlanarConstraint { + constexpr std::ptrdiff_t m_PointOnPlane = 0x1c0; + constexpr std::ptrdiff_t m_PlaneNormal = 0x1cc; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1d8; + constexpr std::ptrdiff_t m_bGlobalOrigin = 0x1dc; + constexpr std::ptrdiff_t m_bGlobalNormal = 0x1dd; + constexpr std::ptrdiff_t m_flRadiusScale = 0x1e0; + constexpr std::ptrdiff_t m_flMaximumDistanceToCP = 0x338; +} + +namespace C_OP_WorldCollideConstraint { +} + +namespace C_OP_WorldTraceConstraint { + constexpr std::ptrdiff_t m_nCP = 0x1c0; + constexpr std::ptrdiff_t m_vecCpOffset = 0x1c4; + constexpr std::ptrdiff_t m_nCollisionMode = 0x1d0; + constexpr std::ptrdiff_t m_nCollisionModeMin = 0x1d4; + constexpr std::ptrdiff_t m_nTraceSet = 0x1d8; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x1dc; + constexpr std::ptrdiff_t m_bWorldOnly = 0x25c; + constexpr std::ptrdiff_t m_bBrushOnly = 0x25d; + constexpr std::ptrdiff_t m_bIncludeWater = 0x25e; + constexpr std::ptrdiff_t m_nIgnoreCP = 0x260; + constexpr std::ptrdiff_t m_flCpMovementTolerance = 0x264; + constexpr std::ptrdiff_t m_flRetestRate = 0x268; + constexpr std::ptrdiff_t m_flTraceTolerance = 0x26c; + constexpr std::ptrdiff_t m_flCollisionConfirmationSpeed = 0x270; + constexpr std::ptrdiff_t m_nMaxTracesPerFrame = 0x274; + constexpr std::ptrdiff_t m_flRadiusScale = 0x278; + constexpr std::ptrdiff_t m_flBounceAmount = 0x3d0; + constexpr std::ptrdiff_t m_flSlideAmount = 0x528; + constexpr std::ptrdiff_t m_flRandomDirScale = 0x680; + constexpr std::ptrdiff_t m_bDecayBounce = 0x7d8; + constexpr std::ptrdiff_t m_bKillonContact = 0x7d9; + constexpr std::ptrdiff_t m_flMinSpeed = 0x7dc; + constexpr std::ptrdiff_t m_bSetNormal = 0x7e0; + constexpr std::ptrdiff_t m_nStickOnCollisionField = 0x7e4; + constexpr std::ptrdiff_t m_flStopSpeed = 0x7e8; + constexpr std::ptrdiff_t m_nEntityStickDataField = 0x940; + constexpr std::ptrdiff_t m_nEntityStickNormalField = 0x944; +} + +namespace C_OP_BoxConstraint { + constexpr std::ptrdiff_t m_vecMin = 0x1c0; + constexpr std::ptrdiff_t m_vecMax = 0x818; + constexpr std::ptrdiff_t m_nCP = 0xe70; + constexpr std::ptrdiff_t m_bLocalSpace = 0xe74; + constexpr std::ptrdiff_t m_bAccountForRadius = 0xe75; +} + +namespace C_OP_RopeSpringConstraint { + constexpr std::ptrdiff_t m_flRestLength = 0x1c0; + constexpr std::ptrdiff_t m_flMinDistance = 0x318; + constexpr std::ptrdiff_t m_flMaxDistance = 0x470; + constexpr std::ptrdiff_t m_flAdjustmentScale = 0x5c8; + constexpr std::ptrdiff_t m_flInitialRestingLength = 0x5d0; +} + +namespace C_OP_SpringToVectorConstraint { + constexpr std::ptrdiff_t m_flRestLength = 0x1c0; + constexpr std::ptrdiff_t m_flMinDistance = 0x318; + constexpr std::ptrdiff_t m_flMaxDistance = 0x470; + constexpr std::ptrdiff_t m_flRestingLength = 0x5c8; + constexpr std::ptrdiff_t m_vecAnchorVector = 0x720; +} + +namespace C_OP_ConstrainLineLength { + constexpr std::ptrdiff_t m_flMinDistance = 0x1c0; + constexpr std::ptrdiff_t m_flMaxDistance = 0x1c4; +} + +namespace C_INIT_RingWave { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_flParticlesPerOrbit = 0x228; + constexpr std::ptrdiff_t m_flInitialRadius = 0x380; + constexpr std::ptrdiff_t m_flThickness = 0x4d8; + constexpr std::ptrdiff_t m_flInitialSpeedMin = 0x630; + constexpr std::ptrdiff_t m_flInitialSpeedMax = 0x788; + constexpr std::ptrdiff_t m_flRoll = 0x8e0; + constexpr std::ptrdiff_t m_flPitch = 0xa38; + constexpr std::ptrdiff_t m_flYaw = 0xb90; + constexpr std::ptrdiff_t m_bEvenDistribution = 0xce8; + constexpr std::ptrdiff_t m_bXYVelocityOnly = 0xce9; +} + +namespace C_INIT_CreateSpiralSphere { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nOverrideCP = 0x1c4; + constexpr std::ptrdiff_t m_nDensity = 0x1c8; + constexpr std::ptrdiff_t m_flInitialRadius = 0x1cc; + constexpr std::ptrdiff_t m_flInitialSpeedMin = 0x1d0; + constexpr std::ptrdiff_t m_flInitialSpeedMax = 0x1d4; + constexpr std::ptrdiff_t m_bUseParticleCount = 0x1d8; +} + +namespace C_INIT_CreateInEpitrochoid { + constexpr std::ptrdiff_t m_nComponent1 = 0x1c0; + constexpr std::ptrdiff_t m_nComponent2 = 0x1c4; + constexpr std::ptrdiff_t m_TransformInput = 0x1c8; + constexpr std::ptrdiff_t m_flParticleDensity = 0x230; + constexpr std::ptrdiff_t m_flOffset = 0x388; + constexpr std::ptrdiff_t m_flRadius1 = 0x4e0; + constexpr std::ptrdiff_t m_flRadius2 = 0x638; + constexpr std::ptrdiff_t m_bUseCount = 0x790; + constexpr std::ptrdiff_t m_bUseLocalCoords = 0x791; + constexpr std::ptrdiff_t m_bOffsetExistingPos = 0x792; +} + +namespace C_INIT_CreatePhyllotaxis { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nScaleCP = 0x1c4; + constexpr std::ptrdiff_t m_nComponent = 0x1c8; + constexpr std::ptrdiff_t m_fRadCentCore = 0x1cc; + constexpr std::ptrdiff_t m_fRadPerPoint = 0x1d0; + constexpr std::ptrdiff_t m_fRadPerPointTo = 0x1d4; + constexpr std::ptrdiff_t m_fpointAngle = 0x1d8; + constexpr std::ptrdiff_t m_fsizeOverall = 0x1dc; + constexpr std::ptrdiff_t m_fRadBias = 0x1e0; + constexpr std::ptrdiff_t m_fMinRad = 0x1e4; + constexpr std::ptrdiff_t m_fDistBias = 0x1e8; + constexpr std::ptrdiff_t m_bUseLocalCoords = 0x1ec; + constexpr std::ptrdiff_t m_bUseWithContEmit = 0x1ed; + constexpr std::ptrdiff_t m_bUseOrigRadius = 0x1ee; +} + +namespace C_INIT_CreateOnModel { + constexpr std::ptrdiff_t m_modelInput = 0x1c0; + constexpr std::ptrdiff_t m_transformInput = 0x220; + constexpr std::ptrdiff_t m_nForceInModel = 0x288; + constexpr std::ptrdiff_t m_nDesiredHitbox = 0x28c; + constexpr std::ptrdiff_t m_nHitboxValueFromControlPointIndex = 0x290; + constexpr std::ptrdiff_t m_vecHitBoxScale = 0x298; + constexpr std::ptrdiff_t m_flBoneVelocity = 0x8f0; + constexpr std::ptrdiff_t m_flMaxBoneVelocity = 0x8f4; + constexpr std::ptrdiff_t m_vecDirectionBias = 0x8f8; + constexpr std::ptrdiff_t m_HitboxSetName = 0xf50; + constexpr std::ptrdiff_t m_bLocalCoords = 0xfd0; + constexpr std::ptrdiff_t m_bUseBones = 0xfd1; + constexpr std::ptrdiff_t m_flShellSize = 0xfd8; +} + +namespace C_INIT_CreateOnModelAtHeight { + constexpr std::ptrdiff_t m_bUseBones = 0x1c0; + constexpr std::ptrdiff_t m_bForceZ = 0x1c1; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_nHeightCP = 0x1c8; + constexpr std::ptrdiff_t m_bUseWaterHeight = 0x1cc; + constexpr std::ptrdiff_t m_flDesiredHeight = 0x1d0; + constexpr std::ptrdiff_t m_vecHitBoxScale = 0x328; + constexpr std::ptrdiff_t m_vecDirectionBias = 0x980; + constexpr std::ptrdiff_t m_nBiasType = 0xfd8; + constexpr std::ptrdiff_t m_bLocalCoords = 0xfdc; + constexpr std::ptrdiff_t m_bPreferMovingBoxes = 0xfdd; + constexpr std::ptrdiff_t m_HitboxSetName = 0xfde; + constexpr std::ptrdiff_t m_flHitboxVelocityScale = 0x1060; + constexpr std::ptrdiff_t m_flMaxBoneVelocity = 0x11b8; +} + +namespace C_INIT_SetHitboxToClosest { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nDesiredHitbox = 0x1c4; + constexpr std::ptrdiff_t m_vecHitBoxScale = 0x1c8; + constexpr std::ptrdiff_t m_HitboxSetName = 0x820; + constexpr std::ptrdiff_t m_bUseBones = 0x8a0; + constexpr std::ptrdiff_t m_bUseClosestPointOnHitbox = 0x8a1; + constexpr std::ptrdiff_t m_nTestType = 0x8a4; + constexpr std::ptrdiff_t m_flHybridRatio = 0x8a8; + constexpr std::ptrdiff_t m_bUpdatePosition = 0xa00; +} + +namespace C_INIT_SetHitboxToModel { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nForceInModel = 0x1c4; + constexpr std::ptrdiff_t m_nDesiredHitbox = 0x1c8; + constexpr std::ptrdiff_t m_vecHitBoxScale = 0x1d0; + constexpr std::ptrdiff_t m_vecDirectionBias = 0x828; + constexpr std::ptrdiff_t m_bMaintainHitbox = 0x834; + constexpr std::ptrdiff_t m_bUseBones = 0x835; + constexpr std::ptrdiff_t m_HitboxSetName = 0x836; + constexpr std::ptrdiff_t m_flShellSize = 0x8b8; +} + +namespace C_INIT_CreateWithinSphereTransform { + constexpr std::ptrdiff_t m_fRadiusMin = 0x1c0; + constexpr std::ptrdiff_t m_fRadiusMax = 0x318; + constexpr std::ptrdiff_t m_vecDistanceBias = 0x470; + constexpr std::ptrdiff_t m_vecDistanceBiasAbs = 0xac8; + constexpr std::ptrdiff_t m_TransformInput = 0xad8; + constexpr std::ptrdiff_t m_fSpeedMin = 0xb40; + constexpr std::ptrdiff_t m_fSpeedMax = 0xc98; + constexpr std::ptrdiff_t m_fSpeedRandExp = 0xdf0; + constexpr std::ptrdiff_t m_bLocalCoords = 0xdf4; + constexpr std::ptrdiff_t m_flEndCPGrowthTime = 0xdf8; + constexpr std::ptrdiff_t m_LocalCoordinateSystemSpeedMin = 0xe00; + constexpr std::ptrdiff_t m_LocalCoordinateSystemSpeedMax = 0x1458; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1ab0; + constexpr std::ptrdiff_t m_nFieldVelocity = 0x1ab4; +} + +namespace C_INIT_CreateWithinBox { + constexpr std::ptrdiff_t m_vecMin = 0x1c0; + constexpr std::ptrdiff_t m_vecMax = 0x818; + constexpr std::ptrdiff_t m_nControlPointNumber = 0xe70; + constexpr std::ptrdiff_t m_bLocalSpace = 0xe74; + constexpr std::ptrdiff_t m_randomnessParameters = 0xe78; +} + +namespace C_INIT_CreateOnGrid { + constexpr std::ptrdiff_t m_nXCount = 0x1c0; + constexpr std::ptrdiff_t m_nYCount = 0x318; + constexpr std::ptrdiff_t m_nZCount = 0x470; + constexpr std::ptrdiff_t m_nXSpacing = 0x5c8; + constexpr std::ptrdiff_t m_nYSpacing = 0x720; + constexpr std::ptrdiff_t m_nZSpacing = 0x878; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x9d0; + constexpr std::ptrdiff_t m_bLocalSpace = 0x9d4; + constexpr std::ptrdiff_t m_bCenter = 0x9d5; + constexpr std::ptrdiff_t m_bHollow = 0x9d6; +} + +namespace C_INIT_PositionOffset { + constexpr std::ptrdiff_t m_OffsetMin = 0x1c0; + constexpr std::ptrdiff_t m_OffsetMax = 0x818; + constexpr std::ptrdiff_t m_TransformInput = 0xe70; + constexpr std::ptrdiff_t m_bLocalCoords = 0xed8; + constexpr std::ptrdiff_t m_bProportional = 0xed9; + constexpr std::ptrdiff_t m_randomnessParameters = 0xedc; +} + +namespace C_INIT_PositionOffsetToCP { + constexpr std::ptrdiff_t m_nControlPointNumberStart = 0x1c0; + constexpr std::ptrdiff_t m_nControlPointNumberEnd = 0x1c4; + constexpr std::ptrdiff_t m_bLocalCoords = 0x1c8; +} + +namespace C_INIT_PositionPlaceOnGround { + constexpr std::ptrdiff_t m_flOffset = 0x1c0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x318; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x470; + constexpr std::ptrdiff_t m_nTraceSet = 0x4f0; + constexpr std::ptrdiff_t m_nTraceMissBehavior = 0x500; + constexpr std::ptrdiff_t m_bIncludeWater = 0x504; + constexpr std::ptrdiff_t m_bSetNormal = 0x505; + constexpr std::ptrdiff_t m_bSetPXYZOnly = 0x506; + constexpr std::ptrdiff_t m_bTraceAlongNormal = 0x507; + constexpr std::ptrdiff_t m_bOffsetonColOnly = 0x508; + constexpr std::ptrdiff_t m_flOffsetByRadiusFactor = 0x50c; + constexpr std::ptrdiff_t m_nPreserveOffsetCP = 0x510; + constexpr std::ptrdiff_t m_nIgnoreCP = 0x514; +} + +namespace C_INIT_VelocityFromNormal { + constexpr std::ptrdiff_t m_fSpeedMin = 0x1c0; + constexpr std::ptrdiff_t m_fSpeedMax = 0x1c4; + constexpr std::ptrdiff_t m_bIgnoreDt = 0x1c8; +} + +namespace C_INIT_VelocityRandom { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_fSpeedMin = 0x1c8; + constexpr std::ptrdiff_t m_fSpeedMax = 0x320; + constexpr std::ptrdiff_t m_LocalCoordinateSystemSpeedMin = 0x478; + constexpr std::ptrdiff_t m_LocalCoordinateSystemSpeedMax = 0xad0; + constexpr std::ptrdiff_t m_bIgnoreDT = 0x1128; + constexpr std::ptrdiff_t m_randomnessParameters = 0x112c; +} + +namespace C_INIT_InitialVelocityNoise { + constexpr std::ptrdiff_t m_vecAbsVal = 0x1c0; + constexpr std::ptrdiff_t m_vecAbsValInv = 0x1cc; + constexpr std::ptrdiff_t m_vecOffsetLoc = 0x1d8; + constexpr std::ptrdiff_t m_flOffset = 0x830; + constexpr std::ptrdiff_t m_vecOutputMin = 0x988; + constexpr std::ptrdiff_t m_vecOutputMax = 0xfe0; + constexpr std::ptrdiff_t m_flNoiseScale = 0x1638; + constexpr std::ptrdiff_t m_flNoiseScaleLoc = 0x1790; + constexpr std::ptrdiff_t m_TransformInput = 0x18e8; + constexpr std::ptrdiff_t m_bIgnoreDt = 0x1950; +} + +namespace C_INIT_InitialVelocityFromHitbox { + constexpr std::ptrdiff_t m_flVelocityMin = 0x1c0; + constexpr std::ptrdiff_t m_flVelocityMax = 0x1c4; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c8; + constexpr std::ptrdiff_t m_HitboxSetName = 0x1cc; + constexpr std::ptrdiff_t m_bUseBones = 0x24c; +} + +namespace C_INIT_VelocityRadialRandom { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_fSpeedMin = 0x1c4; + constexpr std::ptrdiff_t m_fSpeedMax = 0x1c8; + constexpr std::ptrdiff_t m_vecLocalCoordinateSystemSpeedScale = 0x1cc; + constexpr std::ptrdiff_t m_bIgnoreDelta = 0x1d9; +} + +namespace C_INIT_RandomLifeTime { + constexpr std::ptrdiff_t m_fLifetimeMin = 0x1c0; + constexpr std::ptrdiff_t m_fLifetimeMax = 0x1c4; + constexpr std::ptrdiff_t m_fLifetimeRandExponent = 0x1c8; +} + +namespace C_INIT_RandomScalar { + constexpr std::ptrdiff_t m_flMin = 0x1c0; + constexpr std::ptrdiff_t m_flMax = 0x1c4; + constexpr std::ptrdiff_t m_flExponent = 0x1c8; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1cc; +} + +namespace C_INIT_RandomVector { + constexpr std::ptrdiff_t m_vecMin = 0x1c0; + constexpr std::ptrdiff_t m_vecMax = 0x1cc; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1d8; + constexpr std::ptrdiff_t m_randomnessParameters = 0x1dc; +} + +namespace C_INIT_RandomVectorComponent { + constexpr std::ptrdiff_t m_flMin = 0x1c0; + constexpr std::ptrdiff_t m_flMax = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c8; + constexpr std::ptrdiff_t m_nComponent = 0x1cc; +} + +namespace C_INIT_AddVectorToVector { + constexpr std::ptrdiff_t m_vecScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1cc; + constexpr std::ptrdiff_t m_nFieldInput = 0x1d0; + constexpr std::ptrdiff_t m_vOffsetMin = 0x1d4; + constexpr std::ptrdiff_t m_vOffsetMax = 0x1e0; + constexpr std::ptrdiff_t m_randomnessParameters = 0x1ec; +} + +namespace C_INIT_RandomAlphaWindowThreshold { + constexpr std::ptrdiff_t m_flMin = 0x1c0; + constexpr std::ptrdiff_t m_flMax = 0x1c4; + constexpr std::ptrdiff_t m_flExponent = 0x1c8; +} + +namespace C_INIT_RandomRadius { + constexpr std::ptrdiff_t m_flRadiusMin = 0x1c0; + constexpr std::ptrdiff_t m_flRadiusMax = 0x1c4; + constexpr std::ptrdiff_t m_flRadiusRandExponent = 0x1c8; +} + +namespace C_INIT_RandomAlpha { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nAlphaMin = 0x1c4; + constexpr std::ptrdiff_t m_nAlphaMax = 0x1c8; + constexpr std::ptrdiff_t m_flAlphaRandExponent = 0x1d4; +} + +namespace CGeneralRandomRotation { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flDegrees = 0x1c4; + constexpr std::ptrdiff_t m_flDegreesMin = 0x1c8; + constexpr std::ptrdiff_t m_flDegreesMax = 0x1cc; + constexpr std::ptrdiff_t m_flRotationRandExponent = 0x1d0; + constexpr std::ptrdiff_t m_bRandomlyFlipDirection = 0x1d4; +} + +namespace C_INIT_RandomRotation { +} + +namespace C_INIT_Orient2DRelToCP { + constexpr std::ptrdiff_t m_nCP = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flRotOffset = 0x1c8; +} + +namespace C_INIT_RandomRotationSpeed { +} + +namespace C_INIT_RandomYaw { +} + +namespace C_INIT_RandomColor { + constexpr std::ptrdiff_t m_ColorMin = 0x1dc; + constexpr std::ptrdiff_t m_ColorMax = 0x1e0; + constexpr std::ptrdiff_t m_TintMin = 0x1e4; + constexpr std::ptrdiff_t m_TintMax = 0x1e8; + constexpr std::ptrdiff_t m_flTintPerc = 0x1ec; + constexpr std::ptrdiff_t m_flUpdateThreshold = 0x1f0; + constexpr std::ptrdiff_t m_nTintCP = 0x1f4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1f8; + constexpr std::ptrdiff_t m_nTintBlendMode = 0x1fc; + constexpr std::ptrdiff_t m_flLightAmplification = 0x200; +} + +namespace C_INIT_ColorLitPerParticle { + constexpr std::ptrdiff_t m_ColorMin = 0x1d8; + constexpr std::ptrdiff_t m_ColorMax = 0x1dc; + constexpr std::ptrdiff_t m_TintMin = 0x1e0; + constexpr std::ptrdiff_t m_TintMax = 0x1e4; + constexpr std::ptrdiff_t m_flTintPerc = 0x1e8; + constexpr std::ptrdiff_t m_nTintBlendMode = 0x1ec; + constexpr std::ptrdiff_t m_flLightAmplification = 0x1f0; +} + +namespace C_INIT_RandomTrailLength { + constexpr std::ptrdiff_t m_flMinLength = 0x1c0; + constexpr std::ptrdiff_t m_flMaxLength = 0x1c4; + constexpr std::ptrdiff_t m_flLengthRandExponent = 0x1c8; +} + +namespace C_INIT_RandomSequence { + constexpr std::ptrdiff_t m_nSequenceMin = 0x1c0; + constexpr std::ptrdiff_t m_nSequenceMax = 0x1c4; + constexpr std::ptrdiff_t m_bShuffle = 0x1c8; + constexpr std::ptrdiff_t m_bLinear = 0x1c9; + constexpr std::ptrdiff_t m_WeightedList = 0x1d0; +} + +namespace C_INIT_SequenceFromCP { + constexpr std::ptrdiff_t m_bKillUnused = 0x1c0; + constexpr std::ptrdiff_t m_bRadiusScale = 0x1c1; + constexpr std::ptrdiff_t m_nCP = 0x1c4; + constexpr std::ptrdiff_t m_vecOffset = 0x1c8; +} + +namespace C_INIT_RandomModelSequence { + constexpr std::ptrdiff_t m_ActivityName = 0x1c0; + constexpr std::ptrdiff_t m_SequenceName = 0x2c0; + constexpr std::ptrdiff_t m_hModel = 0x3c0; +} + +namespace C_INIT_ScaleVelocity { + constexpr std::ptrdiff_t m_vecScale = 0x1c0; +} + +namespace C_INIT_PositionWarp { + constexpr std::ptrdiff_t m_vecWarpMin = 0x1c0; + constexpr std::ptrdiff_t m_vecWarpMax = 0x818; + constexpr std::ptrdiff_t m_nScaleControlPointNumber = 0xe70; + constexpr std::ptrdiff_t m_nControlPointNumber = 0xe74; + constexpr std::ptrdiff_t m_nRadiusComponent = 0xe78; + constexpr std::ptrdiff_t m_flWarpTime = 0xe7c; + constexpr std::ptrdiff_t m_flWarpStartTime = 0xe80; + constexpr std::ptrdiff_t m_flPrevPosScale = 0xe84; + constexpr std::ptrdiff_t m_bInvertWarp = 0xe88; + constexpr std::ptrdiff_t m_bUseCount = 0xe89; +} + +namespace C_INIT_PositionWarpScalar { + constexpr std::ptrdiff_t m_vecWarpMin = 0x1c0; + constexpr std::ptrdiff_t m_vecWarpMax = 0x1cc; + constexpr std::ptrdiff_t m_InputValue = 0x1d8; + constexpr std::ptrdiff_t m_flPrevPosScale = 0x330; + constexpr std::ptrdiff_t m_nScaleControlPointNumber = 0x334; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x338; +} + +namespace C_INIT_CreationNoise { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_bAbsVal = 0x1c4; + constexpr std::ptrdiff_t m_bAbsValInv = 0x1c5; + constexpr std::ptrdiff_t m_flOffset = 0x1c8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d0; + constexpr std::ptrdiff_t m_flNoiseScale = 0x1d4; + constexpr std::ptrdiff_t m_flNoiseScaleLoc = 0x1d8; + constexpr std::ptrdiff_t m_vecOffsetLoc = 0x1dc; + constexpr std::ptrdiff_t m_flWorldTimeScale = 0x1e8; +} + +namespace C_INIT_CreateAlongPath { + constexpr std::ptrdiff_t m_fMaxDistance = 0x1c0; + constexpr std::ptrdiff_t m_PathParams = 0x1d0; + constexpr std::ptrdiff_t m_bUseRandomCPs = 0x210; + constexpr std::ptrdiff_t m_vEndOffset = 0x214; + constexpr std::ptrdiff_t m_bSaveOffset = 0x220; +} + +namespace C_INIT_MoveBetweenPoints { + constexpr std::ptrdiff_t m_flSpeedMin = 0x1c0; + constexpr std::ptrdiff_t m_flSpeedMax = 0x318; + constexpr std::ptrdiff_t m_flEndSpread = 0x470; + constexpr std::ptrdiff_t m_flStartOffset = 0x5c8; + constexpr std::ptrdiff_t m_flEndOffset = 0x720; + constexpr std::ptrdiff_t m_nEndControlPointNumber = 0x878; + constexpr std::ptrdiff_t m_bTrailBias = 0x87c; +} + +namespace C_INIT_RemapScalar { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; + constexpr std::ptrdiff_t m_flStartTime = 0x1d8; + constexpr std::ptrdiff_t m_flEndTime = 0x1dc; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e0; + constexpr std::ptrdiff_t m_bActiveRange = 0x1e4; + constexpr std::ptrdiff_t m_flRemapBias = 0x1e8; +} + +namespace C_INIT_RemapParticleCountToScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nInputMin = 0x1c4; + constexpr std::ptrdiff_t m_nInputMax = 0x1c8; + constexpr std::ptrdiff_t m_nScaleControlPoint = 0x1cc; + constexpr std::ptrdiff_t m_nScaleControlPointField = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_nSetMethod = 0x1dc; + constexpr std::ptrdiff_t m_bActiveRange = 0x1e0; + constexpr std::ptrdiff_t m_bInvert = 0x1e1; + constexpr std::ptrdiff_t m_bWrap = 0x1e2; + constexpr std::ptrdiff_t m_flRemapBias = 0x1e4; +} + +namespace C_INIT_RemapParticleCountToNamedModelElementScalar { + constexpr std::ptrdiff_t m_hModel = 0x1f0; + constexpr std::ptrdiff_t m_outputMinName = 0x1f8; + constexpr std::ptrdiff_t m_outputMaxName = 0x200; + constexpr std::ptrdiff_t m_bModelFromRenderer = 0x208; +} + +namespace C_INIT_RemapParticleCountToNamedModelSequenceScalar { +} + +namespace C_INIT_RemapParticleCountToNamedModelBodyPartScalar { +} + +namespace C_INIT_RemapParticleCountToNamedModelMeshGroupScalar { +} + +namespace C_INIT_InheritVelocity { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_flVelocityScale = 0x1c4; +} + +namespace C_INIT_VelocityFromCP { + constexpr std::ptrdiff_t m_velocityInput = 0x1c0; + constexpr std::ptrdiff_t m_transformInput = 0x818; + constexpr std::ptrdiff_t m_flVelocityScale = 0x880; + constexpr std::ptrdiff_t m_bDirectionOnly = 0x884; +} + +namespace C_INIT_AgeNoise { + constexpr std::ptrdiff_t m_bAbsVal = 0x1c0; + constexpr std::ptrdiff_t m_bAbsValInv = 0x1c1; + constexpr std::ptrdiff_t m_flOffset = 0x1c4; + constexpr std::ptrdiff_t m_flAgeMin = 0x1c8; + constexpr std::ptrdiff_t m_flAgeMax = 0x1cc; + constexpr std::ptrdiff_t m_flNoiseScale = 0x1d0; + constexpr std::ptrdiff_t m_flNoiseScaleLoc = 0x1d4; + constexpr std::ptrdiff_t m_vecOffsetLoc = 0x1d8; +} + +namespace C_INIT_SequenceLifeTime { + constexpr std::ptrdiff_t m_flFramerate = 0x1c0; +} + +namespace C_INIT_RemapScalarToVector { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_vecOutputMax = 0x1dc; + constexpr std::ptrdiff_t m_flStartTime = 0x1e8; + constexpr std::ptrdiff_t m_flEndTime = 0x1ec; + constexpr std::ptrdiff_t m_nSetMethod = 0x1f0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1f4; + constexpr std::ptrdiff_t m_bLocalCoords = 0x1f8; + constexpr std::ptrdiff_t m_flRemapBias = 0x1fc; +} + +namespace C_INIT_OffsetVectorToVector { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1c8; + constexpr std::ptrdiff_t m_vecOutputMax = 0x1d4; + constexpr std::ptrdiff_t m_randomnessParameters = 0x1e0; +} + +namespace C_INIT_CreateSequentialPathV2 { + constexpr std::ptrdiff_t m_fMaxDistance = 0x1c0; + constexpr std::ptrdiff_t m_flNumToAssign = 0x318; + constexpr std::ptrdiff_t m_bLoop = 0x470; + constexpr std::ptrdiff_t m_bCPPairs = 0x471; + constexpr std::ptrdiff_t m_bSaveOffset = 0x472; + constexpr std::ptrdiff_t m_PathParams = 0x480; +} + +namespace C_INIT_CreateSequentialPath { + constexpr std::ptrdiff_t m_fMaxDistance = 0x1c0; + constexpr std::ptrdiff_t m_flNumToAssign = 0x1c4; + constexpr std::ptrdiff_t m_bLoop = 0x1c8; + constexpr std::ptrdiff_t m_bCPPairs = 0x1c9; + constexpr std::ptrdiff_t m_bSaveOffset = 0x1ca; + constexpr std::ptrdiff_t m_PathParams = 0x1d0; +} + +namespace C_INIT_InitialRepulsionVelocity { + constexpr std::ptrdiff_t m_CollisionGroupName = 0x1c0; + constexpr std::ptrdiff_t m_nTraceSet = 0x240; + constexpr std::ptrdiff_t m_vecOutputMin = 0x244; + constexpr std::ptrdiff_t m_vecOutputMax = 0x250; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x25c; + constexpr std::ptrdiff_t m_bPerParticle = 0x260; + constexpr std::ptrdiff_t m_bTranslate = 0x261; + constexpr std::ptrdiff_t m_bProportional = 0x262; + constexpr std::ptrdiff_t m_flTraceLength = 0x264; + constexpr std::ptrdiff_t m_bPerParticleTR = 0x268; + constexpr std::ptrdiff_t m_bInherit = 0x269; + constexpr std::ptrdiff_t m_nChildCP = 0x26c; + constexpr std::ptrdiff_t m_nChildGroupID = 0x270; +} + +namespace C_INIT_RandomYawFlip { + constexpr std::ptrdiff_t m_flPercent = 0x1c0; +} + +namespace C_INIT_RandomSecondSequence { + constexpr std::ptrdiff_t m_nSequenceMin = 0x1c0; + constexpr std::ptrdiff_t m_nSequenceMax = 0x1c4; +} + +namespace C_INIT_RemapCPtoScalar { + constexpr std::ptrdiff_t m_nCPInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nField = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_flStartTime = 0x1dc; + constexpr std::ptrdiff_t m_flEndTime = 0x1e0; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e4; + constexpr std::ptrdiff_t m_flRemapBias = 0x1e8; +} + +namespace C_INIT_RemapTransformToVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vInputMin = 0x1c4; + constexpr std::ptrdiff_t m_vInputMax = 0x1d0; + constexpr std::ptrdiff_t m_vOutputMin = 0x1dc; + constexpr std::ptrdiff_t m_vOutputMax = 0x1e8; + constexpr std::ptrdiff_t m_TransformInput = 0x1f8; + constexpr std::ptrdiff_t m_LocalSpaceTransform = 0x260; + constexpr std::ptrdiff_t m_flStartTime = 0x2c8; + constexpr std::ptrdiff_t m_flEndTime = 0x2cc; + constexpr std::ptrdiff_t m_nSetMethod = 0x2d0; + constexpr std::ptrdiff_t m_bOffset = 0x2d4; + constexpr std::ptrdiff_t m_bAccelerate = 0x2d5; + constexpr std::ptrdiff_t m_flRemapBias = 0x2d8; +} + +namespace C_INIT_ChaoticAttractor { + constexpr std::ptrdiff_t m_flAParm = 0x1c0; + constexpr std::ptrdiff_t m_flBParm = 0x1c4; + constexpr std::ptrdiff_t m_flCParm = 0x1c8; + constexpr std::ptrdiff_t m_flDParm = 0x1cc; + constexpr std::ptrdiff_t m_flScale = 0x1d0; + constexpr std::ptrdiff_t m_flSpeedMin = 0x1d4; + constexpr std::ptrdiff_t m_flSpeedMax = 0x1d8; + constexpr std::ptrdiff_t m_nBaseCP = 0x1dc; + constexpr std::ptrdiff_t m_bUniformSpeed = 0x1e0; +} + +namespace C_INIT_CreateFromParentParticles { + constexpr std::ptrdiff_t m_flVelocityScale = 0x1c0; + constexpr std::ptrdiff_t m_flIncrement = 0x1c4; + constexpr std::ptrdiff_t m_bRandomDistribution = 0x1c8; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1cc; + constexpr std::ptrdiff_t m_bSubFrame = 0x1d0; +} + +namespace C_INIT_InheritFromParentParticles { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nIncrement = 0x1c8; + constexpr std::ptrdiff_t m_bRandomDistribution = 0x1cc; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1d0; +} + +namespace C_INIT_CreateFromCPs { + constexpr std::ptrdiff_t m_nIncrement = 0x1c0; + constexpr std::ptrdiff_t m_nMinCP = 0x1c4; + constexpr std::ptrdiff_t m_nMaxCP = 0x1c8; + constexpr std::ptrdiff_t m_nDynamicCPCount = 0x1d0; +} + +namespace C_INIT_DistanceToCPInit { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x320; + constexpr std::ptrdiff_t m_flOutputMin = 0x478; + constexpr std::ptrdiff_t m_flOutputMax = 0x5d0; + constexpr std::ptrdiff_t m_nStartCP = 0x728; + constexpr std::ptrdiff_t m_bLOS = 0x72c; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x72d; + constexpr std::ptrdiff_t m_nTraceSet = 0x7b0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x7b8; + constexpr std::ptrdiff_t m_flLOSScale = 0x910; + constexpr std::ptrdiff_t m_nSetMethod = 0x914; + constexpr std::ptrdiff_t m_bActiveRange = 0x918; + constexpr std::ptrdiff_t m_vecDistanceScale = 0x91c; + constexpr std::ptrdiff_t m_flRemapBias = 0x928; +} + +namespace C_INIT_LifespanFromVelocity { + constexpr std::ptrdiff_t m_vecComponentScale = 0x1c0; + constexpr std::ptrdiff_t m_flTraceOffset = 0x1cc; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x1d0; + constexpr std::ptrdiff_t m_flTraceTolerance = 0x1d4; + constexpr std::ptrdiff_t m_nMaxPlanes = 0x1d8; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x1e0; + constexpr std::ptrdiff_t m_nTraceSet = 0x260; + constexpr std::ptrdiff_t m_bIncludeWater = 0x270; +} + +namespace C_INIT_CreateFromPlaneCache { + constexpr std::ptrdiff_t m_vecOffsetMin = 0x1c0; + constexpr std::ptrdiff_t m_vecOffsetMax = 0x1cc; + constexpr std::ptrdiff_t m_bUseNormal = 0x1d9; +} + +namespace C_INIT_ModelCull { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_bBoundBox = 0x1c4; + constexpr std::ptrdiff_t m_bCullOutside = 0x1c5; + constexpr std::ptrdiff_t m_bUseBones = 0x1c6; + constexpr std::ptrdiff_t m_HitboxSetName = 0x1c7; +} + +namespace C_INIT_DistanceCull { + constexpr std::ptrdiff_t m_nControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_flDistance = 0x1c8; + constexpr std::ptrdiff_t m_bCullInside = 0x320; +} + +namespace C_INIT_PlaneCull { + constexpr std::ptrdiff_t m_nControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_flDistance = 0x1c8; + constexpr std::ptrdiff_t m_bCullInside = 0x320; +} + +namespace C_INIT_DistanceToNeighborCull { + constexpr std::ptrdiff_t m_flDistance = 0x1c0; +} + +namespace C_INIT_RtEnvCull { + constexpr std::ptrdiff_t m_vecTestDir = 0x1c0; + constexpr std::ptrdiff_t m_vecTestNormal = 0x1cc; + constexpr std::ptrdiff_t m_bUseVelocity = 0x1d8; + constexpr std::ptrdiff_t m_bCullOnMiss = 0x1d9; + constexpr std::ptrdiff_t m_bLifeAdjust = 0x1da; + constexpr std::ptrdiff_t m_RtEnvName = 0x1db; + constexpr std::ptrdiff_t m_nRTEnvCP = 0x25c; + constexpr std::ptrdiff_t m_nComponent = 0x260; +} + +namespace C_INIT_NormalAlignToCP { + constexpr std::ptrdiff_t m_transformInput = 0x1c0; + constexpr std::ptrdiff_t m_nControlPointAxis = 0x228; +} + +namespace C_INIT_NormalOffset { + constexpr std::ptrdiff_t m_OffsetMin = 0x1c0; + constexpr std::ptrdiff_t m_OffsetMax = 0x1cc; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1d8; + constexpr std::ptrdiff_t m_bLocalCoords = 0x1dc; + constexpr std::ptrdiff_t m_bNormalize = 0x1dd; +} + +namespace C_INIT_RemapSpeedToScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_flStartTime = 0x1c8; + constexpr std::ptrdiff_t m_flEndTime = 0x1cc; + constexpr std::ptrdiff_t m_flInputMin = 0x1d0; + constexpr std::ptrdiff_t m_flInputMax = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d8; + constexpr std::ptrdiff_t m_flOutputMax = 0x1dc; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e0; + constexpr std::ptrdiff_t m_bPerParticle = 0x1e4; +} + +namespace C_INIT_InitFromCPSnapshot { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nAttributeToRead = 0x1c4; + constexpr std::ptrdiff_t m_nAttributeToWrite = 0x1c8; + constexpr std::ptrdiff_t m_nLocalSpaceCP = 0x1cc; + constexpr std::ptrdiff_t m_bRandom = 0x1d0; + constexpr std::ptrdiff_t m_bReverse = 0x1d1; + constexpr std::ptrdiff_t m_nSnapShotIncrement = 0x1d8; + constexpr std::ptrdiff_t m_nManualSnapshotIndex = 0x330; + constexpr std::ptrdiff_t m_nRandomSeed = 0x488; + constexpr std::ptrdiff_t m_bLocalSpaceAngles = 0x48c; +} + +namespace C_INIT_InitSkinnedPositionFromCPSnapshot { + constexpr std::ptrdiff_t m_nSnapshotControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_bRandom = 0x1c8; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1cc; + constexpr std::ptrdiff_t m_bRigid = 0x1d0; + constexpr std::ptrdiff_t m_bSetNormal = 0x1d1; + constexpr std::ptrdiff_t m_bIgnoreDt = 0x1d2; + constexpr std::ptrdiff_t m_flMinNormalVelocity = 0x1d4; + constexpr std::ptrdiff_t m_flMaxNormalVelocity = 0x1d8; + constexpr std::ptrdiff_t m_flIncrement = 0x1dc; + constexpr std::ptrdiff_t m_nFullLoopIncrement = 0x1e0; + constexpr std::ptrdiff_t m_nSnapShotStartPoint = 0x1e4; + constexpr std::ptrdiff_t m_flBoneVelocity = 0x1e8; + constexpr std::ptrdiff_t m_flBoneVelocityMax = 0x1ec; + constexpr std::ptrdiff_t m_bCopyColor = 0x1f0; + constexpr std::ptrdiff_t m_bCopyAlpha = 0x1f1; + constexpr std::ptrdiff_t m_bSetRadius = 0x1f2; +} + +namespace C_INIT_InitFromParentKilled { + constexpr std::ptrdiff_t m_nAttributeToCopy = 0x1c0; +} + +namespace C_INIT_InitFromVectorFieldSnapshot { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nLocalSpaceCP = 0x1c4; + constexpr std::ptrdiff_t m_nWeightUpdateCP = 0x1c8; + constexpr std::ptrdiff_t m_bUseVerticalVelocity = 0x1cc; + constexpr std::ptrdiff_t m_vecScale = 0x1d0; +} + +namespace C_INIT_RemapInitialDirectionToTransformToVector { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x228; + constexpr std::ptrdiff_t m_flScale = 0x22c; + constexpr std::ptrdiff_t m_flOffsetRot = 0x230; + constexpr std::ptrdiff_t m_vecOffsetAxis = 0x234; + constexpr std::ptrdiff_t m_bNormalize = 0x240; +} + +namespace C_INIT_RemapInitialTransformDirectionToRotation { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x228; + constexpr std::ptrdiff_t m_flOffsetRot = 0x22c; + constexpr std::ptrdiff_t m_nComponent = 0x230; +} + +namespace C_INIT_RemapQAnglesToRotation { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; +} + +namespace C_INIT_RemapTransformOrientationToRotations { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_vecRotation = 0x228; + constexpr std::ptrdiff_t m_bUseQuat = 0x234; + constexpr std::ptrdiff_t m_bWriteNormal = 0x235; +} + +namespace C_INIT_SetRigidAttachment { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c8; + constexpr std::ptrdiff_t m_bLocalSpace = 0x1cc; +} + +namespace C_INIT_RemapInitialVisibilityScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; +} + +namespace C_INIT_RadiusFromCPObject { + constexpr std::ptrdiff_t m_nControlPoint = 0x1c0; +} + +namespace C_INIT_InitialSequenceFromModel { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutputAnim = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_nSetMethod = 0x1dc; +} + +namespace C_INIT_GlobalScale { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_nScaleControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c8; + constexpr std::ptrdiff_t m_bScaleRadius = 0x1cc; + constexpr std::ptrdiff_t m_bScalePosition = 0x1cd; + constexpr std::ptrdiff_t m_bScaleVelocity = 0x1ce; +} + +namespace C_INIT_PointList { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_pointList = 0x1c8; + constexpr std::ptrdiff_t m_bPlaceAlongPath = 0x1e0; + constexpr std::ptrdiff_t m_bClosedLoop = 0x1e1; + constexpr std::ptrdiff_t m_nNumPointsAlongPath = 0x1e4; +} + +namespace C_INIT_RandomNamedModelElement { + constexpr std::ptrdiff_t m_hModel = 0x1c0; + constexpr std::ptrdiff_t m_names = 0x1c8; + constexpr std::ptrdiff_t m_bShuffle = 0x1e0; + constexpr std::ptrdiff_t m_bLinear = 0x1e1; + constexpr std::ptrdiff_t m_bModelFromRenderer = 0x1e2; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1e4; +} + +namespace C_INIT_RandomNamedModelSequence { +} + +namespace C_INIT_RandomNamedModelBodyPart { +} + +namespace C_INIT_RandomNamedModelMeshGroup { +} + +namespace C_INIT_RemapNamedModelElementToScalar { + constexpr std::ptrdiff_t m_hModel = 0x1c0; + constexpr std::ptrdiff_t m_names = 0x1c8; + constexpr std::ptrdiff_t m_values = 0x1e0; + constexpr std::ptrdiff_t m_nFieldInput = 0x1f8; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1fc; + constexpr std::ptrdiff_t m_nSetMethod = 0x200; + constexpr std::ptrdiff_t m_bModelFromRenderer = 0x204; +} + +namespace C_INIT_RemapNamedModelSequenceToScalar { +} + +namespace C_INIT_RemapNamedModelBodyPartToScalar { +} + +namespace C_INIT_RemapNamedModelMeshGroupToScalar { +} + +namespace C_INIT_StatusEffect { + constexpr std::ptrdiff_t m_nDetail2Combo = 0x1c0; + constexpr std::ptrdiff_t m_flDetail2Rotation = 0x1c4; + constexpr std::ptrdiff_t m_flDetail2Scale = 0x1c8; + constexpr std::ptrdiff_t m_flDetail2BlendFactor = 0x1cc; + constexpr std::ptrdiff_t m_flColorWarpIntensity = 0x1d0; + constexpr std::ptrdiff_t m_flDiffuseWarpBlendToFull = 0x1d4; + constexpr std::ptrdiff_t m_flEnvMapIntensity = 0x1d8; + constexpr std::ptrdiff_t m_flAmbientScale = 0x1dc; + constexpr std::ptrdiff_t m_specularColor = 0x1e0; + constexpr std::ptrdiff_t m_flSpecularScale = 0x1e4; + constexpr std::ptrdiff_t m_flSpecularExponent = 0x1e8; + constexpr std::ptrdiff_t m_flSpecularExponentBlendToFull = 0x1ec; + constexpr std::ptrdiff_t m_flSpecularBlendToFull = 0x1f0; + constexpr std::ptrdiff_t m_rimLightColor = 0x1f4; + constexpr std::ptrdiff_t m_flRimLightScale = 0x1f8; + constexpr std::ptrdiff_t m_flReflectionsTintByBaseBlendToNone = 0x1fc; + constexpr std::ptrdiff_t m_flMetalnessBlendToFull = 0x200; + constexpr std::ptrdiff_t m_flSelfIllumBlendToFull = 0x204; +} + +namespace C_INIT_StatusEffectCitadel { + constexpr std::ptrdiff_t m_flSFXColorWarpAmount = 0x1c0; + constexpr std::ptrdiff_t m_flSFXNormalAmount = 0x1c4; + constexpr std::ptrdiff_t m_flSFXMetalnessAmount = 0x1c8; + constexpr std::ptrdiff_t m_flSFXRoughnessAmount = 0x1cc; + constexpr std::ptrdiff_t m_flSFXSelfIllumAmount = 0x1d0; + constexpr std::ptrdiff_t m_flSFXSScale = 0x1d4; + constexpr std::ptrdiff_t m_flSFXSScrollX = 0x1d8; + constexpr std::ptrdiff_t m_flSFXSScrollY = 0x1dc; + constexpr std::ptrdiff_t m_flSFXSScrollZ = 0x1e0; + constexpr std::ptrdiff_t m_flSFXSOffsetX = 0x1e4; + constexpr std::ptrdiff_t m_flSFXSOffsetY = 0x1e8; + constexpr std::ptrdiff_t m_flSFXSOffsetZ = 0x1ec; + constexpr std::ptrdiff_t m_nDetailCombo = 0x1f0; + constexpr std::ptrdiff_t m_flSFXSDetailAmount = 0x1f4; + constexpr std::ptrdiff_t m_flSFXSDetailScale = 0x1f8; + constexpr std::ptrdiff_t m_flSFXSDetailScrollX = 0x1fc; + constexpr std::ptrdiff_t m_flSFXSDetailScrollY = 0x200; + constexpr std::ptrdiff_t m_flSFXSDetailScrollZ = 0x204; + constexpr std::ptrdiff_t m_flSFXSUseModelUVs = 0x208; +} + +namespace C_INIT_CreateParticleImpulse { + constexpr std::ptrdiff_t m_InputRadius = 0x1c0; + constexpr std::ptrdiff_t m_InputMagnitude = 0x318; + constexpr std::ptrdiff_t m_nFalloffFunction = 0x470; + constexpr std::ptrdiff_t m_InputFalloffExp = 0x478; + constexpr std::ptrdiff_t m_nImpulseType = 0x5d0; +} + +namespace C_INIT_QuantizeFloat { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; +} + +namespace C_INIT_SetVectorAttributeToVectorExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1c0; + constexpr std::ptrdiff_t m_vInput1 = 0x1c8; + constexpr std::ptrdiff_t m_vInput2 = 0x820; + constexpr std::ptrdiff_t m_nOutputField = 0xe78; + constexpr std::ptrdiff_t m_nSetMethod = 0xe7c; + constexpr std::ptrdiff_t m_bNormalizedOutput = 0xe80; +} + +namespace C_INIT_InitFloatCollection { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; +} + +namespace C_INIT_InitFloat { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; + constexpr std::ptrdiff_t m_nSetMethod = 0x31c; + constexpr std::ptrdiff_t m_InputStrength = 0x320; +} + +namespace C_INIT_InitVecCollection { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x818; +} + +namespace C_INIT_InitVec { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x818; + constexpr std::ptrdiff_t m_nSetMethod = 0x81c; + constexpr std::ptrdiff_t m_bNormalizedOutput = 0x820; + constexpr std::ptrdiff_t m_bWritePreviousPosition = 0x821; +} + +namespace C_OP_InstantaneousEmitter { + constexpr std::ptrdiff_t m_nParticlesToEmit = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x318; + constexpr std::ptrdiff_t m_flInitFromKilledParentParticles = 0x470; + constexpr std::ptrdiff_t m_nMaxEmittedPerFrame = 0x474; + constexpr std::ptrdiff_t m_nSnapshotControlPoint = 0x478; +} + +namespace C_OP_ContinuousEmitter { + constexpr std::ptrdiff_t m_flEmissionDuration = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x318; + constexpr std::ptrdiff_t m_flEmitRate = 0x470; + constexpr std::ptrdiff_t m_flEmissionScale = 0x5c8; + constexpr std::ptrdiff_t m_flScalePerParentParticle = 0x5cc; + constexpr std::ptrdiff_t m_bInitFromKilledParentParticles = 0x5d0; + constexpr std::ptrdiff_t m_nSnapshotControlPoint = 0x5d4; + constexpr std::ptrdiff_t m_nLimitPerUpdate = 0x5d8; + constexpr std::ptrdiff_t m_bForceEmitOnFirstUpdate = 0x5dc; + constexpr std::ptrdiff_t m_bForceEmitOnLastUpdate = 0x5dd; +} + +namespace C_OP_NoiseEmitter { + constexpr std::ptrdiff_t m_flEmissionDuration = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x1c4; + constexpr std::ptrdiff_t m_flEmissionScale = 0x1c8; + constexpr std::ptrdiff_t m_nScaleControlPoint = 0x1cc; + constexpr std::ptrdiff_t m_nScaleControlPointField = 0x1d0; + constexpr std::ptrdiff_t m_nWorldNoisePoint = 0x1d4; + constexpr std::ptrdiff_t m_bAbsVal = 0x1d8; + constexpr std::ptrdiff_t m_bAbsValInv = 0x1d9; + constexpr std::ptrdiff_t m_flOffset = 0x1dc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1e0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1e4; + constexpr std::ptrdiff_t m_flNoiseScale = 0x1e8; + constexpr std::ptrdiff_t m_flWorldNoiseScale = 0x1ec; + constexpr std::ptrdiff_t m_vecOffsetLoc = 0x1f0; + constexpr std::ptrdiff_t m_flWorldTimeScale = 0x1fc; +} + +namespace C_OP_MaintainEmitter { + constexpr std::ptrdiff_t m_nParticlesToMaintain = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x318; + constexpr std::ptrdiff_t m_flEmissionDuration = 0x320; + constexpr std::ptrdiff_t m_flEmissionRate = 0x478; + constexpr std::ptrdiff_t m_nSnapshotControlPoint = 0x47c; + constexpr std::ptrdiff_t m_bEmitInstantaneously = 0x480; + constexpr std::ptrdiff_t m_bFinalEmitOnStop = 0x481; + constexpr std::ptrdiff_t m_flScale = 0x488; +} + +namespace C_OP_RandomForce { + constexpr std::ptrdiff_t m_MinForce = 0x1d0; + constexpr std::ptrdiff_t m_MaxForce = 0x1dc; +} + +namespace C_OP_CPVelocityForce { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_flScale = 0x1d8; +} + +namespace C_OP_ParentVortices { + constexpr std::ptrdiff_t m_flForceScale = 0x1d0; + constexpr std::ptrdiff_t m_vecTwistAxis = 0x1d4; + constexpr std::ptrdiff_t m_bFlipBasedOnYaw = 0x1e0; +} + +namespace C_OP_TwistAroundAxis { + constexpr std::ptrdiff_t m_fForceAmount = 0x1d0; + constexpr std::ptrdiff_t m_TwistAxis = 0x1d4; + constexpr std::ptrdiff_t m_bLocalSpace = 0x1e0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1e4; +} + +namespace C_OP_AttractToControlPoint { + constexpr std::ptrdiff_t m_vecComponentScale = 0x1d0; + constexpr std::ptrdiff_t m_fForceAmount = 0x1e0; + constexpr std::ptrdiff_t m_fFalloffPower = 0x338; + constexpr std::ptrdiff_t m_TransformInput = 0x340; + constexpr std::ptrdiff_t m_fForceAmountMin = 0x3a8; + constexpr std::ptrdiff_t m_bApplyMinForce = 0x500; +} + +namespace C_OP_ForceBasedOnDistanceToPlane { + constexpr std::ptrdiff_t m_flMinDist = 0x1d0; + constexpr std::ptrdiff_t m_vecForceAtMinDist = 0x1d4; + constexpr std::ptrdiff_t m_flMaxDist = 0x1e0; + constexpr std::ptrdiff_t m_vecForceAtMaxDist = 0x1e4; + constexpr std::ptrdiff_t m_vecPlaneNormal = 0x1f0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1fc; + constexpr std::ptrdiff_t m_flExponent = 0x200; +} + +namespace C_OP_TimeVaryingForce { + constexpr std::ptrdiff_t m_flStartLerpTime = 0x1d0; + constexpr std::ptrdiff_t m_StartingForce = 0x1d4; + constexpr std::ptrdiff_t m_flEndLerpTime = 0x1e0; + constexpr std::ptrdiff_t m_EndingForce = 0x1e4; +} + +namespace C_OP_TurbulenceForce { + constexpr std::ptrdiff_t m_flNoiseCoordScale0 = 0x1d0; + constexpr std::ptrdiff_t m_flNoiseCoordScale1 = 0x1d4; + constexpr std::ptrdiff_t m_flNoiseCoordScale2 = 0x1d8; + constexpr std::ptrdiff_t m_flNoiseCoordScale3 = 0x1dc; + constexpr std::ptrdiff_t m_vecNoiseAmount0 = 0x1e0; + constexpr std::ptrdiff_t m_vecNoiseAmount1 = 0x1ec; + constexpr std::ptrdiff_t m_vecNoiseAmount2 = 0x1f8; + constexpr std::ptrdiff_t m_vecNoiseAmount3 = 0x204; +} + +namespace C_OP_CurlNoiseForce { + constexpr std::ptrdiff_t m_nNoiseType = 0x1d0; + constexpr std::ptrdiff_t m_vecNoiseFreq = 0x1d8; + constexpr std::ptrdiff_t m_vecNoiseScale = 0x830; + constexpr std::ptrdiff_t m_vecOffset = 0xe88; + constexpr std::ptrdiff_t m_vecOffsetRate = 0x14e0; + constexpr std::ptrdiff_t m_flWorleySeed = 0x1b38; + constexpr std::ptrdiff_t m_flWorleyJitter = 0x1c90; +} + +namespace C_OP_PerParticleForce { + constexpr std::ptrdiff_t m_flForceScale = 0x1d0; + constexpr std::ptrdiff_t m_vForce = 0x328; + constexpr std::ptrdiff_t m_nCP = 0x980; +} + +namespace C_OP_WindForce { + constexpr std::ptrdiff_t m_vForce = 0x1d0; +} + +namespace C_OP_ExternalWindForce { + constexpr std::ptrdiff_t m_vecSamplePosition = 0x1d0; + constexpr std::ptrdiff_t m_vecScale = 0x828; + constexpr std::ptrdiff_t m_bSampleWind = 0xe80; + constexpr std::ptrdiff_t m_bSampleWater = 0xe81; + constexpr std::ptrdiff_t m_bDampenNearWaterPlane = 0xe82; + constexpr std::ptrdiff_t m_bSampleGravity = 0xe83; + constexpr std::ptrdiff_t m_vecGravityForce = 0xe88; + constexpr std::ptrdiff_t m_bUseBasicMovementGravity = 0x14e0; + constexpr std::ptrdiff_t m_flLocalGravityScale = 0x14e8; + constexpr std::ptrdiff_t m_flLocalBuoyancyScale = 0x1640; + constexpr std::ptrdiff_t m_vecBuoyancyForce = 0x1798; +} + +namespace C_OP_ExternalGameImpulseForce { + constexpr std::ptrdiff_t m_flForceScale = 0x1d0; + constexpr std::ptrdiff_t m_bRopes = 0x328; + constexpr std::ptrdiff_t m_bRopesZOnly = 0x329; + constexpr std::ptrdiff_t m_bExplosions = 0x32a; + constexpr std::ptrdiff_t m_bParticles = 0x32b; +} + +namespace C_OP_LocalAccelerationForce { + constexpr std::ptrdiff_t m_nCP = 0x1d0; + constexpr std::ptrdiff_t m_nScaleCP = 0x1d4; + constexpr std::ptrdiff_t m_vecAccel = 0x1d8; +} + +namespace C_OP_DensityForce { + constexpr std::ptrdiff_t m_flRadiusScale = 0x1d0; + constexpr std::ptrdiff_t m_flForceScale = 0x1d4; + constexpr std::ptrdiff_t m_flTargetDensity = 0x1d8; +} + +namespace C_OP_BasicMovement { + constexpr std::ptrdiff_t m_Gravity = 0x1c0; + constexpr std::ptrdiff_t m_fDrag = 0x818; + constexpr std::ptrdiff_t m_nMaxConstraintPasses = 0x970; +} + +namespace C_OP_FadeAndKill { + constexpr std::ptrdiff_t m_flStartFadeInTime = 0x1c0; + constexpr std::ptrdiff_t m_flEndFadeInTime = 0x1c4; + constexpr std::ptrdiff_t m_flStartFadeOutTime = 0x1c8; + constexpr std::ptrdiff_t m_flEndFadeOutTime = 0x1cc; + constexpr std::ptrdiff_t m_flStartAlpha = 0x1d0; + constexpr std::ptrdiff_t m_flEndAlpha = 0x1d4; + constexpr std::ptrdiff_t m_bForcePreserveParticleOrder = 0x1d8; +} + +namespace C_OP_FadeAndKillForTracers { + constexpr std::ptrdiff_t m_flStartFadeInTime = 0x1c0; + constexpr std::ptrdiff_t m_flEndFadeInTime = 0x1c4; + constexpr std::ptrdiff_t m_flStartFadeOutTime = 0x1c8; + constexpr std::ptrdiff_t m_flEndFadeOutTime = 0x1cc; + constexpr std::ptrdiff_t m_flStartAlpha = 0x1d0; + constexpr std::ptrdiff_t m_flEndAlpha = 0x1d4; +} + +namespace C_OP_FadeIn { + constexpr std::ptrdiff_t m_flFadeInTimeMin = 0x1c0; + constexpr std::ptrdiff_t m_flFadeInTimeMax = 0x1c4; + constexpr std::ptrdiff_t m_flFadeInTimeExp = 0x1c8; + constexpr std::ptrdiff_t m_bProportional = 0x1cc; +} + +namespace C_OP_FadeOut { + constexpr std::ptrdiff_t m_flFadeOutTimeMin = 0x1c0; + constexpr std::ptrdiff_t m_flFadeOutTimeMax = 0x1c4; + constexpr std::ptrdiff_t m_flFadeOutTimeExp = 0x1c8; + constexpr std::ptrdiff_t m_flFadeBias = 0x1cc; + constexpr std::ptrdiff_t m_bProportional = 0x200; + constexpr std::ptrdiff_t m_bEaseInAndOut = 0x201; +} + +namespace C_OP_FadeInSimple { + constexpr std::ptrdiff_t m_flFadeInTime = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; +} + +namespace C_OP_FadeOutSimple { + constexpr std::ptrdiff_t m_flFadeOutTime = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; +} + +namespace C_OP_ClampScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1c8; + constexpr std::ptrdiff_t m_flOutputMax = 0x320; +} + +namespace C_OP_ClampVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1c8; + constexpr std::ptrdiff_t m_vecOutputMax = 0x820; +} + +namespace C_OP_OscillateScalar { + constexpr std::ptrdiff_t m_RateMin = 0x1c0; + constexpr std::ptrdiff_t m_RateMax = 0x1c4; + constexpr std::ptrdiff_t m_FrequencyMin = 0x1c8; + constexpr std::ptrdiff_t m_FrequencyMax = 0x1cc; + constexpr std::ptrdiff_t m_nField = 0x1d0; + constexpr std::ptrdiff_t m_bProportional = 0x1d4; + constexpr std::ptrdiff_t m_bProportionalOp = 0x1d5; + constexpr std::ptrdiff_t m_flStartTime_min = 0x1d8; + constexpr std::ptrdiff_t m_flStartTime_max = 0x1dc; + constexpr std::ptrdiff_t m_flEndTime_min = 0x1e0; + constexpr std::ptrdiff_t m_flEndTime_max = 0x1e4; + constexpr std::ptrdiff_t m_flOscMult = 0x1e8; + constexpr std::ptrdiff_t m_flOscAdd = 0x1ec; +} + +namespace C_OP_OscillateScalarSimple { + constexpr std::ptrdiff_t m_Rate = 0x1c0; + constexpr std::ptrdiff_t m_Frequency = 0x1c4; + constexpr std::ptrdiff_t m_nField = 0x1c8; + constexpr std::ptrdiff_t m_flOscMult = 0x1cc; + constexpr std::ptrdiff_t m_flOscAdd = 0x1d0; +} + +namespace C_OP_OscillateVector { + constexpr std::ptrdiff_t m_RateMin = 0x1c0; + constexpr std::ptrdiff_t m_RateMax = 0x1cc; + constexpr std::ptrdiff_t m_FrequencyMin = 0x1d8; + constexpr std::ptrdiff_t m_FrequencyMax = 0x1e4; + constexpr std::ptrdiff_t m_nField = 0x1f0; + constexpr std::ptrdiff_t m_bProportional = 0x1f4; + constexpr std::ptrdiff_t m_bProportionalOp = 0x1f5; + constexpr std::ptrdiff_t m_bOffset = 0x1f6; + constexpr std::ptrdiff_t m_flStartTime_min = 0x1f8; + constexpr std::ptrdiff_t m_flStartTime_max = 0x1fc; + constexpr std::ptrdiff_t m_flEndTime_min = 0x200; + constexpr std::ptrdiff_t m_flEndTime_max = 0x204; + constexpr std::ptrdiff_t m_flOscMult = 0x208; + constexpr std::ptrdiff_t m_flOscAdd = 0x360; + constexpr std::ptrdiff_t m_flRateScale = 0x4b8; +} + +namespace C_OP_OscillateVectorSimple { + constexpr std::ptrdiff_t m_Rate = 0x1c0; + constexpr std::ptrdiff_t m_Frequency = 0x1cc; + constexpr std::ptrdiff_t m_nField = 0x1d8; + constexpr std::ptrdiff_t m_flOscMult = 0x1dc; + constexpr std::ptrdiff_t m_flOscAdd = 0x1e0; + constexpr std::ptrdiff_t m_bOffset = 0x1e4; +} + +namespace C_OP_DifferencePreviousParticle { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; + constexpr std::ptrdiff_t m_nSetMethod = 0x1d8; + constexpr std::ptrdiff_t m_bActiveRange = 0x1dc; + constexpr std::ptrdiff_t m_bSetPreviousParticle = 0x1dd; +} + +namespace C_OP_PointVectorAtNextParticle { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInterpolation = 0x1c8; +} + +namespace C_OP_RemapScalar { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; + constexpr std::ptrdiff_t m_bOldCode = 0x1d8; +} + +namespace C_OP_RemapDensityToVector { + constexpr std::ptrdiff_t m_flRadiusScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flDensityMin = 0x1c8; + constexpr std::ptrdiff_t m_flDensityMax = 0x1cc; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_vecOutputMax = 0x1dc; + constexpr std::ptrdiff_t m_bUseParentDensity = 0x1e8; + constexpr std::ptrdiff_t m_nVoxelGridResolution = 0x1ec; +} + +namespace C_OP_Diffusion { + constexpr std::ptrdiff_t m_flRadiusScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nVoxelGridResolution = 0x1c8; +} + +namespace C_OP_RemapScalarEndCap { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; +} + +namespace C_OP_ReinitializeScalarEndCap { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1c4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1c8; +} + +namespace C_OP_RemapScalarOnceTimed { + constexpr std::ptrdiff_t m_bProportional = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_flRemapTime = 0x1dc; +} + +namespace C_OP_RemapParticleCountOnScalarEndCap { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nInputMin = 0x1c4; + constexpr std::ptrdiff_t m_nInputMax = 0x1c8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d0; + constexpr std::ptrdiff_t m_bBackwards = 0x1d4; + constexpr std::ptrdiff_t m_nSetMethod = 0x1d8; +} + +namespace C_OP_RemapParticleCountToScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nInputMin = 0x1c8; + constexpr std::ptrdiff_t m_nInputMax = 0x320; + constexpr std::ptrdiff_t m_flOutputMin = 0x478; + constexpr std::ptrdiff_t m_flOutputMax = 0x5d0; + constexpr std::ptrdiff_t m_bActiveRange = 0x728; + constexpr std::ptrdiff_t m_nSetMethod = 0x72c; +} + +namespace C_OP_RemapVisibilityScalar { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d4; + constexpr std::ptrdiff_t m_flRadiusScale = 0x1d8; +} + +namespace C_OP_RemapTransformVisibilityToScalar { + constexpr std::ptrdiff_t m_nSetMethod = 0x1c0; + constexpr std::ptrdiff_t m_TransformInput = 0x1c8; + constexpr std::ptrdiff_t m_nFieldOutput = 0x230; + constexpr std::ptrdiff_t m_flInputMin = 0x234; + constexpr std::ptrdiff_t m_flInputMax = 0x238; + constexpr std::ptrdiff_t m_flOutputMin = 0x23c; + constexpr std::ptrdiff_t m_flOutputMax = 0x240; + constexpr std::ptrdiff_t m_flRadius = 0x244; +} + +namespace C_OP_RemapTransformVisibilityToVector { + constexpr std::ptrdiff_t m_nSetMethod = 0x1c0; + constexpr std::ptrdiff_t m_TransformInput = 0x1c8; + constexpr std::ptrdiff_t m_nFieldOutput = 0x230; + constexpr std::ptrdiff_t m_flInputMin = 0x234; + constexpr std::ptrdiff_t m_flInputMax = 0x238; + constexpr std::ptrdiff_t m_vecOutputMin = 0x23c; + constexpr std::ptrdiff_t m_vecOutputMax = 0x248; + constexpr std::ptrdiff_t m_flRadius = 0x254; +} + +namespace C_OP_LerpScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flOutput = 0x1c8; + constexpr std::ptrdiff_t m_flStartTime = 0x320; + constexpr std::ptrdiff_t m_flEndTime = 0x324; +} + +namespace C_OP_LerpEndCapScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flOutput = 0x1c4; + constexpr std::ptrdiff_t m_flLerpTime = 0x1c8; +} + +namespace C_OP_LerpEndCapVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecOutput = 0x1c4; + constexpr std::ptrdiff_t m_flLerpTime = 0x1d0; +} + +namespace C_OP_LerpVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecOutput = 0x1c4; + constexpr std::ptrdiff_t m_flStartTime = 0x1d0; + constexpr std::ptrdiff_t m_flEndTime = 0x1d4; + constexpr std::ptrdiff_t m_nSetMethod = 0x1d8; +} + +namespace C_OP_LerpToOtherAttribute { + constexpr std::ptrdiff_t m_flInterpolation = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInputFrom = 0x318; + constexpr std::ptrdiff_t m_nFieldInput = 0x31c; + constexpr std::ptrdiff_t m_nFieldOutput = 0x320; +} + +namespace C_OP_RemapSpeed { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c4; + constexpr std::ptrdiff_t m_flInputMax = 0x1c8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d0; + constexpr std::ptrdiff_t m_nSetMethod = 0x1d4; + constexpr std::ptrdiff_t m_bIgnoreDelta = 0x1d8; +} + +namespace C_OP_RemapVectortoCP { + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_nParticleNumber = 0x1c8; +} + +namespace C_OP_RampScalarLinear { + constexpr std::ptrdiff_t m_RateMin = 0x1c0; + constexpr std::ptrdiff_t m_RateMax = 0x1c4; + constexpr std::ptrdiff_t m_flStartTime_min = 0x1c8; + constexpr std::ptrdiff_t m_flStartTime_max = 0x1cc; + constexpr std::ptrdiff_t m_flEndTime_min = 0x1d0; + constexpr std::ptrdiff_t m_flEndTime_max = 0x1d4; + constexpr std::ptrdiff_t m_nField = 0x200; + constexpr std::ptrdiff_t m_bProportionalOp = 0x204; +} + +namespace C_OP_RampScalarSpline { + constexpr std::ptrdiff_t m_RateMin = 0x1c0; + constexpr std::ptrdiff_t m_RateMax = 0x1c4; + constexpr std::ptrdiff_t m_flStartTime_min = 0x1c8; + constexpr std::ptrdiff_t m_flStartTime_max = 0x1cc; + constexpr std::ptrdiff_t m_flEndTime_min = 0x1d0; + constexpr std::ptrdiff_t m_flEndTime_max = 0x1d4; + constexpr std::ptrdiff_t m_flBias = 0x1d8; + constexpr std::ptrdiff_t m_nField = 0x200; + constexpr std::ptrdiff_t m_bProportionalOp = 0x204; + constexpr std::ptrdiff_t m_bEaseOut = 0x205; +} + +namespace C_OP_RampScalarLinearSimple { + constexpr std::ptrdiff_t m_Rate = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x1c4; + constexpr std::ptrdiff_t m_flEndTime = 0x1c8; + constexpr std::ptrdiff_t m_nField = 0x1f0; +} + +namespace C_OP_RampScalarSplineSimple { + constexpr std::ptrdiff_t m_Rate = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime = 0x1c4; + constexpr std::ptrdiff_t m_flEndTime = 0x1c8; + constexpr std::ptrdiff_t m_nField = 0x1f0; + constexpr std::ptrdiff_t m_bEaseOut = 0x1f4; +} + +namespace C_OP_ChladniWave { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x320; + constexpr std::ptrdiff_t m_flOutputMin = 0x478; + constexpr std::ptrdiff_t m_flOutputMax = 0x5d0; + constexpr std::ptrdiff_t m_vecWaveLength = 0x728; + constexpr std::ptrdiff_t m_vecHarmonics = 0xd80; + constexpr std::ptrdiff_t m_nSetMethod = 0x13d8; + constexpr std::ptrdiff_t m_nLocalSpaceControlPoint = 0x13dc; + constexpr std::ptrdiff_t m_b3D = 0x13e0; +} + +namespace C_OP_Noise { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1c4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1c8; + constexpr std::ptrdiff_t m_fl4NoiseScale = 0x1cc; + constexpr std::ptrdiff_t m_bAdditive = 0x1d0; + constexpr std::ptrdiff_t m_flNoiseAnimationTimeScale = 0x1d4; +} + +namespace C_OP_VectorNoise { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1c4; + constexpr std::ptrdiff_t m_vecOutputMax = 0x1d0; + constexpr std::ptrdiff_t m_fl4NoiseScale = 0x1dc; + constexpr std::ptrdiff_t m_bAdditive = 0x1e0; + constexpr std::ptrdiff_t m_bOffset = 0x1e1; + constexpr std::ptrdiff_t m_flNoiseAnimationTimeScale = 0x1e4; +} + +namespace C_OP_Decay { + constexpr std::ptrdiff_t m_bRopeDecay = 0x1c0; + constexpr std::ptrdiff_t m_bForcePreserveParticleOrder = 0x1c1; +} + +namespace C_OP_DecayOffscreen { + constexpr std::ptrdiff_t m_flOffscreenTime = 0x1c0; +} + +namespace C_OP_EndCapTimedFreeze { + constexpr std::ptrdiff_t m_flFreezeTime = 0x1c0; +} + +namespace C_OP_EndCapTimedDecay { + constexpr std::ptrdiff_t m_flDecayTime = 0x1c0; +} + +namespace C_OP_EndCapDecay { +} + +namespace C_OP_VelocityDecay { + constexpr std::ptrdiff_t m_flMinVelocity = 0x1c0; +} + +namespace C_OP_AlphaDecay { + constexpr std::ptrdiff_t m_flMinAlpha = 0x1c0; +} + +namespace C_OP_RadiusDecay { + constexpr std::ptrdiff_t m_flMinRadius = 0x1c0; +} + +namespace C_OP_DecayMaintainCount { + constexpr std::ptrdiff_t m_nParticlesToMaintain = 0x1c0; + constexpr std::ptrdiff_t m_flDecayDelay = 0x1c4; + constexpr std::ptrdiff_t m_nSnapshotControlPoint = 0x1c8; + constexpr std::ptrdiff_t m_bLifespanDecay = 0x1cc; + constexpr std::ptrdiff_t m_flScale = 0x1d0; + constexpr std::ptrdiff_t m_bKillNewest = 0x328; +} + +namespace C_OP_DecayClampCount { + constexpr std::ptrdiff_t m_nCount = 0x1c0; +} + +namespace C_OP_Cull { + constexpr std::ptrdiff_t m_flCullPerc = 0x1c0; + constexpr std::ptrdiff_t m_flCullStart = 0x1c4; + constexpr std::ptrdiff_t m_flCullEnd = 0x1c8; + constexpr std::ptrdiff_t m_flCullExp = 0x1cc; +} + +namespace CGeneralSpin { + constexpr std::ptrdiff_t m_nSpinRateDegrees = 0x1c0; + constexpr std::ptrdiff_t m_nSpinRateMinDegrees = 0x1c4; + constexpr std::ptrdiff_t m_fSpinRateStopTime = 0x1cc; +} + +namespace CSpinUpdateBase { +} + +namespace C_OP_Spin { +} + +namespace C_OP_SpinUpdate { +} + +namespace C_OP_SpinYaw { +} + +namespace C_OP_InterpolateRadius { + constexpr std::ptrdiff_t m_flStartTime = 0x1c0; + constexpr std::ptrdiff_t m_flEndTime = 0x1c4; + constexpr std::ptrdiff_t m_flStartScale = 0x1c8; + constexpr std::ptrdiff_t m_flEndScale = 0x1cc; + constexpr std::ptrdiff_t m_bEaseInAndOut = 0x1d0; + constexpr std::ptrdiff_t m_flBias = 0x1d4; +} + +namespace C_OP_ColorInterpolate { + constexpr std::ptrdiff_t m_ColorFade = 0x1c0; + constexpr std::ptrdiff_t m_flFadeStartTime = 0x1d0; + constexpr std::ptrdiff_t m_flFadeEndTime = 0x1d4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1d8; + constexpr std::ptrdiff_t m_bEaseInOut = 0x1dc; +} + +namespace C_OP_ColorInterpolateRandom { + constexpr std::ptrdiff_t m_ColorFadeMin = 0x1c0; + constexpr std::ptrdiff_t m_ColorFadeMax = 0x1dc; + constexpr std::ptrdiff_t m_flFadeStartTime = 0x1ec; + constexpr std::ptrdiff_t m_flFadeEndTime = 0x1f0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1f4; + constexpr std::ptrdiff_t m_bEaseInOut = 0x1f8; +} + +namespace C_OP_PositionLock { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_flStartTime_min = 0x228; + constexpr std::ptrdiff_t m_flStartTime_max = 0x22c; + constexpr std::ptrdiff_t m_flStartTime_exp = 0x230; + constexpr std::ptrdiff_t m_flEndTime_min = 0x234; + constexpr std::ptrdiff_t m_flEndTime_max = 0x238; + constexpr std::ptrdiff_t m_flEndTime_exp = 0x23c; + constexpr std::ptrdiff_t m_flRange = 0x240; + constexpr std::ptrdiff_t m_flRangeBias = 0x248; + constexpr std::ptrdiff_t m_flJumpThreshold = 0x3a0; + constexpr std::ptrdiff_t m_flPrevPosScale = 0x3a4; + constexpr std::ptrdiff_t m_bLockRot = 0x3a8; + constexpr std::ptrdiff_t m_vecScale = 0x3b0; + constexpr std::ptrdiff_t m_nFieldOutput = 0xa08; + constexpr std::ptrdiff_t m_nFieldOutputPrev = 0xa0c; +} + +namespace C_OP_ControlpointLight { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_nControlPoint1 = 0x690; + constexpr std::ptrdiff_t m_nControlPoint2 = 0x694; + constexpr std::ptrdiff_t m_nControlPoint3 = 0x698; + constexpr std::ptrdiff_t m_nControlPoint4 = 0x69c; + constexpr std::ptrdiff_t m_vecCPOffset1 = 0x6a0; + constexpr std::ptrdiff_t m_vecCPOffset2 = 0x6ac; + constexpr std::ptrdiff_t m_vecCPOffset3 = 0x6b8; + constexpr std::ptrdiff_t m_vecCPOffset4 = 0x6c4; + constexpr std::ptrdiff_t m_LightFiftyDist1 = 0x6d0; + constexpr std::ptrdiff_t m_LightZeroDist1 = 0x6d4; + constexpr std::ptrdiff_t m_LightFiftyDist2 = 0x6d8; + constexpr std::ptrdiff_t m_LightZeroDist2 = 0x6dc; + constexpr std::ptrdiff_t m_LightFiftyDist3 = 0x6e0; + constexpr std::ptrdiff_t m_LightZeroDist3 = 0x6e4; + constexpr std::ptrdiff_t m_LightFiftyDist4 = 0x6e8; + constexpr std::ptrdiff_t m_LightZeroDist4 = 0x6ec; + constexpr std::ptrdiff_t m_LightColor1 = 0x6f0; + constexpr std::ptrdiff_t m_LightColor2 = 0x6f4; + constexpr std::ptrdiff_t m_LightColor3 = 0x6f8; + constexpr std::ptrdiff_t m_LightColor4 = 0x6fc; + constexpr std::ptrdiff_t m_bLightType1 = 0x700; + constexpr std::ptrdiff_t m_bLightType2 = 0x701; + constexpr std::ptrdiff_t m_bLightType3 = 0x702; + constexpr std::ptrdiff_t m_bLightType4 = 0x703; + constexpr std::ptrdiff_t m_bLightDynamic1 = 0x704; + constexpr std::ptrdiff_t m_bLightDynamic2 = 0x705; + constexpr std::ptrdiff_t m_bLightDynamic3 = 0x706; + constexpr std::ptrdiff_t m_bLightDynamic4 = 0x707; + constexpr std::ptrdiff_t m_bUseNormal = 0x708; + constexpr std::ptrdiff_t m_bUseHLambert = 0x709; + constexpr std::ptrdiff_t m_bClampLowerRange = 0x70e; + constexpr std::ptrdiff_t m_bClampUpperRange = 0x70f; +} + +namespace C_OP_GlobalLight { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_bClampLowerRange = 0x1c4; + constexpr std::ptrdiff_t m_bClampUpperRange = 0x1c5; +} + +namespace C_OP_SetChildControlPoints { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1c0; + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x1c4; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x1c8; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x1d0; + constexpr std::ptrdiff_t m_bReverse = 0x328; + constexpr std::ptrdiff_t m_bSetOrientation = 0x329; +} + +namespace C_OP_SetControlPointsToParticle { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1c0; + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x1c4; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x1c8; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x1cc; + constexpr std::ptrdiff_t m_bSetOrientation = 0x1d0; + constexpr std::ptrdiff_t m_nOrientationMode = 0x1d4; + constexpr std::ptrdiff_t m_nSetParent = 0x1d8; +} + +namespace C_OP_SetControlPointsToModelParticles { + constexpr std::ptrdiff_t m_HitboxSetName = 0x1c0; + constexpr std::ptrdiff_t m_AttachmentName = 0x240; + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x2c0; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x2c4; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x2c8; + constexpr std::ptrdiff_t m_bSkin = 0x2cc; + constexpr std::ptrdiff_t m_bAttachment = 0x2cd; +} + +namespace C_OP_SetPerChildControlPoint { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1c0; + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x1c4; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x1c8; + constexpr std::ptrdiff_t m_nParticleIncrement = 0x1d0; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x328; + constexpr std::ptrdiff_t m_bSetOrientation = 0x480; + constexpr std::ptrdiff_t m_nOrientationField = 0x484; + constexpr std::ptrdiff_t m_bNumBasedOnParticleCount = 0x488; +} + +namespace C_OP_SetPerChildControlPointFromAttribute { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1c0; + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x1c4; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x1c8; + constexpr std::ptrdiff_t m_nParticleIncrement = 0x1cc; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x1d0; + constexpr std::ptrdiff_t m_bNumBasedOnParticleCount = 0x1d4; + constexpr std::ptrdiff_t m_nAttributeToRead = 0x1d8; + constexpr std::ptrdiff_t m_nCPField = 0x1dc; +} + +namespace C_OP_RemapTransformOrientationToYaw { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x228; + constexpr std::ptrdiff_t m_flRotOffset = 0x22c; + constexpr std::ptrdiff_t m_flSpinStrength = 0x230; +} + +namespace C_OP_DampenToCP { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_flRange = 0x1c4; + constexpr std::ptrdiff_t m_flScale = 0x1c8; +} + +namespace C_OP_SetToCP { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_vecOffset = 0x1c4; + constexpr std::ptrdiff_t m_bOffsetLocal = 0x1d0; +} + +namespace C_OP_PinParticleToCP { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_vecOffset = 0x1c8; + constexpr std::ptrdiff_t m_bOffsetLocal = 0x820; + constexpr std::ptrdiff_t m_nParticleSelection = 0x824; + constexpr std::ptrdiff_t m_nParticleNumber = 0x828; + constexpr std::ptrdiff_t m_nPinBreakType = 0x980; + constexpr std::ptrdiff_t m_flBreakDistance = 0x988; + constexpr std::ptrdiff_t m_flBreakSpeed = 0xae0; + constexpr std::ptrdiff_t m_flAge = 0xc38; + constexpr std::ptrdiff_t m_nBreakControlPointNumber = 0xd90; + constexpr std::ptrdiff_t m_nBreakControlPointNumber2 = 0xd94; + constexpr std::ptrdiff_t m_flBreakValue = 0xd98; + constexpr std::ptrdiff_t m_flInterpolation = 0xef0; +} + +namespace C_OP_MovementRigidAttachToCP { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nScaleControlPoint = 0x1c4; + constexpr std::ptrdiff_t m_nScaleCPField = 0x1c8; + constexpr std::ptrdiff_t m_nFieldInput = 0x1cc; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1d0; + constexpr std::ptrdiff_t m_bOffsetLocal = 0x1d4; +} + +namespace C_OP_LerpToInitialPosition { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_flInterpolation = 0x1c8; + constexpr std::ptrdiff_t m_nCacheField = 0x320; + constexpr std::ptrdiff_t m_flScale = 0x328; + constexpr std::ptrdiff_t m_vecScale = 0x480; +} + +namespace C_OP_DistanceBetweenTransforms { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_TransformStart = 0x1c8; + constexpr std::ptrdiff_t m_TransformEnd = 0x230; + constexpr std::ptrdiff_t m_flInputMin = 0x298; + constexpr std::ptrdiff_t m_flInputMax = 0x3f0; + constexpr std::ptrdiff_t m_flOutputMin = 0x548; + constexpr std::ptrdiff_t m_flOutputMax = 0x6a0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x7f8; + constexpr std::ptrdiff_t m_flLOSScale = 0x7fc; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x800; + constexpr std::ptrdiff_t m_nTraceSet = 0x880; + constexpr std::ptrdiff_t m_bLOS = 0x884; + constexpr std::ptrdiff_t m_nSetMethod = 0x888; +} + +namespace C_OP_PercentageBetweenTransforms { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c4; + constexpr std::ptrdiff_t m_flInputMax = 0x1c8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1cc; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d0; + constexpr std::ptrdiff_t m_TransformStart = 0x1d8; + constexpr std::ptrdiff_t m_TransformEnd = 0x240; + constexpr std::ptrdiff_t m_nSetMethod = 0x2a8; + constexpr std::ptrdiff_t m_bActiveRange = 0x2ac; + constexpr std::ptrdiff_t m_bRadialCheck = 0x2ad; +} + +namespace C_OP_PercentageBetweenTransformsVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c4; + constexpr std::ptrdiff_t m_flInputMax = 0x1c8; + constexpr std::ptrdiff_t m_vecOutputMin = 0x1cc; + constexpr std::ptrdiff_t m_vecOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_TransformStart = 0x1e8; + constexpr std::ptrdiff_t m_TransformEnd = 0x250; + constexpr std::ptrdiff_t m_nSetMethod = 0x2b8; + constexpr std::ptrdiff_t m_bActiveRange = 0x2bc; + constexpr std::ptrdiff_t m_bRadialCheck = 0x2bd; +} + +namespace C_OP_PercentageBetweenTransformLerpCPs { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c4; + constexpr std::ptrdiff_t m_flInputMax = 0x1c8; + constexpr std::ptrdiff_t m_TransformStart = 0x1d0; + constexpr std::ptrdiff_t m_TransformEnd = 0x238; + constexpr std::ptrdiff_t m_nOutputStartCP = 0x2a0; + constexpr std::ptrdiff_t m_nOutputStartField = 0x2a4; + constexpr std::ptrdiff_t m_nOutputEndCP = 0x2a8; + constexpr std::ptrdiff_t m_nOutputEndField = 0x2ac; + constexpr std::ptrdiff_t m_nSetMethod = 0x2b0; + constexpr std::ptrdiff_t m_bActiveRange = 0x2b4; + constexpr std::ptrdiff_t m_bRadialCheck = 0x2b5; +} + +namespace C_OP_DistanceBetweenVecs { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecPoint1 = 0x1c8; + constexpr std::ptrdiff_t m_vecPoint2 = 0x820; + constexpr std::ptrdiff_t m_flInputMin = 0xe78; + constexpr std::ptrdiff_t m_flInputMax = 0xfd0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1128; + constexpr std::ptrdiff_t m_flOutputMax = 0x1280; + constexpr std::ptrdiff_t m_nSetMethod = 0x13d8; + constexpr std::ptrdiff_t m_bDeltaTime = 0x13dc; +} + +namespace C_OP_DirectionBetweenVecsToVec { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecPoint1 = 0x1c8; + constexpr std::ptrdiff_t m_vecPoint2 = 0x820; +} + +namespace C_OP_DistanceToTransform { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x320; + constexpr std::ptrdiff_t m_flOutputMin = 0x478; + constexpr std::ptrdiff_t m_flOutputMax = 0x5d0; + constexpr std::ptrdiff_t m_TransformStart = 0x728; + constexpr std::ptrdiff_t m_bLOS = 0x790; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x791; + constexpr std::ptrdiff_t m_nTraceSet = 0x814; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x818; + constexpr std::ptrdiff_t m_flLOSScale = 0x81c; + constexpr std::ptrdiff_t m_nSetMethod = 0x820; + constexpr std::ptrdiff_t m_bActiveRange = 0x824; + constexpr std::ptrdiff_t m_bAdditive = 0x825; + constexpr std::ptrdiff_t m_vecComponentScale = 0x828; +} + +namespace C_OP_CylindricalDistanceToTransform { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flInputMin = 0x1c8; + constexpr std::ptrdiff_t m_flInputMax = 0x320; + constexpr std::ptrdiff_t m_flOutputMin = 0x478; + constexpr std::ptrdiff_t m_flOutputMax = 0x5d0; + constexpr std::ptrdiff_t m_TransformStart = 0x728; + constexpr std::ptrdiff_t m_TransformEnd = 0x790; + constexpr std::ptrdiff_t m_nSetMethod = 0x7f8; + constexpr std::ptrdiff_t m_bActiveRange = 0x7fc; + constexpr std::ptrdiff_t m_bAdditive = 0x7fd; + constexpr std::ptrdiff_t m_bCapsule = 0x7fe; +} + +namespace C_OP_RtEnvCull { + constexpr std::ptrdiff_t m_vecTestDir = 0x1c0; + constexpr std::ptrdiff_t m_vecTestNormal = 0x1cc; + constexpr std::ptrdiff_t m_bCullOnMiss = 0x1d8; + constexpr std::ptrdiff_t m_bStickInsteadOfCull = 0x1d9; + constexpr std::ptrdiff_t m_RtEnvName = 0x1da; + constexpr std::ptrdiff_t m_nRTEnvCP = 0x25c; + constexpr std::ptrdiff_t m_nComponent = 0x260; +} + +namespace C_OP_MovementLoopInsideSphere { + constexpr std::ptrdiff_t m_nCP = 0x1c0; + constexpr std::ptrdiff_t m_flDistance = 0x1c8; + constexpr std::ptrdiff_t m_vecScale = 0x320; + constexpr std::ptrdiff_t m_nDistSqrAttr = 0x978; +} + +namespace C_OP_MoveToHitbox { + constexpr std::ptrdiff_t m_modelInput = 0x1c0; + constexpr std::ptrdiff_t m_transformInput = 0x220; + constexpr std::ptrdiff_t m_flLifeTimeLerpStart = 0x28c; + constexpr std::ptrdiff_t m_flLifeTimeLerpEnd = 0x290; + constexpr std::ptrdiff_t m_flPrevPosScale = 0x294; + constexpr std::ptrdiff_t m_HitboxSetName = 0x298; + constexpr std::ptrdiff_t m_bUseBones = 0x318; + constexpr std::ptrdiff_t m_nLerpType = 0x31c; + constexpr std::ptrdiff_t m_flInterpolation = 0x320; +} + +namespace C_OP_LockToBone { + constexpr std::ptrdiff_t m_modelInput = 0x1c0; + constexpr std::ptrdiff_t m_transformInput = 0x220; + constexpr std::ptrdiff_t m_flLifeTimeFadeStart = 0x288; + constexpr std::ptrdiff_t m_flLifeTimeFadeEnd = 0x28c; + constexpr std::ptrdiff_t m_flJumpThreshold = 0x290; + constexpr std::ptrdiff_t m_flPrevPosScale = 0x294; + constexpr std::ptrdiff_t m_HitboxSetName = 0x298; + constexpr std::ptrdiff_t m_bRigid = 0x318; + constexpr std::ptrdiff_t m_bUseBones = 0x319; + constexpr std::ptrdiff_t m_nFieldOutput = 0x31c; + constexpr std::ptrdiff_t m_nFieldOutputPrev = 0x320; + constexpr std::ptrdiff_t m_nRotationSetType = 0x324; + constexpr std::ptrdiff_t m_bRigidRotationLock = 0x328; + constexpr std::ptrdiff_t m_vecRotation = 0x330; + constexpr std::ptrdiff_t m_flRotLerp = 0x988; +} + +namespace C_OP_SnapshotRigidSkinToBones { + constexpr std::ptrdiff_t m_bTransformNormals = 0x1c0; + constexpr std::ptrdiff_t m_bTransformRadii = 0x1c1; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; +} + +namespace C_OP_SnapshotSkinToBones { + constexpr std::ptrdiff_t m_bTransformNormals = 0x1c0; + constexpr std::ptrdiff_t m_bTransformRadii = 0x1c1; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_flLifeTimeFadeStart = 0x1c8; + constexpr std::ptrdiff_t m_flLifeTimeFadeEnd = 0x1cc; + constexpr std::ptrdiff_t m_flJumpThreshold = 0x1d0; + constexpr std::ptrdiff_t m_flPrevPosScale = 0x1d4; +} + +namespace C_OP_CPOffsetToPercentageBetweenCPs { + constexpr std::ptrdiff_t m_flInputMin = 0x1c0; + constexpr std::ptrdiff_t m_flInputMax = 0x1c4; + constexpr std::ptrdiff_t m_flInputBias = 0x1c8; + constexpr std::ptrdiff_t m_nStartCP = 0x1cc; + constexpr std::ptrdiff_t m_nEndCP = 0x1d0; + constexpr std::ptrdiff_t m_nOffsetCP = 0x1d4; + constexpr std::ptrdiff_t m_nOuputCP = 0x1d8; + constexpr std::ptrdiff_t m_nInputCP = 0x1dc; + constexpr std::ptrdiff_t m_bRadialCheck = 0x1e0; + constexpr std::ptrdiff_t m_bScaleOffset = 0x1e1; + constexpr std::ptrdiff_t m_vecOffset = 0x1e4; +} + +namespace C_OP_PlaneCull { + constexpr std::ptrdiff_t m_nPlaneControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_vecPlaneDirection = 0x1c4; + constexpr std::ptrdiff_t m_bLocalSpace = 0x1d0; + constexpr std::ptrdiff_t m_flPlaneOffset = 0x1d4; +} + +namespace C_OP_DistanceCull { + constexpr std::ptrdiff_t m_nControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_vecPointOffset = 0x1c4; + constexpr std::ptrdiff_t m_flDistance = 0x1d0; + constexpr std::ptrdiff_t m_bCullInside = 0x1d4; +} + +namespace C_OP_ModelCull { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_bBoundBox = 0x1c4; + constexpr std::ptrdiff_t m_bCullOutside = 0x1c5; + constexpr std::ptrdiff_t m_bUseBones = 0x1c6; + constexpr std::ptrdiff_t m_HitboxSetName = 0x1c7; +} + +namespace C_OP_ModelDampenMovement { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_bBoundBox = 0x1c4; + constexpr std::ptrdiff_t m_bOutside = 0x1c5; + constexpr std::ptrdiff_t m_bUseBones = 0x1c6; + constexpr std::ptrdiff_t m_HitboxSetName = 0x1c7; + constexpr std::ptrdiff_t m_vecPosOffset = 0x248; + constexpr std::ptrdiff_t m_fDrag = 0x8a0; +} + +namespace C_OP_SequenceFromModel { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutputAnim = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_nSetMethod = 0x1dc; +} + +namespace C_OP_VelocityMatchingForce { + constexpr std::ptrdiff_t m_flDirScale = 0x1c0; + constexpr std::ptrdiff_t m_flSpdScale = 0x1c4; + constexpr std::ptrdiff_t m_nCPBroadcast = 0x1c8; +} + +namespace C_OP_MovementMaintainOffset { + constexpr std::ptrdiff_t m_vecOffset = 0x1c0; + constexpr std::ptrdiff_t m_nCP = 0x1cc; + constexpr std::ptrdiff_t m_bRadiusScale = 0x1d0; +} + +namespace C_OP_MovementPlaceOnGround { + constexpr std::ptrdiff_t m_flOffset = 0x1c0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x318; + constexpr std::ptrdiff_t m_flTolerance = 0x31c; + constexpr std::ptrdiff_t m_flTraceOffset = 0x320; + constexpr std::ptrdiff_t m_flLerpRate = 0x324; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x328; + constexpr std::ptrdiff_t m_nTraceSet = 0x3a8; + constexpr std::ptrdiff_t m_nRefCP1 = 0x3ac; + constexpr std::ptrdiff_t m_nRefCP2 = 0x3b0; + constexpr std::ptrdiff_t m_nLerpCP = 0x3b4; + constexpr std::ptrdiff_t m_nTraceMissBehavior = 0x3c0; + constexpr std::ptrdiff_t m_bIncludeShotHull = 0x3c4; + constexpr std::ptrdiff_t m_bIncludeWater = 0x3c5; + constexpr std::ptrdiff_t m_bSetNormal = 0x3c8; + constexpr std::ptrdiff_t m_bScaleOffset = 0x3c9; + constexpr std::ptrdiff_t m_nPreserveOffsetCP = 0x3cc; + constexpr std::ptrdiff_t m_nIgnoreCP = 0x3d0; +} + +namespace C_OP_InheritFromParentParticles { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nIncrement = 0x1c8; + constexpr std::ptrdiff_t m_bRandomDistribution = 0x1cc; +} + +namespace C_OP_InheritFromParentParticlesV2 { + constexpr std::ptrdiff_t m_flScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nIncrement = 0x1c8; + constexpr std::ptrdiff_t m_bRandomDistribution = 0x1cc; + constexpr std::ptrdiff_t m_nMissingParentBehavior = 0x1d0; +} + +namespace C_OP_ReadFromNeighboringParticle { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nIncrement = 0x1c8; + constexpr std::ptrdiff_t m_DistanceCheck = 0x1d0; + constexpr std::ptrdiff_t m_flInterpolation = 0x328; +} + +namespace C_OP_InheritFromPeerSystem { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_nIncrement = 0x1c8; + constexpr std::ptrdiff_t m_nGroupID = 0x1cc; +} + +namespace C_OP_RemapVectorComponentToScalar { + constexpr std::ptrdiff_t m_nFieldInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nComponent = 0x1c8; +} + +namespace C_OP_OrientTo2dDirection { + constexpr std::ptrdiff_t m_flRotOffset = 0x1c0; + constexpr std::ptrdiff_t m_flSpinStrength = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c8; +} + +namespace C_OP_RestartAfterDuration { + constexpr std::ptrdiff_t m_flDurationMin = 0x1c0; + constexpr std::ptrdiff_t m_flDurationMax = 0x1c4; + constexpr std::ptrdiff_t m_nCP = 0x1c8; + constexpr std::ptrdiff_t m_nCPField = 0x1cc; + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_bOnlyChildren = 0x1d4; +} + +namespace C_OP_Orient2DRelToCP { + constexpr std::ptrdiff_t m_flRotOffset = 0x1c0; + constexpr std::ptrdiff_t m_flSpinStrength = 0x1c4; + constexpr std::ptrdiff_t m_nCP = 0x1c8; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1cc; +} + +namespace C_OP_MovementRotateParticleAroundAxis { + constexpr std::ptrdiff_t m_vecRotAxis = 0x1c0; + constexpr std::ptrdiff_t m_flRotRate = 0x818; + constexpr std::ptrdiff_t m_TransformInput = 0x970; + constexpr std::ptrdiff_t m_bLocalSpace = 0x9d8; +} + +namespace C_OP_RotateVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_vecRotAxisMin = 0x1c4; + constexpr std::ptrdiff_t m_vecRotAxisMax = 0x1d0; + constexpr std::ptrdiff_t m_flRotRateMin = 0x1dc; + constexpr std::ptrdiff_t m_flRotRateMax = 0x1e0; + constexpr std::ptrdiff_t m_bNormalize = 0x1e4; + constexpr std::ptrdiff_t m_flScale = 0x1e8; +} + +namespace C_OP_MaxVelocity { + constexpr std::ptrdiff_t m_flMaxVelocity = 0x1c0; + constexpr std::ptrdiff_t m_flMinVelocity = 0x1c4; + constexpr std::ptrdiff_t m_nOverrideCP = 0x1c8; + constexpr std::ptrdiff_t m_nOverrideCPField = 0x1cc; +} + +namespace C_OP_LagCompensation { + constexpr std::ptrdiff_t m_nDesiredVelocityCP = 0x1c0; + constexpr std::ptrdiff_t m_nLatencyCP = 0x1c4; + constexpr std::ptrdiff_t m_nLatencyCPField = 0x1c8; + constexpr std::ptrdiff_t m_nDesiredVelocityCPField = 0x1cc; +} + +namespace C_OP_MaintainSequentialPath { + constexpr std::ptrdiff_t m_fMaxDistance = 0x1c0; + constexpr std::ptrdiff_t m_flNumToAssign = 0x1c4; + constexpr std::ptrdiff_t m_flCohesionStrength = 0x1c8; + constexpr std::ptrdiff_t m_flTolerance = 0x1cc; + constexpr std::ptrdiff_t m_bLoop = 0x1d0; + constexpr std::ptrdiff_t m_bUseParticleCount = 0x1d1; + constexpr std::ptrdiff_t m_PathParams = 0x1e0; +} + +namespace C_OP_LockToSavedSequentialPathV2 { + constexpr std::ptrdiff_t m_flFadeStart = 0x1c0; + constexpr std::ptrdiff_t m_flFadeEnd = 0x1c4; + constexpr std::ptrdiff_t m_bCPPairs = 0x1c8; + constexpr std::ptrdiff_t m_PathParams = 0x1d0; +} + +namespace C_OP_LockToSavedSequentialPath { + constexpr std::ptrdiff_t m_flFadeStart = 0x1c4; + constexpr std::ptrdiff_t m_flFadeEnd = 0x1c8; + constexpr std::ptrdiff_t m_bCPPairs = 0x1cc; + constexpr std::ptrdiff_t m_PathParams = 0x1d0; +} + +namespace C_OP_RemapDotProductToScalar { + constexpr std::ptrdiff_t m_nInputCP1 = 0x1c0; + constexpr std::ptrdiff_t m_nInputCP2 = 0x1c4; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_bUseParticleVelocity = 0x1dc; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e0; + constexpr std::ptrdiff_t m_bActiveRange = 0x1e4; + constexpr std::ptrdiff_t m_bUseParticleNormal = 0x1e5; +} + +namespace C_OP_RemapCPtoScalar { + constexpr std::ptrdiff_t m_nCPInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nField = 0x1c8; + constexpr std::ptrdiff_t m_flInputMin = 0x1cc; + constexpr std::ptrdiff_t m_flInputMax = 0x1d0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1d4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1d8; + constexpr std::ptrdiff_t m_flStartTime = 0x1dc; + constexpr std::ptrdiff_t m_flEndTime = 0x1e0; + constexpr std::ptrdiff_t m_flInterpRate = 0x1e4; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e8; +} + +namespace C_OP_NormalLock { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; +} + +namespace C_OP_RemapCPtoVector { + constexpr std::ptrdiff_t m_nCPInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_nLocalSpaceCP = 0x1c8; + constexpr std::ptrdiff_t m_vInputMin = 0x1cc; + constexpr std::ptrdiff_t m_vInputMax = 0x1d8; + constexpr std::ptrdiff_t m_vOutputMin = 0x1e4; + constexpr std::ptrdiff_t m_vOutputMax = 0x1f0; + constexpr std::ptrdiff_t m_flStartTime = 0x1fc; + constexpr std::ptrdiff_t m_flEndTime = 0x200; + constexpr std::ptrdiff_t m_flInterpRate = 0x204; + constexpr std::ptrdiff_t m_nSetMethod = 0x208; + constexpr std::ptrdiff_t m_bOffset = 0x20c; + constexpr std::ptrdiff_t m_bAccelerate = 0x20d; +} + +namespace C_OP_SetCPtoVector { + constexpr std::ptrdiff_t m_nCPInput = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; +} + +namespace C_OP_RemapTransformToVelocity { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; +} + +namespace C_OP_RemapVelocityToVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flScale = 0x1c4; + constexpr std::ptrdiff_t m_bNormalize = 0x1c8; +} + +namespace C_OP_RemapCPVelocityToVector { + constexpr std::ptrdiff_t m_nControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flScale = 0x1c8; + constexpr std::ptrdiff_t m_bNormalize = 0x1cc; +} + +namespace C_OP_SetCPOrientationToDirection { + constexpr std::ptrdiff_t m_nInputControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_nOutputControlPoint = 0x1c4; +} + +namespace C_OP_RemapDirectionToCPToVector { + constexpr std::ptrdiff_t m_nCP = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flScale = 0x1c8; + constexpr std::ptrdiff_t m_flOffsetRot = 0x1cc; + constexpr std::ptrdiff_t m_vecOffsetAxis = 0x1d0; + constexpr std::ptrdiff_t m_bNormalize = 0x1dc; + constexpr std::ptrdiff_t m_nFieldStrength = 0x1e0; +} + +namespace C_OP_RemapCrossProductOfTwoVectorsToVector { + constexpr std::ptrdiff_t m_InputVec1 = 0x1c0; + constexpr std::ptrdiff_t m_InputVec2 = 0x818; + constexpr std::ptrdiff_t m_nFieldOutput = 0xe70; + constexpr std::ptrdiff_t m_bNormalize = 0xe74; +} + +namespace C_OP_NormalizeVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flScale = 0x1c4; +} + +namespace C_OP_RemapControlPointDirectionToVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_flScale = 0x1c4; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c8; +} + +namespace C_OP_SetCPOrientationToGroundNormal { + constexpr std::ptrdiff_t m_flInterpRate = 0x1c0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x1c4; + constexpr std::ptrdiff_t m_flTolerance = 0x1c8; + constexpr std::ptrdiff_t m_flTraceOffset = 0x1cc; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x1d0; + constexpr std::ptrdiff_t m_nTraceSet = 0x250; + constexpr std::ptrdiff_t m_nInputCP = 0x254; + constexpr std::ptrdiff_t m_nOutputCP = 0x258; + constexpr std::ptrdiff_t m_bIncludeWater = 0x268; +} + +namespace C_OP_RemapTransformOrientationToRotations { + constexpr std::ptrdiff_t m_TransformInput = 0x1c0; + constexpr std::ptrdiff_t m_vecRotation = 0x228; + constexpr std::ptrdiff_t m_bUseQuat = 0x234; + constexpr std::ptrdiff_t m_bWriteNormal = 0x235; +} + +namespace C_OP_RemapControlPointOrientationToRotation { + constexpr std::ptrdiff_t m_nCP = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; + constexpr std::ptrdiff_t m_flOffsetRot = 0x1c8; + constexpr std::ptrdiff_t m_nComponent = 0x1cc; +} + +namespace C_OP_LockToPointList { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_pointList = 0x1c8; + constexpr std::ptrdiff_t m_bPlaceAlongPath = 0x1e0; + constexpr std::ptrdiff_t m_bClosedLoop = 0x1e1; + constexpr std::ptrdiff_t m_nNumPointsAlongPath = 0x1e4; +} + +namespace C_OP_RemapNamedModelElementOnceTimed { + constexpr std::ptrdiff_t m_hModel = 0x1c0; + constexpr std::ptrdiff_t m_inNames = 0x1c8; + constexpr std::ptrdiff_t m_outNames = 0x1e0; + constexpr std::ptrdiff_t m_fallbackNames = 0x1f8; + constexpr std::ptrdiff_t m_bModelFromRenderer = 0x210; + constexpr std::ptrdiff_t m_bProportional = 0x211; + constexpr std::ptrdiff_t m_nFieldInput = 0x214; + constexpr std::ptrdiff_t m_nFieldOutput = 0x218; + constexpr std::ptrdiff_t m_flRemapTime = 0x21c; +} + +namespace C_OP_RemapNamedModelSequenceOnceTimed { +} + +namespace C_OP_RemapNamedModelBodyPartOnceTimed { +} + +namespace C_OP_RemapNamedModelMeshGroupOnceTimed { +} + +namespace C_OP_RemapNamedModelElementEndCap { + constexpr std::ptrdiff_t m_hModel = 0x1c0; + constexpr std::ptrdiff_t m_inNames = 0x1c8; + constexpr std::ptrdiff_t m_outNames = 0x1e0; + constexpr std::ptrdiff_t m_fallbackNames = 0x1f8; + constexpr std::ptrdiff_t m_bModelFromRenderer = 0x210; + constexpr std::ptrdiff_t m_nFieldInput = 0x214; + constexpr std::ptrdiff_t m_nFieldOutput = 0x218; +} + +namespace C_OP_RemapNamedModelSequenceEndCap { +} + +namespace C_OP_RemapNamedModelBodyPartEndCap { +} + +namespace C_OP_RemapNamedModelMeshGroupEndCap { +} + +namespace C_OP_SetFromCPSnapshot { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nAttributeToRead = 0x1c4; + constexpr std::ptrdiff_t m_nAttributeToWrite = 0x1c8; + constexpr std::ptrdiff_t m_nLocalSpaceCP = 0x1cc; + constexpr std::ptrdiff_t m_bRandom = 0x1d0; + constexpr std::ptrdiff_t m_bReverse = 0x1d1; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1d4; + constexpr std::ptrdiff_t m_nSnapShotStartPoint = 0x1d8; + constexpr std::ptrdiff_t m_nSnapShotIncrement = 0x330; + constexpr std::ptrdiff_t m_flInterpolation = 0x488; + constexpr std::ptrdiff_t m_bSubSample = 0x5e0; +} + +namespace C_OP_VectorFieldSnapshot { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nAttributeToWrite = 0x1c4; + constexpr std::ptrdiff_t m_nLocalSpaceCP = 0x1c8; + constexpr std::ptrdiff_t m_flInterpolation = 0x1d0; + constexpr std::ptrdiff_t m_vecScale = 0x328; + constexpr std::ptrdiff_t m_flBoundaryDampening = 0x980; + constexpr std::ptrdiff_t m_bSetVelocity = 0x984; + constexpr std::ptrdiff_t m_bLockToSurface = 0x985; + constexpr std::ptrdiff_t m_flGridSpacing = 0x988; +} + +namespace C_OP_SetAttributeToScalarExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1c0; + constexpr std::ptrdiff_t m_flInput1 = 0x1c8; + constexpr std::ptrdiff_t m_flInput2 = 0x320; + constexpr std::ptrdiff_t m_nOutputField = 0x478; + constexpr std::ptrdiff_t m_nSetMethod = 0x47c; +} + +namespace C_OP_SetVectorAttributeToVectorExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1c0; + constexpr std::ptrdiff_t m_vInput1 = 0x1c8; + constexpr std::ptrdiff_t m_vInput2 = 0x820; + constexpr std::ptrdiff_t m_nOutputField = 0xe78; + constexpr std::ptrdiff_t m_nSetMethod = 0xe7c; + constexpr std::ptrdiff_t m_bNormalizedOutput = 0xe80; +} + +namespace C_OP_SetFloatAttributeToVectorExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1c0; + constexpr std::ptrdiff_t m_vInput1 = 0x1c8; + constexpr std::ptrdiff_t m_vInput2 = 0x820; + constexpr std::ptrdiff_t m_flOutputRemap = 0xe78; + constexpr std::ptrdiff_t m_nOutputField = 0xfd0; + constexpr std::ptrdiff_t m_nSetMethod = 0xfd4; +} + +namespace C_OP_MovementSkinnedPositionFromCPSnapshot { + constexpr std::ptrdiff_t m_nSnapshotControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_bRandom = 0x1c8; + constexpr std::ptrdiff_t m_nRandomSeed = 0x1cc; + constexpr std::ptrdiff_t m_bSetNormal = 0x1d0; + constexpr std::ptrdiff_t m_bSetRadius = 0x1d1; + constexpr std::ptrdiff_t m_flIncrement = 0x1d8; + constexpr std::ptrdiff_t m_nFullLoopIncrement = 0x330; + constexpr std::ptrdiff_t m_nSnapShotStartPoint = 0x488; + constexpr std::ptrdiff_t m_flInterpolation = 0x5e0; +} + +namespace C_OP_MovementMoveAlongSkinnedCPSnapshot { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1c0; + constexpr std::ptrdiff_t m_nSnapshotControlPointNumber = 0x1c4; + constexpr std::ptrdiff_t m_bSetNormal = 0x1c8; + constexpr std::ptrdiff_t m_bSetRadius = 0x1c9; + constexpr std::ptrdiff_t m_flInterpolation = 0x1d0; + constexpr std::ptrdiff_t m_flTValue = 0x328; +} + +namespace C_OP_QuantizeFloat { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; +} + +namespace C_OP_SetFloatCollection { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; + constexpr std::ptrdiff_t m_nSetMethod = 0x31c; + constexpr std::ptrdiff_t m_Lerp = 0x320; +} + +namespace C_OP_SetFloat { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x318; + constexpr std::ptrdiff_t m_nSetMethod = 0x31c; + constexpr std::ptrdiff_t m_Lerp = 0x320; +} + +namespace C_OP_SetVec { + constexpr std::ptrdiff_t m_InputValue = 0x1c0; + constexpr std::ptrdiff_t m_nOutputField = 0x818; + constexpr std::ptrdiff_t m_nSetMethod = 0x81c; + constexpr std::ptrdiff_t m_Lerp = 0x820; + constexpr std::ptrdiff_t m_bNormalizedOutput = 0x978; +} + +namespace C_OP_DragRelativeToPlane { + constexpr std::ptrdiff_t m_flDragAtPlane = 0x1c0; + constexpr std::ptrdiff_t m_flFalloff = 0x318; + constexpr std::ptrdiff_t m_bDirectional = 0x470; + constexpr std::ptrdiff_t m_vecPlaneNormal = 0x478; + constexpr std::ptrdiff_t m_nControlPointNumber = 0xad0; +} + +namespace C_OP_RemapDensityGradientToVectorAttribute { + constexpr std::ptrdiff_t m_flRadiusScale = 0x1c0; + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c4; +} + +namespace C_OP_LockPoints { + constexpr std::ptrdiff_t m_nMinCol = 0x1c0; + constexpr std::ptrdiff_t m_nMaxCol = 0x1c4; + constexpr std::ptrdiff_t m_nMinRow = 0x1c8; + constexpr std::ptrdiff_t m_nMaxRow = 0x1cc; + constexpr std::ptrdiff_t m_nControlPoint = 0x1d0; + constexpr std::ptrdiff_t m_flBlendValue = 0x1d4; +} + +namespace C_OP_RemapDistanceToLineSegmentBase { + constexpr std::ptrdiff_t m_nCP0 = 0x1c0; + constexpr std::ptrdiff_t m_nCP1 = 0x1c4; + constexpr std::ptrdiff_t m_flMinInputValue = 0x1c8; + constexpr std::ptrdiff_t m_flMaxInputValue = 0x1cc; + constexpr std::ptrdiff_t m_bInfiniteLine = 0x1d0; +} + +namespace C_OP_RemapDistanceToLineSegmentToScalar { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1e0; + constexpr std::ptrdiff_t m_flMinOutputValue = 0x1e4; + constexpr std::ptrdiff_t m_flMaxOutputValue = 0x1e8; +} + +namespace C_OP_RemapDistanceToLineSegmentToVector { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1e0; + constexpr std::ptrdiff_t m_vMinOutputValue = 0x1e4; + constexpr std::ptrdiff_t m_vMaxOutputValue = 0x1f0; +} + +namespace C_OP_TeleportBeam { + constexpr std::ptrdiff_t m_nCPPosition = 0x1c0; + constexpr std::ptrdiff_t m_nCPVelocity = 0x1c4; + constexpr std::ptrdiff_t m_nCPMisc = 0x1c8; + constexpr std::ptrdiff_t m_nCPColor = 0x1cc; + constexpr std::ptrdiff_t m_nCPInvalidColor = 0x1d0; + constexpr std::ptrdiff_t m_nCPExtraArcData = 0x1d4; + constexpr std::ptrdiff_t m_vGravity = 0x1d8; + constexpr std::ptrdiff_t m_flArcMaxDuration = 0x1e4; + constexpr std::ptrdiff_t m_flSegmentBreak = 0x1e8; + constexpr std::ptrdiff_t m_flArcSpeed = 0x1ec; + constexpr std::ptrdiff_t m_flAlpha = 0x1f0; +} + +namespace C_OP_CycleScalar { + constexpr std::ptrdiff_t m_nDestField = 0x1c0; + constexpr std::ptrdiff_t m_flStartValue = 0x1c4; + constexpr std::ptrdiff_t m_flEndValue = 0x1c8; + constexpr std::ptrdiff_t m_flCycleTime = 0x1cc; + constexpr std::ptrdiff_t m_bDoNotRepeatCycle = 0x1d0; + constexpr std::ptrdiff_t m_bSynchronizeParticles = 0x1d1; + constexpr std::ptrdiff_t m_nCPScale = 0x1d4; + constexpr std::ptrdiff_t m_nCPFieldMin = 0x1d8; + constexpr std::ptrdiff_t m_nCPFieldMax = 0x1dc; + constexpr std::ptrdiff_t m_nSetMethod = 0x1e0; +} + +namespace C_OP_CalculateVectorAttribute { + constexpr std::ptrdiff_t m_vStartValue = 0x1c0; + constexpr std::ptrdiff_t m_nFieldInput1 = 0x1cc; + constexpr std::ptrdiff_t m_flInputScale1 = 0x1d0; + constexpr std::ptrdiff_t m_nFieldInput2 = 0x1d4; + constexpr std::ptrdiff_t m_flInputScale2 = 0x1d8; + constexpr std::ptrdiff_t m_nControlPointInput1 = 0x1dc; + constexpr std::ptrdiff_t m_flControlPointScale1 = 0x1f0; + constexpr std::ptrdiff_t m_nControlPointInput2 = 0x1f4; + constexpr std::ptrdiff_t m_flControlPointScale2 = 0x208; + constexpr std::ptrdiff_t m_nFieldOutput = 0x20c; + constexpr std::ptrdiff_t m_vFinalOutputScale = 0x210; +} + +namespace C_OP_ColorAdjustHSL { + constexpr std::ptrdiff_t m_flHueAdjust = 0x1c0; + constexpr std::ptrdiff_t m_flSaturationAdjust = 0x318; + constexpr std::ptrdiff_t m_flLightnessAdjust = 0x470; +} + +namespace C_OP_ConnectParentParticleToNearest { + constexpr std::ptrdiff_t m_nFirstControlPoint = 0x1c0; + constexpr std::ptrdiff_t m_nSecondControlPoint = 0x1c4; +} + +namespace C_OP_UpdateLightSource { + constexpr std::ptrdiff_t m_vColorTint = 0x1c0; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x1c4; + constexpr std::ptrdiff_t m_flRadiusScale = 0x1c8; + constexpr std::ptrdiff_t m_flMinimumLightingRadius = 0x1cc; + constexpr std::ptrdiff_t m_flMaximumLightingRadius = 0x1d0; + constexpr std::ptrdiff_t m_flPositionDampingConstant = 0x1d4; +} + +namespace C_OP_RemapSpeedtoCP { + constexpr std::ptrdiff_t m_nInControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d4; + constexpr std::ptrdiff_t m_nField = 0x1d8; + constexpr std::ptrdiff_t m_flInputMin = 0x1dc; + constexpr std::ptrdiff_t m_flInputMax = 0x1e0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1e4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1e8; + constexpr std::ptrdiff_t m_bUseDeltaV = 0x1ec; +} + +namespace C_OP_RemapAverageHitboxSpeedtoCP { + constexpr std::ptrdiff_t m_nInControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d4; + constexpr std::ptrdiff_t m_nField = 0x1d8; + constexpr std::ptrdiff_t m_flInputMin = 0x1e0; + constexpr std::ptrdiff_t m_flInputMax = 0x338; + constexpr std::ptrdiff_t m_flOutputMin = 0x490; + constexpr std::ptrdiff_t m_flOutputMax = 0x5e8; + constexpr std::ptrdiff_t m_nHeightControlPointNumber = 0x740; + constexpr std::ptrdiff_t m_vecComparisonVelocity = 0x748; + constexpr std::ptrdiff_t m_HitboxSetName = 0xda0; +} + +namespace C_OP_RemapDotProductToCP { + constexpr std::ptrdiff_t m_nInputCP1 = 0x1d0; + constexpr std::ptrdiff_t m_nInputCP2 = 0x1d4; + constexpr std::ptrdiff_t m_nOutputCP = 0x1d8; + constexpr std::ptrdiff_t m_nOutVectorField = 0x1dc; + constexpr std::ptrdiff_t m_flInputMin = 0x1e0; + constexpr std::ptrdiff_t m_flInputMax = 0x338; + constexpr std::ptrdiff_t m_flOutputMin = 0x490; + constexpr std::ptrdiff_t m_flOutputMax = 0x5e8; +} + +namespace C_OP_SetControlPointFieldToScalarExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1d0; + constexpr std::ptrdiff_t m_flInput1 = 0x1d8; + constexpr std::ptrdiff_t m_flInput2 = 0x330; + constexpr std::ptrdiff_t m_flOutputRemap = 0x488; + constexpr std::ptrdiff_t m_nOutputCP = 0x5e0; + constexpr std::ptrdiff_t m_nOutVectorField = 0x5e4; +} + +namespace C_OP_SetControlPointFieldFromVectorExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1d0; + constexpr std::ptrdiff_t m_vecInput1 = 0x1d8; + constexpr std::ptrdiff_t m_vecInput2 = 0x830; + constexpr std::ptrdiff_t m_flOutputRemap = 0xe88; + constexpr std::ptrdiff_t m_nOutputCP = 0xfe0; + constexpr std::ptrdiff_t m_nOutVectorField = 0xfe4; +} + +namespace C_OP_SetControlPointToVectorExpression { + constexpr std::ptrdiff_t m_nExpression = 0x1d0; + constexpr std::ptrdiff_t m_nOutputCP = 0x1d4; + constexpr std::ptrdiff_t m_vInput1 = 0x1d8; + constexpr std::ptrdiff_t m_vInput2 = 0x830; + constexpr std::ptrdiff_t m_bNormalizedOutput = 0xe88; +} + +namespace C_OP_RemapModelVolumetoCP { + constexpr std::ptrdiff_t m_nBBoxType = 0x1d0; + constexpr std::ptrdiff_t m_nInControlPointNumber = 0x1d4; + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d8; + constexpr std::ptrdiff_t m_nOutControlPointMaxNumber = 0x1dc; + constexpr std::ptrdiff_t m_nField = 0x1e0; + constexpr std::ptrdiff_t m_flInputMin = 0x1e4; + constexpr std::ptrdiff_t m_flInputMax = 0x1e8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1ec; + constexpr std::ptrdiff_t m_flOutputMax = 0x1f0; +} + +namespace C_OP_RemapBoundingVolumetoCP { + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_flInputMin = 0x1d4; + constexpr std::ptrdiff_t m_flInputMax = 0x1d8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1dc; + constexpr std::ptrdiff_t m_flOutputMax = 0x1e0; +} + +namespace C_OP_RemapAverageScalarValuetoCP { + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_nOutVectorField = 0x1d4; + constexpr std::ptrdiff_t m_nField = 0x1d8; + constexpr std::ptrdiff_t m_flInputMin = 0x1dc; + constexpr std::ptrdiff_t m_flInputMax = 0x1e0; + constexpr std::ptrdiff_t m_flOutputMin = 0x1e4; + constexpr std::ptrdiff_t m_flOutputMax = 0x1e8; +} + +namespace C_OP_RampCPLinearRandom { + constexpr std::ptrdiff_t m_nOutControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_vecRateMin = 0x1d4; + constexpr std::ptrdiff_t m_vecRateMax = 0x1e0; +} + +namespace C_OP_SetParentControlPointsToChildCP { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_nChildControlPoint = 0x1d4; + constexpr std::ptrdiff_t m_nNumControlPoints = 0x1d8; + constexpr std::ptrdiff_t m_nFirstSourcePoint = 0x1dc; + constexpr std::ptrdiff_t m_bSetOrientation = 0x1e0; +} + +namespace C_OP_SetVariable { + constexpr std::ptrdiff_t m_variableReference = 0x1d0; + constexpr std::ptrdiff_t m_transformInput = 0x210; + constexpr std::ptrdiff_t m_positionOffset = 0x278; + constexpr std::ptrdiff_t m_rotationOffset = 0x284; + constexpr std::ptrdiff_t m_vecInput = 0x290; + constexpr std::ptrdiff_t m_floatInput = 0x8e8; +} + +namespace C_OP_SetControlPointPositions { + constexpr std::ptrdiff_t m_bUseWorldLocation = 0x1d0; + constexpr std::ptrdiff_t m_bOrient = 0x1d1; + constexpr std::ptrdiff_t m_bSetOnce = 0x1d2; + constexpr std::ptrdiff_t m_nCP1 = 0x1d4; + constexpr std::ptrdiff_t m_nCP2 = 0x1d8; + constexpr std::ptrdiff_t m_nCP3 = 0x1dc; + constexpr std::ptrdiff_t m_nCP4 = 0x1e0; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1e4; + constexpr std::ptrdiff_t m_vecCP2Pos = 0x1f0; + constexpr std::ptrdiff_t m_vecCP3Pos = 0x1fc; + constexpr std::ptrdiff_t m_vecCP4Pos = 0x208; + constexpr std::ptrdiff_t m_nHeadLocation = 0x214; +} + +namespace C_OP_SetSingleControlPointPosition { + constexpr std::ptrdiff_t m_bSetOnce = 0x1d0; + constexpr std::ptrdiff_t m_nCP1 = 0x1d4; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d8; + constexpr std::ptrdiff_t m_transformInput = 0x830; +} + +namespace C_OP_SetControlPointPositionToRandomActiveCP { + constexpr std::ptrdiff_t m_nCP1 = 0x1d0; + constexpr std::ptrdiff_t m_nHeadLocationMin = 0x1d4; + constexpr std::ptrdiff_t m_nHeadLocationMax = 0x1d8; + constexpr std::ptrdiff_t m_flResetRate = 0x1e0; +} + +namespace C_OP_SetRandomControlPointPosition { + constexpr std::ptrdiff_t m_bUseWorldLocation = 0x1d0; + constexpr std::ptrdiff_t m_bOrient = 0x1d1; + constexpr std::ptrdiff_t m_nCP1 = 0x1d4; + constexpr std::ptrdiff_t m_nHeadLocation = 0x1d8; + constexpr std::ptrdiff_t m_flReRandomRate = 0x1e0; + constexpr std::ptrdiff_t m_vecCPMinPos = 0x338; + constexpr std::ptrdiff_t m_vecCPMaxPos = 0x344; + constexpr std::ptrdiff_t m_flInterpolation = 0x350; +} + +namespace C_OP_SetControlPointOrientation { + constexpr std::ptrdiff_t m_bUseWorldLocation = 0x1d0; + constexpr std::ptrdiff_t m_bRandomize = 0x1d2; + constexpr std::ptrdiff_t m_bSetOnce = 0x1d3; + constexpr std::ptrdiff_t m_nCP = 0x1d4; + constexpr std::ptrdiff_t m_nHeadLocation = 0x1d8; + constexpr std::ptrdiff_t m_vecRotation = 0x1dc; + constexpr std::ptrdiff_t m_vecRotationB = 0x1e8; + constexpr std::ptrdiff_t m_flInterpolation = 0x1f8; +} + +namespace C_OP_SetControlPointFromObjectScale { + constexpr std::ptrdiff_t m_nCPInput = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutput = 0x1d4; +} + +namespace C_OP_DistanceBetweenCPsToCP { + constexpr std::ptrdiff_t m_nStartCP = 0x1d0; + constexpr std::ptrdiff_t m_nEndCP = 0x1d4; + constexpr std::ptrdiff_t m_nOutputCP = 0x1d8; + constexpr std::ptrdiff_t m_nOutputCPField = 0x1dc; + constexpr std::ptrdiff_t m_bSetOnce = 0x1e0; + constexpr std::ptrdiff_t m_flInputMin = 0x1e4; + constexpr std::ptrdiff_t m_flInputMax = 0x1e8; + constexpr std::ptrdiff_t m_flOutputMin = 0x1ec; + constexpr std::ptrdiff_t m_flOutputMax = 0x1f0; + constexpr std::ptrdiff_t m_flMaxTraceLength = 0x1f4; + constexpr std::ptrdiff_t m_flLOSScale = 0x1f8; + constexpr std::ptrdiff_t m_bLOS = 0x1fc; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x1fd; + constexpr std::ptrdiff_t m_nTraceSet = 0x280; + constexpr std::ptrdiff_t m_nSetParent = 0x284; +} + +namespace C_OP_SetControlPointToPlayer { + constexpr std::ptrdiff_t m_nCP1 = 0x1d0; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d4; + constexpr std::ptrdiff_t m_bOrientToEyes = 0x1e0; +} + +namespace C_OP_SetControlPointToHand { + constexpr std::ptrdiff_t m_nCP1 = 0x1d0; + constexpr std::ptrdiff_t m_nHand = 0x1d4; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d8; + constexpr std::ptrdiff_t m_bOrientToHand = 0x1e4; +} + +namespace C_OP_SetControlPointToHMD { + constexpr std::ptrdiff_t m_nCP1 = 0x1d0; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d4; + constexpr std::ptrdiff_t m_bOrientToHMD = 0x1e0; +} + +namespace C_OP_SetControlPointPositionToTimeOfDayValue { + constexpr std::ptrdiff_t m_nControlPointNumber = 0x1d0; + constexpr std::ptrdiff_t m_pszTimeOfDayParameter = 0x1d4; + constexpr std::ptrdiff_t m_vecDefaultValue = 0x254; +} + +namespace C_OP_SetControlPointToCenter { + constexpr std::ptrdiff_t m_nCP1 = 0x1d0; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d4; + constexpr std::ptrdiff_t m_nSetParent = 0x1e0; +} + +namespace C_OP_SetControlPointToCPVelocity { + constexpr std::ptrdiff_t m_nCPInput = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutputVel = 0x1d4; + constexpr std::ptrdiff_t m_bNormalize = 0x1d8; + constexpr std::ptrdiff_t m_nCPOutputMag = 0x1dc; + constexpr std::ptrdiff_t m_nCPField = 0x1e0; + constexpr std::ptrdiff_t m_vecComparisonVelocity = 0x1e8; +} + +namespace C_OP_SetControlPointOrientationToCPVelocity { + constexpr std::ptrdiff_t m_nCPInput = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutput = 0x1d4; +} + +namespace C_OP_StopAfterCPDuration { + constexpr std::ptrdiff_t m_flDuration = 0x1d0; + constexpr std::ptrdiff_t m_bDestroyImmediately = 0x328; + constexpr std::ptrdiff_t m_bPlayEndCap = 0x329; +} + +namespace C_OP_SetControlPointRotation { + constexpr std::ptrdiff_t m_vecRotAxis = 0x1d0; + constexpr std::ptrdiff_t m_flRotRate = 0x828; + constexpr std::ptrdiff_t m_nCP = 0x980; + constexpr std::ptrdiff_t m_nLocalCP = 0x984; +} + +namespace C_OP_RemapCPtoCP { + constexpr std::ptrdiff_t m_nInputControlPoint = 0x1d0; + constexpr std::ptrdiff_t m_nOutputControlPoint = 0x1d4; + constexpr std::ptrdiff_t m_nInputField = 0x1d8; + constexpr std::ptrdiff_t m_nOutputField = 0x1dc; + constexpr std::ptrdiff_t m_flInputMin = 0x1e0; + constexpr std::ptrdiff_t m_flInputMax = 0x1e4; + constexpr std::ptrdiff_t m_flOutputMin = 0x1e8; + constexpr std::ptrdiff_t m_flOutputMax = 0x1ec; + constexpr std::ptrdiff_t m_bDerivative = 0x1f0; + constexpr std::ptrdiff_t m_flInterpRate = 0x1f4; +} + +namespace C_OP_HSVShiftToCP { + constexpr std::ptrdiff_t m_nColorCP = 0x1d0; + constexpr std::ptrdiff_t m_nColorGemEnableCP = 0x1d4; + constexpr std::ptrdiff_t m_nOutputCP = 0x1d8; + constexpr std::ptrdiff_t m_DefaultHSVColor = 0x1dc; +} + +namespace C_OP_SetControlPointToImpactPoint { + constexpr std::ptrdiff_t m_nCPOut = 0x1d0; + constexpr std::ptrdiff_t m_nCPIn = 0x1d4; + constexpr std::ptrdiff_t m_flUpdateRate = 0x1d8; + constexpr std::ptrdiff_t m_flTraceLength = 0x1e0; + constexpr std::ptrdiff_t m_flStartOffset = 0x338; + constexpr std::ptrdiff_t m_flOffset = 0x33c; + constexpr std::ptrdiff_t m_vecTraceDir = 0x340; + constexpr std::ptrdiff_t m_CollisionGroupName = 0x34c; + constexpr std::ptrdiff_t m_nTraceSet = 0x3cc; + constexpr std::ptrdiff_t m_bSetToEndpoint = 0x3d0; + constexpr std::ptrdiff_t m_bTraceToClosestSurface = 0x3d1; + constexpr std::ptrdiff_t m_bIncludeWater = 0x3d2; +} + +namespace C_OP_SetCPOrientationToPointAtCP { + constexpr std::ptrdiff_t m_nInputCP = 0x1d0; + constexpr std::ptrdiff_t m_nOutputCP = 0x1d4; + constexpr std::ptrdiff_t m_flInterpolation = 0x1d8; + constexpr std::ptrdiff_t m_b2DOrientation = 0x330; + constexpr std::ptrdiff_t m_bAvoidSingularity = 0x331; + constexpr std::ptrdiff_t m_bPointAway = 0x332; +} + +namespace C_OP_EnableChildrenFromParentParticleCount { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_nFirstChild = 0x1d4; + constexpr std::ptrdiff_t m_nNumChildrenToEnable = 0x1d8; + constexpr std::ptrdiff_t m_bDisableChildren = 0x330; + constexpr std::ptrdiff_t m_bPlayEndcapOnStop = 0x331; + constexpr std::ptrdiff_t m_bDestroyImmediately = 0x332; +} + +namespace C_OP_SelectivelyEnableChildren { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_nFirstChild = 0x328; + constexpr std::ptrdiff_t m_nNumChildrenToEnable = 0x480; + constexpr std::ptrdiff_t m_bPlayEndcapOnStop = 0x5d8; + constexpr std::ptrdiff_t m_bDestroyImmediately = 0x5d9; +} + +namespace C_OP_PlayEndCapWhenFinished { + constexpr std::ptrdiff_t m_bFireOnEmissionEnd = 0x1d0; + constexpr std::ptrdiff_t m_bIncludeChildren = 0x1d1; +} + +namespace C_OP_ForceControlPointStub { + constexpr std::ptrdiff_t m_ControlPoint = 0x1d0; +} + +namespace C_OP_DriveCPFromGlobalSoundFloat { + constexpr std::ptrdiff_t m_nOutputControlPoint = 0x1d0; + constexpr std::ptrdiff_t m_nOutputField = 0x1d4; + constexpr std::ptrdiff_t m_flInputMin = 0x1d8; + constexpr std::ptrdiff_t m_flInputMax = 0x1dc; + constexpr std::ptrdiff_t m_flOutputMin = 0x1e0; + constexpr std::ptrdiff_t m_flOutputMax = 0x1e4; + constexpr std::ptrdiff_t m_StackName = 0x1e8; + constexpr std::ptrdiff_t m_OperatorName = 0x1f0; + constexpr std::ptrdiff_t m_FieldName = 0x1f8; +} + +namespace C_OP_SetControlPointFieldToWater { + constexpr std::ptrdiff_t m_nSourceCP = 0x1d0; + constexpr std::ptrdiff_t m_nDestCP = 0x1d4; + constexpr std::ptrdiff_t m_nCPField = 0x1d8; +} + +namespace C_OP_SetControlPointToWaterSurface { + constexpr std::ptrdiff_t m_nSourceCP = 0x1d0; + constexpr std::ptrdiff_t m_nDestCP = 0x1d4; + constexpr std::ptrdiff_t m_nFlowCP = 0x1d8; + constexpr std::ptrdiff_t m_nActiveCP = 0x1dc; + constexpr std::ptrdiff_t m_nActiveCPField = 0x1e0; + constexpr std::ptrdiff_t m_flRetestRate = 0x1e8; + constexpr std::ptrdiff_t m_bAdaptiveThreshold = 0x340; +} + +namespace C_OP_RepeatedTriggerChildGroup { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_flClusterRefireTime = 0x1d8; + constexpr std::ptrdiff_t m_flClusterSize = 0x330; + constexpr std::ptrdiff_t m_flClusterCooldown = 0x488; + constexpr std::ptrdiff_t m_bLimitChildCount = 0x5e0; +} + +namespace C_OP_ChooseRandomChildrenInGroup { + constexpr std::ptrdiff_t m_nChildGroupID = 0x1d0; + constexpr std::ptrdiff_t m_flNumberOfChildren = 0x1d8; +} + +namespace C_OP_SetSimulationRate { + constexpr std::ptrdiff_t m_flSimulationScale = 0x1d0; +} + +namespace C_OP_ControlPointToRadialScreenSpace { + constexpr std::ptrdiff_t m_nCPIn = 0x1d0; + constexpr std::ptrdiff_t m_vecCP1Pos = 0x1d4; + constexpr std::ptrdiff_t m_nCPOut = 0x1e0; + constexpr std::ptrdiff_t m_nCPOutField = 0x1e4; + constexpr std::ptrdiff_t m_nCPSSPosOut = 0x1e8; +} + +namespace C_OP_LightningSnapshotGenerator { + constexpr std::ptrdiff_t m_nCPSnapshot = 0x1d0; + constexpr std::ptrdiff_t m_nCPStartPnt = 0x1d4; + constexpr std::ptrdiff_t m_nCPEndPnt = 0x1d8; + constexpr std::ptrdiff_t m_flSegments = 0x1e0; + constexpr std::ptrdiff_t m_flOffset = 0x338; + constexpr std::ptrdiff_t m_flOffsetDecay = 0x490; + constexpr std::ptrdiff_t m_flRecalcRate = 0x5e8; + constexpr std::ptrdiff_t m_flUVScale = 0x740; + constexpr std::ptrdiff_t m_flUVOffset = 0x898; + constexpr std::ptrdiff_t m_flSplitRate = 0x9f0; + constexpr std::ptrdiff_t m_flBranchTwist = 0xb48; + constexpr std::ptrdiff_t m_nBranchBehavior = 0xca0; + constexpr std::ptrdiff_t m_flRadiusStart = 0xca8; + constexpr std::ptrdiff_t m_flRadiusEnd = 0xe00; + constexpr std::ptrdiff_t m_flDedicatedPool = 0xf58; +} + +namespace C_OP_RemapExternalWindToCP { + constexpr std::ptrdiff_t m_nCP = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutput = 0x1d4; + constexpr std::ptrdiff_t m_vecScale = 0x1d8; + constexpr std::ptrdiff_t m_bSetMagnitude = 0x830; + constexpr std::ptrdiff_t m_nOutVectorField = 0x834; +} + +namespace C_OP_SetGravityToCP { + constexpr std::ptrdiff_t m_nCPInput = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutput = 0x1d4; + constexpr std::ptrdiff_t m_flScale = 0x1d8; + constexpr std::ptrdiff_t m_bSetOrientation = 0x330; + constexpr std::ptrdiff_t m_bSetZDown = 0x331; +} + +namespace C_OP_QuantizeCPComponent { + constexpr std::ptrdiff_t m_flInputValue = 0x1d0; + constexpr std::ptrdiff_t m_nCPOutput = 0x328; + constexpr std::ptrdiff_t m_nOutVectorField = 0x32c; + constexpr std::ptrdiff_t m_flQuantizeValue = 0x330; +} + +namespace C_OP_RenderPoints { + constexpr std::ptrdiff_t m_hMaterial = 0x200; +} + +namespace CBaseTrailRenderer { + constexpr std::ptrdiff_t m_nOrientationType = 0x2470; + constexpr std::ptrdiff_t m_nOrientationControlPoint = 0x2474; + constexpr std::ptrdiff_t m_flMinSize = 0x2478; + constexpr std::ptrdiff_t m_flMaxSize = 0x247c; + constexpr std::ptrdiff_t m_flStartFadeSize = 0x2480; + constexpr std::ptrdiff_t m_flEndFadeSize = 0x25d8; + constexpr std::ptrdiff_t m_bClampV = 0x2730; +} + +namespace C_OP_RenderTrails { + constexpr std::ptrdiff_t m_bEnableFadingAndClamping = 0x2740; + constexpr std::ptrdiff_t m_flStartFadeDot = 0x2744; + constexpr std::ptrdiff_t m_flEndFadeDot = 0x2748; + constexpr std::ptrdiff_t m_nPrevPntSource = 0x274c; + constexpr std::ptrdiff_t m_flMaxLength = 0x2750; + constexpr std::ptrdiff_t m_flMinLength = 0x2754; + constexpr std::ptrdiff_t m_bIgnoreDT = 0x2758; + constexpr std::ptrdiff_t m_flConstrainRadiusToLengthRatio = 0x275c; + constexpr std::ptrdiff_t m_flLengthScale = 0x2760; + constexpr std::ptrdiff_t m_flLengthFadeInTime = 0x2764; + constexpr std::ptrdiff_t m_flRadiusHeadTaper = 0x2768; + constexpr std::ptrdiff_t m_vecHeadColorScale = 0x28c0; + constexpr std::ptrdiff_t m_flHeadAlphaScale = 0x2f18; + constexpr std::ptrdiff_t m_flRadiusTaper = 0x3070; + constexpr std::ptrdiff_t m_vecTailColorScale = 0x31c8; + constexpr std::ptrdiff_t m_flTailAlphaScale = 0x3820; + constexpr std::ptrdiff_t m_nHorizCropField = 0x3978; + constexpr std::ptrdiff_t m_nVertCropField = 0x397c; + constexpr std::ptrdiff_t m_flForwardShift = 0x3980; + constexpr std::ptrdiff_t m_bFlipUVBasedOnPitchYaw = 0x3984; +} + +namespace C_OP_RenderRopes { + constexpr std::ptrdiff_t m_bEnableFadingAndClamping = 0x2470; + constexpr std::ptrdiff_t m_flMinSize = 0x2474; + constexpr std::ptrdiff_t m_flMaxSize = 0x2478; + constexpr std::ptrdiff_t m_flStartFadeSize = 0x247c; + constexpr std::ptrdiff_t m_flEndFadeSize = 0x2480; + constexpr std::ptrdiff_t m_flStartFadeDot = 0x2484; + constexpr std::ptrdiff_t m_flEndFadeDot = 0x2488; + constexpr std::ptrdiff_t m_flRadiusTaper = 0x248c; + constexpr std::ptrdiff_t m_nMinTesselation = 0x2490; + constexpr std::ptrdiff_t m_nMaxTesselation = 0x2494; + constexpr std::ptrdiff_t m_flTessScale = 0x2498; + constexpr std::ptrdiff_t m_flTextureVWorldSize = 0x24a0; + constexpr std::ptrdiff_t m_flTextureVScrollRate = 0x25f8; + constexpr std::ptrdiff_t m_flTextureVOffset = 0x2750; + constexpr std::ptrdiff_t m_nTextureVParamsCP = 0x28a8; + constexpr std::ptrdiff_t m_bClampV = 0x28ac; + constexpr std::ptrdiff_t m_nScaleCP1 = 0x28b0; + constexpr std::ptrdiff_t m_nScaleCP2 = 0x28b4; + constexpr std::ptrdiff_t m_flScaleVSizeByControlPointDistance = 0x28b8; + constexpr std::ptrdiff_t m_flScaleVScrollByControlPointDistance = 0x28bc; + constexpr std::ptrdiff_t m_flScaleVOffsetByControlPointDistance = 0x28c0; + constexpr std::ptrdiff_t m_bUseScalarForTextureCoordinate = 0x28c5; + constexpr std::ptrdiff_t m_nScalarFieldForTextureCoordinate = 0x28c8; + constexpr std::ptrdiff_t m_flScalarAttributeTextureCoordScale = 0x28cc; + constexpr std::ptrdiff_t m_bReverseOrder = 0x28d0; + constexpr std::ptrdiff_t m_bClosedLoop = 0x28d1; + constexpr std::ptrdiff_t m_nOrientationType = 0x28d4; + constexpr std::ptrdiff_t m_nVectorFieldForOrientation = 0x28d8; + constexpr std::ptrdiff_t m_bDrawAsOpaque = 0x28dc; + constexpr std::ptrdiff_t m_bGenerateNormals = 0x28dd; +} + +namespace C_OP_RenderAsModels { + constexpr std::ptrdiff_t m_ModelList = 0x200; + constexpr std::ptrdiff_t m_flModelScale = 0x21c; + constexpr std::ptrdiff_t m_bFitToModelSize = 0x220; + constexpr std::ptrdiff_t m_bNonUniformScaling = 0x221; + constexpr std::ptrdiff_t m_nXAxisScalingAttribute = 0x224; + constexpr std::ptrdiff_t m_nYAxisScalingAttribute = 0x228; + constexpr std::ptrdiff_t m_nZAxisScalingAttribute = 0x22c; + constexpr std::ptrdiff_t m_nSizeCullBloat = 0x230; +} + +namespace C_OP_RenderLights { + constexpr std::ptrdiff_t m_flAnimationRate = 0x210; + constexpr std::ptrdiff_t m_nAnimationType = 0x214; + constexpr std::ptrdiff_t m_bAnimateInFPS = 0x218; + constexpr std::ptrdiff_t m_flMinSize = 0x21c; + constexpr std::ptrdiff_t m_flMaxSize = 0x220; + constexpr std::ptrdiff_t m_flStartFadeSize = 0x224; + constexpr std::ptrdiff_t m_flEndFadeSize = 0x228; +} + +namespace C_OP_RenderBlobs { + constexpr std::ptrdiff_t m_cubeWidth = 0x200; + constexpr std::ptrdiff_t m_cutoffRadius = 0x358; + constexpr std::ptrdiff_t m_renderRadius = 0x4b0; + constexpr std::ptrdiff_t m_nScaleCP = 0x608; + constexpr std::ptrdiff_t m_MaterialVars = 0x610; + constexpr std::ptrdiff_t m_hMaterial = 0x640; +} + +namespace C_OP_RenderGpuImplicit { + constexpr std::ptrdiff_t m_bUsePerParticleRadius = 0x200; + constexpr std::ptrdiff_t m_fGridSize = 0x208; + constexpr std::ptrdiff_t m_fRadiusScale = 0x360; + constexpr std::ptrdiff_t m_fIsosurfaceThreshold = 0x4b8; + constexpr std::ptrdiff_t m_nScaleCP = 0x610; + constexpr std::ptrdiff_t m_hMaterial = 0x618; +} + +namespace C_OP_RenderScreenVelocityRotate { + constexpr std::ptrdiff_t m_flRotateRateDegrees = 0x200; + constexpr std::ptrdiff_t m_flForwardDegrees = 0x204; +} + +namespace C_OP_RenderModels { + constexpr std::ptrdiff_t m_bOnlyRenderInEffectsBloomPass = 0x200; + constexpr std::ptrdiff_t m_bOnlyRenderInEffectsWaterPass = 0x201; + constexpr std::ptrdiff_t m_bUseMixedResolutionRendering = 0x202; + constexpr std::ptrdiff_t m_bOnlyRenderInEffecsGameOverlay = 0x203; + constexpr std::ptrdiff_t m_ModelList = 0x208; + constexpr std::ptrdiff_t m_nBodyGroupField = 0x224; + constexpr std::ptrdiff_t m_nSubModelField = 0x228; + constexpr std::ptrdiff_t m_bIgnoreNormal = 0x22c; + constexpr std::ptrdiff_t m_bOrientZ = 0x22d; + constexpr std::ptrdiff_t m_bCenterOffset = 0x22e; + constexpr std::ptrdiff_t m_vecLocalOffset = 0x230; + constexpr std::ptrdiff_t m_vecLocalRotation = 0x888; + constexpr std::ptrdiff_t m_bIgnoreRadius = 0xee0; + constexpr std::ptrdiff_t m_nModelScaleCP = 0xee4; + constexpr std::ptrdiff_t m_vecComponentScale = 0xee8; + constexpr std::ptrdiff_t m_bLocalScale = 0x1540; + constexpr std::ptrdiff_t m_bAnimated = 0x1541; + constexpr std::ptrdiff_t m_flAnimationRate = 0x1544; + constexpr std::ptrdiff_t m_bScaleAnimationRate = 0x1548; + constexpr std::ptrdiff_t m_bForceLoopingAnimation = 0x1549; + constexpr std::ptrdiff_t m_bResetAnimOnStop = 0x154a; + constexpr std::ptrdiff_t m_bManualAnimFrame = 0x154b; + constexpr std::ptrdiff_t m_nAnimationScaleField = 0x154c; + constexpr std::ptrdiff_t m_nAnimationField = 0x1550; + constexpr std::ptrdiff_t m_nManualFrameField = 0x1554; + constexpr std::ptrdiff_t m_ActivityName = 0x1558; + constexpr std::ptrdiff_t m_SequenceName = 0x1658; + constexpr std::ptrdiff_t m_bEnableClothSimulation = 0x1758; + constexpr std::ptrdiff_t m_hOverrideMaterial = 0x1760; + constexpr std::ptrdiff_t m_bOverrideTranslucentMaterials = 0x1768; + constexpr std::ptrdiff_t m_nSkin = 0x1770; + constexpr std::ptrdiff_t m_MaterialVars = 0x18c8; + constexpr std::ptrdiff_t m_modelInput = 0x18e0; + constexpr std::ptrdiff_t m_nLOD = 0x1940; + constexpr std::ptrdiff_t m_EconSlotName = 0x1944; + constexpr std::ptrdiff_t m_bOriginalModel = 0x1a44; + constexpr std::ptrdiff_t m_bSuppressTint = 0x1a45; + constexpr std::ptrdiff_t m_bUseRawMeshGroup = 0x1a46; + constexpr std::ptrdiff_t m_bDisableShadows = 0x1a47; + constexpr std::ptrdiff_t m_bAcceptsDecals = 0x1a48; + constexpr std::ptrdiff_t m_bForceDrawInterlevedWithSiblings = 0x1a49; + constexpr std::ptrdiff_t m_bDoNotDrawInParticlePass = 0x1a4a; + constexpr std::ptrdiff_t m_szRenderAttribute = 0x1a4b; + constexpr std::ptrdiff_t m_flRadiusScale = 0x1b50; + constexpr std::ptrdiff_t m_flAlphaScale = 0x1ca8; + constexpr std::ptrdiff_t m_flRollScale = 0x1e00; + constexpr std::ptrdiff_t m_nAlpha2Field = 0x1f58; + constexpr std::ptrdiff_t m_vecColorScale = 0x1f60; + constexpr std::ptrdiff_t m_nColorBlendType = 0x25b8; +} + +namespace C_OP_RenderMaterialProxy { + constexpr std::ptrdiff_t m_nMaterialControlPoint = 0x200; + constexpr std::ptrdiff_t m_nProxyType = 0x204; + constexpr std::ptrdiff_t m_MaterialVars = 0x208; + constexpr std::ptrdiff_t m_hOverrideMaterial = 0x220; + constexpr std::ptrdiff_t m_flMaterialOverrideEnabled = 0x228; + constexpr std::ptrdiff_t m_vecColorScale = 0x380; + constexpr std::ptrdiff_t m_flAlpha = 0x9d8; + constexpr std::ptrdiff_t m_nColorBlendType = 0xb30; +} + +namespace C_OP_RenderProjected { + constexpr std::ptrdiff_t m_bProjectCharacter = 0x200; + constexpr std::ptrdiff_t m_bProjectWorld = 0x201; + constexpr std::ptrdiff_t m_bProjectWater = 0x202; + constexpr std::ptrdiff_t m_bFlipHorizontal = 0x203; + constexpr std::ptrdiff_t m_bEnableProjectedDepthControls = 0x204; + constexpr std::ptrdiff_t m_flMinProjectionDepth = 0x208; + constexpr std::ptrdiff_t m_flMaxProjectionDepth = 0x20c; + constexpr std::ptrdiff_t m_hProjectedMaterial = 0x210; + constexpr std::ptrdiff_t m_flAnimationTimeScale = 0x218; + constexpr std::ptrdiff_t m_bOrientToNormal = 0x21c; + constexpr std::ptrdiff_t m_MaterialVars = 0x220; +} + +namespace C_OP_RenderDeferredLight { + constexpr std::ptrdiff_t m_bUseAlphaTestWindow = 0x200; + constexpr std::ptrdiff_t m_bUseTexture = 0x201; + constexpr std::ptrdiff_t m_flRadiusScale = 0x204; + constexpr std::ptrdiff_t m_flAlphaScale = 0x208; + constexpr std::ptrdiff_t m_nAlpha2Field = 0x20c; + constexpr std::ptrdiff_t m_vecColorScale = 0x210; + constexpr std::ptrdiff_t m_nColorBlendType = 0x868; + constexpr std::ptrdiff_t m_flLightDistance = 0x86c; + constexpr std::ptrdiff_t m_flStartFalloff = 0x870; + constexpr std::ptrdiff_t m_flDistanceFalloff = 0x874; + constexpr std::ptrdiff_t m_flSpotFoV = 0x878; + constexpr std::ptrdiff_t m_nAlphaTestPointField = 0x87c; + constexpr std::ptrdiff_t m_nAlphaTestRangeField = 0x880; + constexpr std::ptrdiff_t m_nAlphaTestSharpnessField = 0x884; + constexpr std::ptrdiff_t m_hTexture = 0x888; + constexpr std::ptrdiff_t m_nHSVShiftControlPoint = 0x890; +} + +namespace C_OP_RenderStandardLight { + constexpr std::ptrdiff_t m_nLightType = 0x200; + constexpr std::ptrdiff_t m_vecColorScale = 0x208; + constexpr std::ptrdiff_t m_nColorBlendType = 0x860; + constexpr std::ptrdiff_t m_flIntensity = 0x868; + constexpr std::ptrdiff_t m_bCastShadows = 0x9c0; + constexpr std::ptrdiff_t m_flTheta = 0x9c8; + constexpr std::ptrdiff_t m_flPhi = 0xb20; + constexpr std::ptrdiff_t m_flRadiusMultiplier = 0xc78; + constexpr std::ptrdiff_t m_nAttenuationStyle = 0xdd0; + constexpr std::ptrdiff_t m_flFalloffLinearity = 0xdd8; + constexpr std::ptrdiff_t m_flFiftyPercentFalloff = 0xf30; + constexpr std::ptrdiff_t m_flZeroPercentFalloff = 0x1088; + constexpr std::ptrdiff_t m_bRenderDiffuse = 0x11e0; + constexpr std::ptrdiff_t m_bRenderSpecular = 0x11e1; + constexpr std::ptrdiff_t m_lightCookie = 0x11e8; + constexpr std::ptrdiff_t m_nPriority = 0x11f0; + constexpr std::ptrdiff_t m_nFogLightingMode = 0x11f4; + constexpr std::ptrdiff_t m_flFogContribution = 0x11f8; + constexpr std::ptrdiff_t m_nCapsuleLightBehavior = 0x1350; + constexpr std::ptrdiff_t m_flCapsuleLength = 0x1354; + constexpr std::ptrdiff_t m_bReverseOrder = 0x1358; + constexpr std::ptrdiff_t m_bClosedLoop = 0x1359; + constexpr std::ptrdiff_t m_nPrevPntSource = 0x135c; + constexpr std::ptrdiff_t m_flMaxLength = 0x1360; + constexpr std::ptrdiff_t m_flMinLength = 0x1364; + constexpr std::ptrdiff_t m_bIgnoreDT = 0x1368; + constexpr std::ptrdiff_t m_flConstrainRadiusToLengthRatio = 0x136c; + constexpr std::ptrdiff_t m_flLengthScale = 0x1370; + constexpr std::ptrdiff_t m_flLengthFadeInTime = 0x1374; +} + +namespace C_OP_RenderOmni2Light { + constexpr std::ptrdiff_t m_nLightType = 0x200; + constexpr std::ptrdiff_t m_vColorBlend = 0x208; + constexpr std::ptrdiff_t m_nColorBlendType = 0x860; + constexpr std::ptrdiff_t m_nBrightnessUnit = 0x864; + constexpr std::ptrdiff_t m_flBrightnessLumens = 0x868; + constexpr std::ptrdiff_t m_flBrightnessCandelas = 0x9c0; + constexpr std::ptrdiff_t m_bCastShadows = 0xb18; + constexpr std::ptrdiff_t m_flLuminaireRadius = 0xb20; + constexpr std::ptrdiff_t m_flSkirt = 0xc78; + constexpr std::ptrdiff_t m_flRange = 0xdd0; + constexpr std::ptrdiff_t m_flInnerConeAngle = 0xf28; + constexpr std::ptrdiff_t m_flOuterConeAngle = 0x1080; + constexpr std::ptrdiff_t m_hLightCookie = 0x11d8; + constexpr std::ptrdiff_t m_bSphericalCookie = 0x11e0; +} + +namespace C_OP_RenderLightBeam { + constexpr std::ptrdiff_t m_vColorBlend = 0x200; + constexpr std::ptrdiff_t m_nColorBlendType = 0x858; + constexpr std::ptrdiff_t m_flBrightnessLumensPerMeter = 0x860; + constexpr std::ptrdiff_t m_bCastShadows = 0x9b8; + constexpr std::ptrdiff_t m_flSkirt = 0x9c0; + constexpr std::ptrdiff_t m_flRange = 0xb18; + constexpr std::ptrdiff_t m_flThickness = 0xc70; +} + +namespace C_OP_RenderClothForce { +} + +namespace C_OP_Callback { +} + +namespace C_OP_RenderScreenShake { + constexpr std::ptrdiff_t m_flDurationScale = 0x200; + constexpr std::ptrdiff_t m_flRadiusScale = 0x204; + constexpr std::ptrdiff_t m_flFrequencyScale = 0x208; + constexpr std::ptrdiff_t m_flAmplitudeScale = 0x20c; + constexpr std::ptrdiff_t m_nRadiusField = 0x210; + constexpr std::ptrdiff_t m_nDurationField = 0x214; + constexpr std::ptrdiff_t m_nFrequencyField = 0x218; + constexpr std::ptrdiff_t m_nAmplitudeField = 0x21c; + constexpr std::ptrdiff_t m_nFilterCP = 0x220; +} + +namespace C_OP_RenderTonemapController { + constexpr std::ptrdiff_t m_flTonemapLevel = 0x200; + constexpr std::ptrdiff_t m_flTonemapWeight = 0x204; + constexpr std::ptrdiff_t m_nTonemapLevelField = 0x208; + constexpr std::ptrdiff_t m_nTonemapWeightField = 0x20c; +} + +namespace C_OP_RenderPostProcessing { + constexpr std::ptrdiff_t m_flPostProcessStrength = 0x200; + constexpr std::ptrdiff_t m_hPostTexture = 0x358; + constexpr std::ptrdiff_t m_nPriority = 0x360; +} + +namespace C_OP_RenderSound { + constexpr std::ptrdiff_t m_flDurationScale = 0x200; + constexpr std::ptrdiff_t m_flSndLvlScale = 0x204; + constexpr std::ptrdiff_t m_flPitchScale = 0x208; + constexpr std::ptrdiff_t m_flVolumeScale = 0x20c; + constexpr std::ptrdiff_t m_nSndLvlField = 0x210; + constexpr std::ptrdiff_t m_nDurationField = 0x214; + constexpr std::ptrdiff_t m_nPitchField = 0x218; + constexpr std::ptrdiff_t m_nVolumeField = 0x21c; + constexpr std::ptrdiff_t m_nChannel = 0x220; + constexpr std::ptrdiff_t m_nCPReference = 0x224; + constexpr std::ptrdiff_t m_pszSoundName = 0x228; + constexpr std::ptrdiff_t m_bSuppressStopSoundEvent = 0x328; +} + +namespace C_OP_RenderStatusEffect { + constexpr std::ptrdiff_t m_pTextureColorWarp = 0x200; + constexpr std::ptrdiff_t m_pTextureDetail2 = 0x208; + constexpr std::ptrdiff_t m_pTextureDiffuseWarp = 0x210; + constexpr std::ptrdiff_t m_pTextureFresnelColorWarp = 0x218; + constexpr std::ptrdiff_t m_pTextureFresnelWarp = 0x220; + constexpr std::ptrdiff_t m_pTextureSpecularWarp = 0x228; + constexpr std::ptrdiff_t m_pTextureEnvMap = 0x230; +} + +namespace C_OP_RenderStatusEffectCitadel { + constexpr std::ptrdiff_t m_pTextureColorWarp = 0x200; + constexpr std::ptrdiff_t m_pTextureNormal = 0x208; + constexpr std::ptrdiff_t m_pTextureMetalness = 0x210; + constexpr std::ptrdiff_t m_pTextureRoughness = 0x218; + constexpr std::ptrdiff_t m_pTextureSelfIllum = 0x220; + constexpr std::ptrdiff_t m_pTextureDetail = 0x228; +} + +namespace C_OP_RenderFlattenGrass { + constexpr std::ptrdiff_t m_flFlattenStrength = 0x200; + constexpr std::ptrdiff_t m_nStrengthFieldOverride = 0x204; + constexpr std::ptrdiff_t m_flRadiusScale = 0x208; +} + +namespace C_OP_RenderTreeShake { + constexpr std::ptrdiff_t m_flPeakStrength = 0x200; + constexpr std::ptrdiff_t m_nPeakStrengthFieldOverride = 0x204; + constexpr std::ptrdiff_t m_flRadius = 0x208; + constexpr std::ptrdiff_t m_nRadiusFieldOverride = 0x20c; + constexpr std::ptrdiff_t m_flShakeDuration = 0x210; + constexpr std::ptrdiff_t m_flTransitionTime = 0x214; + constexpr std::ptrdiff_t m_flTwistAmount = 0x218; + constexpr std::ptrdiff_t m_flRadialAmount = 0x21c; + constexpr std::ptrdiff_t m_flControlPointOrientationAmount = 0x220; + constexpr std::ptrdiff_t m_nControlPointForLinearDirection = 0x224; +} + +namespace C_OP_RenderText { + constexpr std::ptrdiff_t m_OutlineColor = 0x200; + constexpr std::ptrdiff_t m_DefaultText = 0x208; +} + +namespace C_OP_RenderVRHapticEvent { + constexpr std::ptrdiff_t m_nHand = 0x200; + constexpr std::ptrdiff_t m_nOutputHandCP = 0x204; + constexpr std::ptrdiff_t m_nOutputField = 0x208; + constexpr std::ptrdiff_t m_flAmplitude = 0x210; +} + +namespace C_OP_RemapSDFDistanceToScalarAttribute { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nVectorFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_flMinDistance = 0x1c8; + constexpr std::ptrdiff_t m_flMaxDistance = 0x320; + constexpr std::ptrdiff_t m_flValueBelowMin = 0x478; + constexpr std::ptrdiff_t m_flValueAtMin = 0x5d0; + constexpr std::ptrdiff_t m_flValueAtMax = 0x728; + constexpr std::ptrdiff_t m_flValueAboveMax = 0x880; +} + +namespace C_OP_RemapSDFDistanceToVectorAttribute { + constexpr std::ptrdiff_t m_nVectorFieldOutput = 0x1c0; + constexpr std::ptrdiff_t m_nVectorFieldInput = 0x1c4; + constexpr std::ptrdiff_t m_flMinDistance = 0x1c8; + constexpr std::ptrdiff_t m_flMaxDistance = 0x320; + constexpr std::ptrdiff_t m_vValueBelowMin = 0x478; + constexpr std::ptrdiff_t m_vValueAtMin = 0x484; + constexpr std::ptrdiff_t m_vValueAtMax = 0x490; + constexpr std::ptrdiff_t m_vValueAboveMax = 0x49c; +} + +namespace C_OP_SDFForce { + constexpr std::ptrdiff_t m_flForceScale = 0x1d0; +} + +namespace C_OP_RemapSDFGradientToVectorAttribute { + constexpr std::ptrdiff_t m_nFieldOutput = 0x1c0; +} + +namespace C_OP_SDFLighting { + constexpr std::ptrdiff_t m_vLightingDir = 0x1c0; + constexpr std::ptrdiff_t m_vTint_0 = 0x1cc; + constexpr std::ptrdiff_t m_vTint_1 = 0x1d8; +} + +namespace C_OP_SDFConstraint { + constexpr std::ptrdiff_t m_flMinDist = 0x1c0; + constexpr std::ptrdiff_t m_flMaxDist = 0x318; + constexpr std::ptrdiff_t m_nMaxIterations = 0x470; +} + +namespace C_OP_ParticlePhysics { + constexpr std::ptrdiff_t m_Gravity = 0x1c0; + constexpr std::ptrdiff_t m_fDrag = 0x818; + constexpr std::ptrdiff_t m_nMaxConstraintPasses = 0x970; +} + diff --git a/generated/particles.dll.json b/generated/particles.dll.json new file mode 100644 index 0000000..d483123 --- /dev/null +++ b/generated/particles.dll.json @@ -0,0 +1,3495 @@ +{ + "CBaseRendererSource2": { + "m_bAnimateInFPS": 3920, + "m_bBlendFramesSeq0": 8736, + "m_bDisableZBuffering": 7688, + "m_bGammaCorrectVertexColors": 4628, + "m_bMaxLuminanceBlendingSequence0": 8737, + "m_bOnlyRenderInEffecsGameOverlay": 7427, + "m_bOnlyRenderInEffectsBloomPass": 7424, + "m_bOnlyRenderInEffectsWaterPass": 7425, + "m_bRefract": 7064, + "m_bRefractSolid": 7065, + "m_bReverseZBuffering": 7687, + "m_bSaturateColorPreAlphaBlend": 4629, + "m_bStencilTestExclude": 7556, + "m_bTintByFOW": 6016, + "m_bTintByGlobalLight": 6017, + "m_bUseMixedResolutionRendering": 7426, + "m_bWriteStencilOnDepthFail": 7686, + "m_bWriteStencilOnDepthPass": 7685, + "m_flAddSelfAmount": 4632, + "m_flAlphaReferenceSoftness": 6032, + "m_flAlphaScale": 856, + "m_flAnimationRate": 3912, + "m_flBumpStrength": 3880, + "m_flCenterXOffset": 3192, + "m_flCenterYOffset": 3536, + "m_flDepthBias": 8728, + "m_flDesaturation": 4976, + "m_flDiffuseAmount": 4272, + "m_flFeatheringFilter": 8384, + "m_flFeatheringMaxDist": 8040, + "m_flFeatheringMinDist": 7696, + "m_flFogAmount": 5672, + "m_flOverbrightFactor": 5320, + "m_flRadiusScale": 512, + "m_flRefractAmount": 7072, + "m_flRollScale": 1200, + "m_flSelfIllumAmount": 3928, + "m_flSourceAlphaValueToMapToOne": 6720, + "m_flSourceAlphaValueToMapToZero": 6376, + "m_nAlpha2Field": 1544, + "m_nAlphaReferenceType": 6028, + "m_nAnimationType": 3916, + "m_nColorBlendType": 3176, + "m_nCropTextureOverride": 3884, + "m_nFeatheringMode": 7692, + "m_nFogType": 5668, + "m_nHSVShiftControlPoint": 5664, + "m_nLightingControlPoint": 4616, + "m_nOutputBlendMode": 4624, + "m_nPerParticleAlphaRefWindow": 6024, + "m_nPerParticleAlphaReference": 6020, + "m_nRefractBlurRadius": 7416, + "m_nRefractBlurType": 7420, + "m_nSelfIllumPerParticle": 4620, + "m_nShaderType": 3180, + "m_nSortMethod": 8732, + "m_stencilTestID": 7428, + "m_stencilWriteID": 7557, + "m_strShaderOverride": 3184, + "m_vecColorScale": 1552, + "m_vecTexturesInput": 3888 + }, + "CBaseTrailRenderer": { + "m_bClampV": 10032, + "m_flEndFadeSize": 9688, + "m_flMaxSize": 9340, + "m_flMinSize": 9336, + "m_flStartFadeSize": 9344, + "m_nOrientationControlPoint": 9332, + "m_nOrientationType": 9328 + }, + "CGeneralRandomRotation": { + "m_bRandomlyFlipDirection": 468, + "m_flDegrees": 452, + "m_flDegreesMax": 460, + "m_flDegreesMin": 456, + "m_flRotationRandExponent": 464, + "m_nFieldOutput": 448 + }, + "CGeneralSpin": { + "m_fSpinRateStopTime": 460, + "m_nSpinRateDegrees": 448, + "m_nSpinRateMinDegrees": 452 + }, + "CNewParticleEffect": { + "m_LastMax": 140, + "m_LastMin": 128, + "m_RefCount": 192, + "m_bAllocated": 0, + "m_bAutoUpdateBBox": 0, + "m_bCanFreeze": 126, + "m_bDisableAggregation": 0, + "m_bDontRemove": 0, + "m_bForceNoDraw": 0, + "m_bFreezeTargetState": 125, + "m_bFreezeTransitionActive": 124, + "m_bIsFirstFrame": 0, + "m_bNeedsBBoxUpdate": 0, + "m_bRemove": 0, + "m_bShouldCheckFoW": 0, + "m_bShouldPerformCullCheck": 0, + "m_bShouldSave": 0, + "m_bShouldSimulateDuringGamePaused": 0, + "m_bSimulate": 0, + "m_flFreezeTransitionDuration": 116, + "m_flFreezeTransitionOverride": 120, + "m_flFreezeTransitionStart": 112, + "m_flScale": 76, + "m_hOwner": 80, + "m_nSplitScreenUser": 152, + "m_pDebugName": 40, + "m_pNext": 16, + "m_pOwningParticleProperty": 88, + "m_pParticles": 32, + "m_pPrev": 24, + "m_vSortOrigin": 64, + "m_vecAggregationCenter": 156 + }, + "CParticleFloatInput": { + "m_Curve": 280, + "m_NamedValue": 32, + "m_bHasRandomSignFlip": 120, + "m_bNoiseImgPreviewLive": 208, + "m_bUseBoundsCenter": 224, + "m_flBiasParameter": 272, + "m_flInput0": 236, + "m_flInput1": 240, + "m_flLOD0": 132, + "m_flLOD1": 136, + "m_flLOD2": 140, + "m_flLOD3": 144, + "m_flLiteralValue": 24, + "m_flMultFactor": 232, + "m_flNoCameraFallback": 220, + "m_flNoiseImgPreviewScale": 204, + "m_flNoiseOffset": 176, + "m_flNoiseOutputMax": 156, + "m_flNoiseOutputMin": 152, + "m_flNoiseScale": 160, + "m_flNoiseTurbulenceMix": 200, + "m_flNoiseTurbulenceScale": 196, + "m_flNotchedOutputInside": 264, + "m_flNotchedOutputOutside": 260, + "m_flNotchedRangeMax": 256, + "m_flNotchedRangeMin": 252, + "m_flOutput0": 244, + "m_flOutput1": 248, + "m_flRandomMax": 116, + "m_flRandomMin": 112, + "m_nBiasType": 268, + "m_nControlPoint": 96, + "m_nInputMode": 228, + "m_nMapType": 20, + "m_nNoiseInputVectorAttribute": 148, + "m_nNoiseModifier": 192, + "m_nNoiseOctaves": 180, + "m_nNoiseTurbulence": 184, + "m_nNoiseType": 188, + "m_nRandomMode": 124, + "m_nScalarAttribute": 100, + "m_nType": 16, + "m_nVectorAttribute": 104, + "m_nVectorComponent": 108, + "m_vecNoiseOffsetRate": 164 + }, + "CParticleFunction": { + "m_Notes": 408, + "m_bDisableOperator": 406, + "m_bNormalizeToStopTime": 376, + "m_flOpEndFadeInTime": 360, + "m_flOpEndFadeOutTime": 368, + "m_flOpFadeOscillatePeriod": 372, + "m_flOpStartFadeInTime": 356, + "m_flOpStartFadeOutTime": 364, + "m_flOpStrength": 8, + "m_flOpTimeOffsetMax": 384, + "m_flOpTimeOffsetMin": 380, + "m_flOpTimeScaleMax": 400, + "m_flOpTimeScaleMin": 396, + "m_nOpEndCapState": 352, + "m_nOpTimeOffsetSeed": 388, + "m_nOpTimeScaleSeed": 392 + }, + "CParticleFunctionEmitter": { + "m_nEmitterIndex": 440 + }, + "CParticleFunctionInitializer": { + "m_nAssociatedEmitterIndex": 440 + }, + "CParticleFunctionPreEmission": { + "m_bRunOnce": 448 + }, + "CParticleFunctionRenderer": { + "VisibilityInputs": 440, + "m_bCannotBeRefracted": 508, + "m_bSkipRenderingOnMobile": 509 + }, + "CParticleModelInput": { + "m_NamedValue": 24, + "m_nControlPoint": 88, + "m_nType": 16 + }, + "CParticleSystemDefinition": { + "m_BoundingBoxMax": 552, + "m_BoundingBoxMin": 540, + "m_Children": 184, + "m_ConstantColor": 608, + "m_ConstantNormal": 612, + "m_Constraints": 136, + "m_Emitters": 40, + "m_ForceGenerators": 112, + "m_Initializers": 64, + "m_NamedValueDomain": 576, + "m_NamedValueLocals": 584, + "m_Operators": 88, + "m_PreEmissionOperators": 16, + "m_Renderers": 160, + "m_bEnableNamedValues": 573, + "m_bInfiniteBounds": 572, + "m_bScreenSpaceEffect": 788, + "m_bShouldBatch": 780, + "m_bShouldHitboxesFallbackToRenderBounds": 781, + "m_bShouldHitboxesFallbackToSnapshot": 782, + "m_bShouldSort": 808, + "m_controlPointConfigurations": 880, + "m_flAggregateRadius": 776, + "m_flConstantLifespan": 636, + "m_flConstantRadius": 624, + "m_flConstantRotation": 628, + "m_flConstantRotationSpeed": 632, + "m_flCullFillCost": 676, + "m_flCullRadius": 672, + "m_flDepthSortBias": 564, + "m_flMaxCreationDistance": 768, + "m_flMaxDrawDistance": 760, + "m_flMaximumSimTime": 732, + "m_flMaximumTimeStep": 728, + "m_flMinimumSimTime": 736, + "m_flMinimumTimeStep": 740, + "m_flNoDrawTimeToGoToSleep": 756, + "m_flPreSimulationTime": 720, + "m_flStartFadeDistance": 764, + "m_flStopSimulationAfterTime": 724, + "m_hFallback": 688, + "m_hLowViolenceDef": 704, + "m_hReferenceReplacement": 712, + "m_hSnapshot": 656, + "m_nAggregationMinAvailableParticles": 772, + "m_nAllowRenderControlPoint": 804, + "m_nBehaviorVersion": 8, + "m_nConstantSequenceNumber": 640, + "m_nConstantSequenceNumber1": 644, + "m_nCullControlPoint": 680, + "m_nFallbackMaxCount": 696, + "m_nFirstMultipleOverride_BackwardCompat": 376, + "m_nGroupID": 536, + "m_nInitialParticles": 528, + "m_nMaxParticles": 532, + "m_nMinCPULevel": 748, + "m_nMinGPULevel": 752, + "m_nMinimumFrames": 744, + "m_nSkipRenderControlPoint": 800, + "m_nSnapshotControlPoint": 648, + "m_nSortOverridePositionCP": 568, + "m_nViewModelEffect": 784, + "m_pszCullReplacementName": 664, + "m_pszTargetLayerID": 792 + }, + "CParticleTransformInput": { + "m_NamedValue": 24, + "m_bFollowNamedValue": 88, + "m_bSupportsDisabled": 89, + "m_bUseOrientation": 90, + "m_flEndCPGrowthTime": 100, + "m_nControlPoint": 92, + "m_nControlPointRangeMax": 96, + "m_nType": 16 + }, + "CParticleVariableRef": { + "m_variableName": 0, + "m_variableType": 56 + }, + "CParticleVecInput": { + "m_FloatComponentX": 168, + "m_FloatComponentY": 512, + "m_FloatComponentZ": 856, + "m_FloatInterp": 1200, + "m_Gradient": 1576, + "m_LiteralColor": 32, + "m_NamedValue": 40, + "m_bFollowNamedValue": 104, + "m_flInterpInput0": 1544, + "m_flInterpInput1": 1548, + "m_nControlPoint": 124, + "m_nDeltaControlPoint": 128, + "m_nType": 16, + "m_nVectorAttribute": 108, + "m_vCPRelativeDir": 156, + "m_vCPRelativePosition": 144, + "m_vCPValueScale": 132, + "m_vInterpOutput0": 1552, + "m_vInterpOutput1": 1564, + "m_vLiteralValue": 20, + "m_vRandomMax": 1612, + "m_vRandomMin": 1600, + "m_vVectorAttributeScale": 112 + }, + "CParticleVisibilityInputs": { + "m_bDotCPAngles": 40, + "m_bDotCameraAngles": 41, + "m_bRightEye": 64, + "m_flAlphaScaleMax": 48, + "m_flAlphaScaleMin": 44, + "m_flCameraBias": 0, + "m_flDistanceInputMax": 28, + "m_flDistanceInputMin": 24, + "m_flDotInputMax": 36, + "m_flDotInputMin": 32, + "m_flInputMax": 16, + "m_flInputMin": 12, + "m_flNoPixelVisibilityFallback": 20, + "m_flProxyRadius": 8, + "m_flRadiusScaleFOVBase": 60, + "m_flRadiusScaleMax": 56, + "m_flRadiusScaleMin": 52, + "m_nCPin": 4 + }, + "CPathParameters": { + "m_flBulge": 12, + "m_flMidPoint": 16, + "m_nBulgeControl": 8, + "m_nEndControlPointNumber": 4, + "m_nStartControlPointNumber": 0, + "m_vEndOffset": 44, + "m_vMidPointOffset": 32, + "m_vStartPointOffset": 20 + }, + "CRandomNumberGeneratorParameters": { + "m_bDistributeEvenly": 0, + "m_nSeed": 4 + }, + "C_INIT_AddVectorToVector": { + "m_nFieldInput": 464, + "m_nFieldOutput": 460, + "m_randomnessParameters": 492, + "m_vOffsetMax": 480, + "m_vOffsetMin": 468, + "m_vecScale": 448 + }, + "C_INIT_AgeNoise": { + "m_bAbsVal": 448, + "m_bAbsValInv": 449, + "m_flAgeMax": 460, + "m_flAgeMin": 456, + "m_flNoiseScale": 464, + "m_flNoiseScaleLoc": 468, + "m_flOffset": 452, + "m_vecOffsetLoc": 472 + }, + "C_INIT_ChaoticAttractor": { + "m_bUniformSpeed": 480, + "m_flAParm": 448, + "m_flBParm": 452, + "m_flCParm": 456, + "m_flDParm": 460, + "m_flScale": 464, + "m_flSpeedMax": 472, + "m_flSpeedMin": 468, + "m_nBaseCP": 476 + }, + "C_INIT_ColorLitPerParticle": { + "m_ColorMax": 476, + "m_ColorMin": 472, + "m_TintMax": 484, + "m_TintMin": 480, + "m_flLightAmplification": 496, + "m_flTintPerc": 488, + "m_nTintBlendMode": 492 + }, + "C_INIT_CreateAlongPath": { + "m_PathParams": 464, + "m_bSaveOffset": 544, + "m_bUseRandomCPs": 528, + "m_fMaxDistance": 448, + "m_vEndOffset": 532 + }, + "C_INIT_CreateFromCPs": { + "m_nDynamicCPCount": 464, + "m_nIncrement": 448, + "m_nMaxCP": 456, + "m_nMinCP": 452 + }, + "C_INIT_CreateFromParentParticles": { + "m_bRandomDistribution": 456, + "m_bSubFrame": 464, + "m_flIncrement": 452, + "m_flVelocityScale": 448, + "m_nRandomSeed": 460 + }, + "C_INIT_CreateFromPlaneCache": { + "m_bUseNormal": 473, + "m_vecOffsetMax": 460, + "m_vecOffsetMin": 448 + }, + "C_INIT_CreateInEpitrochoid": { + "m_TransformInput": 456, + "m_bOffsetExistingPos": 1938, + "m_bUseCount": 1936, + "m_bUseLocalCoords": 1937, + "m_flOffset": 904, + "m_flParticleDensity": 560, + "m_flRadius1": 1248, + "m_flRadius2": 1592, + "m_nComponent1": 448, + "m_nComponent2": 452 + }, + "C_INIT_CreateOnGrid": { + "m_bCenter": 2517, + "m_bHollow": 2518, + "m_bLocalSpace": 2516, + "m_nControlPointNumber": 2512, + "m_nXCount": 448, + "m_nXSpacing": 1480, + "m_nYCount": 792, + "m_nYSpacing": 1824, + "m_nZCount": 1136, + "m_nZSpacing": 2168 + }, + "C_INIT_CreateOnModel": { + "m_HitboxSetName": 3920, + "m_bLocalCoords": 4048, + "m_bUseBones": 4049, + "m_flBoneVelocity": 2288, + "m_flMaxBoneVelocity": 2292, + "m_flShellSize": 4056, + "m_modelInput": 448, + "m_nDesiredHitbox": 652, + "m_nForceInModel": 648, + "m_nHitboxValueFromControlPointIndex": 656, + "m_transformInput": 544, + "m_vecDirectionBias": 2296, + "m_vecHitBoxScale": 664 + }, + "C_INIT_CreateOnModelAtHeight": { + "m_HitboxSetName": 4062, + "m_bForceZ": 449, + "m_bLocalCoords": 4060, + "m_bPreferMovingBoxes": 4061, + "m_bUseBones": 448, + "m_bUseWaterHeight": 460, + "m_flDesiredHeight": 464, + "m_flHitboxVelocityScale": 4192, + "m_flMaxBoneVelocity": 4536, + "m_nBiasType": 4056, + "m_nControlPointNumber": 452, + "m_nHeightCP": 456, + "m_vecDirectionBias": 2432, + "m_vecHitBoxScale": 808 + }, + "C_INIT_CreateParticleImpulse": { + "m_InputFalloffExp": 1144, + "m_InputMagnitude": 792, + "m_InputRadius": 448, + "m_nFalloffFunction": 1136, + "m_nImpulseType": 1488 + }, + "C_INIT_CreatePhyllotaxis": { + "m_bUseLocalCoords": 492, + "m_bUseOrigRadius": 494, + "m_bUseWithContEmit": 493, + "m_fDistBias": 488, + "m_fMinRad": 484, + "m_fRadBias": 480, + "m_fRadCentCore": 460, + "m_fRadPerPoint": 464, + "m_fRadPerPointTo": 468, + "m_fpointAngle": 472, + "m_fsizeOverall": 476, + "m_nComponent": 456, + "m_nControlPointNumber": 448, + "m_nScaleCP": 452 + }, + "C_INIT_CreateSequentialPath": { + "m_PathParams": 464, + "m_bCPPairs": 457, + "m_bLoop": 456, + "m_bSaveOffset": 458, + "m_fMaxDistance": 448, + "m_flNumToAssign": 452 + }, + "C_INIT_CreateSequentialPathV2": { + "m_PathParams": 1152, + "m_bCPPairs": 1137, + "m_bLoop": 1136, + "m_bSaveOffset": 1138, + "m_fMaxDistance": 448, + "m_flNumToAssign": 792 + }, + "C_INIT_CreateSpiralSphere": { + "m_bUseParticleCount": 472, + "m_flInitialRadius": 460, + "m_flInitialSpeedMax": 468, + "m_flInitialSpeedMin": 464, + "m_nControlPointNumber": 448, + "m_nDensity": 456, + "m_nOverrideCP": 452 + }, + "C_INIT_CreateWithinBox": { + "m_bLocalSpace": 3700, + "m_nControlPointNumber": 3696, + "m_randomnessParameters": 3704, + "m_vecMax": 2072, + "m_vecMin": 448 + }, + "C_INIT_CreateWithinSphereTransform": { + "m_LocalCoordinateSystemSpeedMax": 5208, + "m_LocalCoordinateSystemSpeedMin": 3584, + "m_TransformInput": 2776, + "m_bLocalCoords": 3572, + "m_fRadiusMax": 792, + "m_fRadiusMin": 448, + "m_fSpeedMax": 3224, + "m_fSpeedMin": 2880, + "m_fSpeedRandExp": 3568, + "m_flEndCPGrowthTime": 3576, + "m_nFieldOutput": 6832, + "m_nFieldVelocity": 6836, + "m_vecDistanceBias": 1136, + "m_vecDistanceBiasAbs": 2760 + }, + "C_INIT_CreationNoise": { + "m_bAbsVal": 452, + "m_bAbsValInv": 453, + "m_flNoiseScale": 468, + "m_flNoiseScaleLoc": 472, + "m_flOffset": 456, + "m_flOutputMax": 464, + "m_flOutputMin": 460, + "m_flWorldTimeScale": 488, + "m_nFieldOutput": 448, + "m_vecOffsetLoc": 476 + }, + "C_INIT_DistanceCull": { + "m_bCullInside": 800, + "m_flDistance": 456, + "m_nControlPoint": 448 + }, + "C_INIT_DistanceToCPInit": { + "m_CollisionGroupName": 1837, + "m_bActiveRange": 2328, + "m_bLOS": 1836, + "m_flInputMax": 800, + "m_flInputMin": 456, + "m_flLOSScale": 2320, + "m_flMaxTraceLength": 1976, + "m_flOutputMax": 1488, + "m_flOutputMin": 1144, + "m_flRemapBias": 2344, + "m_nFieldOutput": 448, + "m_nSetMethod": 2324, + "m_nStartCP": 1832, + "m_nTraceSet": 1968, + "m_vecDistanceScale": 2332 + }, + "C_INIT_DistanceToNeighborCull": { + "m_flDistance": 448 + }, + "C_INIT_GlobalScale": { + "m_bScalePosition": 461, + "m_bScaleRadius": 460, + "m_bScaleVelocity": 462, + "m_flScale": 448, + "m_nControlPointNumber": 456, + "m_nScaleControlPointNumber": 452 + }, + "C_INIT_InheritFromParentParticles": { + "m_bRandomDistribution": 460, + "m_flScale": 448, + "m_nFieldOutput": 452, + "m_nIncrement": 456, + "m_nRandomSeed": 464 + }, + "C_INIT_InheritVelocity": { + "m_flVelocityScale": 452, + "m_nControlPointNumber": 448 + }, + "C_INIT_InitFloat": { + "m_InputStrength": 800, + "m_InputValue": 448, + "m_nOutputField": 792, + "m_nSetMethod": 796 + }, + "C_INIT_InitFloatCollection": { + "m_InputValue": 448, + "m_nOutputField": 792 + }, + "C_INIT_InitFromCPSnapshot": { + "m_bLocalSpaceAngles": 1164, + "m_bRandom": 464, + "m_bReverse": 465, + "m_nAttributeToRead": 452, + "m_nAttributeToWrite": 456, + "m_nControlPointNumber": 448, + "m_nLocalSpaceCP": 460, + "m_nManualSnapshotIndex": 816, + "m_nRandomSeed": 1160, + "m_nSnapShotIncrement": 472 + }, + "C_INIT_InitFromParentKilled": { + "m_nAttributeToCopy": 448 + }, + "C_INIT_InitFromVectorFieldSnapshot": { + "m_bUseVerticalVelocity": 460, + "m_nControlPointNumber": 448, + "m_nLocalSpaceCP": 452, + "m_nWeightUpdateCP": 456, + "m_vecScale": 464 + }, + "C_INIT_InitSkinnedPositionFromCPSnapshot": { + "m_bCopyAlpha": 497, + "m_bCopyColor": 496, + "m_bIgnoreDt": 466, + "m_bRandom": 456, + "m_bRigid": 464, + "m_bSetNormal": 465, + "m_bSetRadius": 498, + "m_flBoneVelocity": 488, + "m_flBoneVelocityMax": 492, + "m_flIncrement": 476, + "m_flMaxNormalVelocity": 472, + "m_flMinNormalVelocity": 468, + "m_nControlPointNumber": 452, + "m_nFullLoopIncrement": 480, + "m_nRandomSeed": 460, + "m_nSnapShotStartPoint": 484, + "m_nSnapshotControlPointNumber": 448 + }, + "C_INIT_InitVec": { + "m_InputValue": 448, + "m_bNormalizedOutput": 2080, + "m_bWritePreviousPosition": 2081, + "m_nOutputField": 2072, + "m_nSetMethod": 2076 + }, + "C_INIT_InitVecCollection": { + "m_InputValue": 448, + "m_nOutputField": 2072 + }, + "C_INIT_InitialRepulsionVelocity": { + "m_CollisionGroupName": 448, + "m_bInherit": 617, + "m_bPerParticle": 608, + "m_bPerParticleTR": 616, + "m_bProportional": 610, + "m_bTranslate": 609, + "m_flTraceLength": 612, + "m_nChildCP": 620, + "m_nChildGroupID": 624, + "m_nControlPointNumber": 604, + "m_nTraceSet": 576, + "m_vecOutputMax": 592, + "m_vecOutputMin": 580 + }, + "C_INIT_InitialSequenceFromModel": { + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_nControlPointNumber": 448, + "m_nFieldOutput": 452, + "m_nFieldOutputAnim": 456, + "m_nSetMethod": 476 + }, + "C_INIT_InitialVelocityFromHitbox": { + "m_HitboxSetName": 460, + "m_bUseBones": 588, + "m_flVelocityMax": 452, + "m_flVelocityMin": 448, + "m_nControlPointNumber": 456 + }, + "C_INIT_InitialVelocityNoise": { + "m_TransformInput": 6376, + "m_bIgnoreDt": 6480, + "m_flNoiseScale": 5688, + "m_flNoiseScaleLoc": 6032, + "m_flOffset": 2096, + "m_vecAbsVal": 448, + "m_vecAbsValInv": 460, + "m_vecOffsetLoc": 472, + "m_vecOutputMax": 4064, + "m_vecOutputMin": 2440 + }, + "C_INIT_LifespanFromVelocity": { + "m_CollisionGroupName": 480, + "m_bIncludeWater": 624, + "m_flMaxTraceLength": 464, + "m_flTraceOffset": 460, + "m_flTraceTolerance": 468, + "m_nMaxPlanes": 472, + "m_nTraceSet": 608, + "m_vecComponentScale": 448 + }, + "C_INIT_ModelCull": { + "m_HitboxSetName": 455, + "m_bBoundBox": 452, + "m_bCullOutside": 453, + "m_bUseBones": 454, + "m_nControlPointNumber": 448 + }, + "C_INIT_MoveBetweenPoints": { + "m_bTrailBias": 2172, + "m_flEndOffset": 1824, + "m_flEndSpread": 1136, + "m_flSpeedMax": 792, + "m_flSpeedMin": 448, + "m_flStartOffset": 1480, + "m_nEndControlPointNumber": 2168 + }, + "C_INIT_NormalAlignToCP": { + "m_nControlPointAxis": 552, + "m_transformInput": 448 + }, + "C_INIT_NormalOffset": { + "m_OffsetMax": 460, + "m_OffsetMin": 448, + "m_bLocalCoords": 476, + "m_bNormalize": 477, + "m_nControlPointNumber": 472 + }, + "C_INIT_OffsetVectorToVector": { + "m_nFieldInput": 448, + "m_nFieldOutput": 452, + "m_randomnessParameters": 480, + "m_vecOutputMax": 468, + "m_vecOutputMin": 456 + }, + "C_INIT_Orient2DRelToCP": { + "m_flRotOffset": 456, + "m_nCP": 448, + "m_nFieldOutput": 452 + }, + "C_INIT_PlaneCull": { + "m_bCullInside": 800, + "m_flDistance": 456, + "m_nControlPoint": 448 + }, + "C_INIT_PointList": { + "m_bClosedLoop": 481, + "m_bPlaceAlongPath": 480, + "m_nFieldOutput": 448, + "m_nNumPointsAlongPath": 484, + "m_pointList": 456 + }, + "C_INIT_PositionOffset": { + "m_OffsetMax": 2072, + "m_OffsetMin": 448, + "m_TransformInput": 3696, + "m_bLocalCoords": 3800, + "m_bProportional": 3801, + "m_randomnessParameters": 3804 + }, + "C_INIT_PositionOffsetToCP": { + "m_bLocalCoords": 456, + "m_nControlPointNumberEnd": 452, + "m_nControlPointNumberStart": 448 + }, + "C_INIT_PositionPlaceOnGround": { + "m_CollisionGroupName": 1136, + "m_bIncludeWater": 1284, + "m_bOffsetonColOnly": 1288, + "m_bSetNormal": 1285, + "m_bSetPXYZOnly": 1286, + "m_bTraceAlongNormal": 1287, + "m_flMaxTraceLength": 792, + "m_flOffset": 448, + "m_flOffsetByRadiusFactor": 1292, + "m_nIgnoreCP": 1300, + "m_nPreserveOffsetCP": 1296, + "m_nTraceMissBehavior": 1280, + "m_nTraceSet": 1264 + }, + "C_INIT_PositionWarp": { + "m_bInvertWarp": 3720, + "m_bUseCount": 3721, + "m_flPrevPosScale": 3716, + "m_flWarpStartTime": 3712, + "m_flWarpTime": 3708, + "m_nControlPointNumber": 3700, + "m_nRadiusComponent": 3704, + "m_nScaleControlPointNumber": 3696, + "m_vecWarpMax": 2072, + "m_vecWarpMin": 448 + }, + "C_INIT_PositionWarpScalar": { + "m_InputValue": 472, + "m_flPrevPosScale": 816, + "m_nControlPointNumber": 824, + "m_nScaleControlPointNumber": 820, + "m_vecWarpMax": 460, + "m_vecWarpMin": 448 + }, + "C_INIT_QuantizeFloat": { + "m_InputValue": 448, + "m_nOutputField": 792 + }, + "C_INIT_RadiusFromCPObject": { + "m_nControlPoint": 448 + }, + "C_INIT_RandomAlpha": { + "m_flAlphaRandExponent": 468, + "m_nAlphaMax": 456, + "m_nAlphaMin": 452, + "m_nFieldOutput": 448 + }, + "C_INIT_RandomAlphaWindowThreshold": { + "m_flExponent": 456, + "m_flMax": 452, + "m_flMin": 448 + }, + "C_INIT_RandomColor": { + "m_ColorMax": 480, + "m_ColorMin": 476, + "m_TintMax": 488, + "m_TintMin": 484, + "m_flLightAmplification": 512, + "m_flTintPerc": 492, + "m_flUpdateThreshold": 496, + "m_nFieldOutput": 504, + "m_nTintBlendMode": 508, + "m_nTintCP": 500 + }, + "C_INIT_RandomLifeTime": { + "m_fLifetimeMax": 452, + "m_fLifetimeMin": 448, + "m_fLifetimeRandExponent": 456 + }, + "C_INIT_RandomModelSequence": { + "m_ActivityName": 448, + "m_SequenceName": 704, + "m_hModel": 960 + }, + "C_INIT_RandomNamedModelElement": { + "m_bLinear": 481, + "m_bModelFromRenderer": 482, + "m_bShuffle": 480, + "m_hModel": 448, + "m_nFieldOutput": 484, + "m_names": 456 + }, + "C_INIT_RandomRadius": { + "m_flRadiusMax": 452, + "m_flRadiusMin": 448, + "m_flRadiusRandExponent": 456 + }, + "C_INIT_RandomScalar": { + "m_flExponent": 456, + "m_flMax": 452, + "m_flMin": 448, + "m_nFieldOutput": 460 + }, + "C_INIT_RandomSecondSequence": { + "m_nSequenceMax": 452, + "m_nSequenceMin": 448 + }, + "C_INIT_RandomSequence": { + "m_WeightedList": 464, + "m_bLinear": 457, + "m_bShuffle": 456, + "m_nSequenceMax": 452, + "m_nSequenceMin": 448 + }, + "C_INIT_RandomTrailLength": { + "m_flLengthRandExponent": 456, + "m_flMaxLength": 452, + "m_flMinLength": 448 + }, + "C_INIT_RandomVector": { + "m_nFieldOutput": 472, + "m_randomnessParameters": 476, + "m_vecMax": 460, + "m_vecMin": 448 + }, + "C_INIT_RandomVectorComponent": { + "m_flMax": 452, + "m_flMin": 448, + "m_nComponent": 460, + "m_nFieldOutput": 456 + }, + "C_INIT_RandomYawFlip": { + "m_flPercent": 448 + }, + "C_INIT_RemapCPtoScalar": { + "m_flEndTime": 480, + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_flRemapBias": 488, + "m_flStartTime": 476, + "m_nCPInput": 448, + "m_nField": 456, + "m_nFieldOutput": 452, + "m_nSetMethod": 484 + }, + "C_INIT_RemapInitialDirectionToTransformToVector": { + "m_TransformInput": 448, + "m_bNormalize": 576, + "m_flOffsetRot": 560, + "m_flScale": 556, + "m_nFieldOutput": 552, + "m_vecOffsetAxis": 564 + }, + "C_INIT_RemapInitialTransformDirectionToRotation": { + "m_TransformInput": 448, + "m_flOffsetRot": 556, + "m_nComponent": 560, + "m_nFieldOutput": 552 + }, + "C_INIT_RemapInitialVisibilityScalar": { + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_nFieldOutput": 452 + }, + "C_INIT_RemapNamedModelElementToScalar": { + "m_bModelFromRenderer": 516, + "m_hModel": 448, + "m_nFieldInput": 504, + "m_nFieldOutput": 508, + "m_nSetMethod": 512, + "m_names": 456, + "m_values": 480 + }, + "C_INIT_RemapParticleCountToNamedModelElementScalar": { + "m_bModelFromRenderer": 520, + "m_hModel": 496, + "m_outputMaxName": 512, + "m_outputMinName": 504 + }, + "C_INIT_RemapParticleCountToScalar": { + "m_bActiveRange": 480, + "m_bInvert": 481, + "m_bWrap": 482, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_flRemapBias": 484, + "m_nFieldOutput": 448, + "m_nInputMax": 456, + "m_nInputMin": 452, + "m_nScaleControlPoint": 460, + "m_nScaleControlPointField": 464, + "m_nSetMethod": 476 + }, + "C_INIT_RemapQAnglesToRotation": { + "m_TransformInput": 448 + }, + "C_INIT_RemapScalar": { + "m_bActiveRange": 484, + "m_flEndTime": 476, + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_flRemapBias": 488, + "m_flStartTime": 472, + "m_nFieldInput": 448, + "m_nFieldOutput": 452, + "m_nSetMethod": 480 + }, + "C_INIT_RemapScalarToVector": { + "m_bLocalCoords": 504, + "m_flEndTime": 492, + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flRemapBias": 508, + "m_flStartTime": 488, + "m_nControlPointNumber": 500, + "m_nFieldInput": 448, + "m_nFieldOutput": 452, + "m_nSetMethod": 496, + "m_vecOutputMax": 476, + "m_vecOutputMin": 464 + }, + "C_INIT_RemapSpeedToScalar": { + "m_bPerParticle": 484, + "m_flEndTime": 460, + "m_flInputMax": 468, + "m_flInputMin": 464, + "m_flOutputMax": 476, + "m_flOutputMin": 472, + "m_flStartTime": 456, + "m_nControlPointNumber": 452, + "m_nFieldOutput": 448, + "m_nSetMethod": 480 + }, + "C_INIT_RemapTransformOrientationToRotations": { + "m_TransformInput": 448, + "m_bUseQuat": 564, + "m_bWriteNormal": 565, + "m_vecRotation": 552 + }, + "C_INIT_RemapTransformToVector": { + "m_LocalSpaceTransform": 608, + "m_TransformInput": 504, + "m_bAccelerate": 725, + "m_bOffset": 724, + "m_flEndTime": 716, + "m_flRemapBias": 728, + "m_flStartTime": 712, + "m_nFieldOutput": 448, + "m_nSetMethod": 720, + "m_vInputMax": 464, + "m_vInputMin": 452, + "m_vOutputMax": 488, + "m_vOutputMin": 476 + }, + "C_INIT_RingWave": { + "m_TransformInput": 448, + "m_bEvenDistribution": 3304, + "m_bXYVelocityOnly": 3305, + "m_flInitialRadius": 896, + "m_flInitialSpeedMax": 1928, + "m_flInitialSpeedMin": 1584, + "m_flParticlesPerOrbit": 552, + "m_flPitch": 2616, + "m_flRoll": 2272, + "m_flThickness": 1240, + "m_flYaw": 2960 + }, + "C_INIT_RtEnvCull": { + "m_RtEnvName": 475, + "m_bCullOnMiss": 473, + "m_bLifeAdjust": 474, + "m_bUseVelocity": 472, + "m_nComponent": 608, + "m_nRTEnvCP": 604, + "m_vecTestDir": 448, + "m_vecTestNormal": 460 + }, + "C_INIT_ScaleVelocity": { + "m_vecScale": 448 + }, + "C_INIT_SequenceFromCP": { + "m_bKillUnused": 448, + "m_bRadiusScale": 449, + "m_nCP": 452, + "m_vecOffset": 456 + }, + "C_INIT_SequenceLifeTime": { + "m_flFramerate": 448 + }, + "C_INIT_SetHitboxToClosest": { + "m_HitboxSetName": 2080, + "m_bUpdatePosition": 2560, + "m_bUseBones": 2208, + "m_bUseClosestPointOnHitbox": 2209, + "m_flHybridRatio": 2216, + "m_nControlPointNumber": 448, + "m_nDesiredHitbox": 452, + "m_nTestType": 2212, + "m_vecHitBoxScale": 456 + }, + "C_INIT_SetHitboxToModel": { + "m_HitboxSetName": 2102, + "m_bMaintainHitbox": 2100, + "m_bUseBones": 2101, + "m_flShellSize": 2232, + "m_nControlPointNumber": 448, + "m_nDesiredHitbox": 456, + "m_nForceInModel": 452, + "m_vecDirectionBias": 2088, + "m_vecHitBoxScale": 464 + }, + "C_INIT_SetRigidAttachment": { + "m_bLocalSpace": 460, + "m_nControlPointNumber": 448, + "m_nFieldInput": 452, + "m_nFieldOutput": 456 + }, + "C_INIT_SetVectorAttributeToVectorExpression": { + "m_bNormalizedOutput": 3712, + "m_nExpression": 448, + "m_nOutputField": 3704, + "m_nSetMethod": 3708, + "m_vInput1": 456, + "m_vInput2": 2080 + }, + "C_INIT_StatusEffect": { + "m_flAmbientScale": 476, + "m_flColorWarpIntensity": 464, + "m_flDetail2BlendFactor": 460, + "m_flDetail2Rotation": 452, + "m_flDetail2Scale": 456, + "m_flDiffuseWarpBlendToFull": 468, + "m_flEnvMapIntensity": 472, + "m_flMetalnessBlendToFull": 512, + "m_flReflectionsTintByBaseBlendToNone": 508, + "m_flRimLightScale": 504, + "m_flSelfIllumBlendToFull": 516, + "m_flSpecularBlendToFull": 496, + "m_flSpecularExponent": 488, + "m_flSpecularExponentBlendToFull": 492, + "m_flSpecularScale": 484, + "m_nDetail2Combo": 448, + "m_rimLightColor": 500, + "m_specularColor": 480 + }, + "C_INIT_StatusEffectCitadel": { + "m_flSFXColorWarpAmount": 448, + "m_flSFXMetalnessAmount": 456, + "m_flSFXNormalAmount": 452, + "m_flSFXRoughnessAmount": 460, + "m_flSFXSDetailAmount": 500, + "m_flSFXSDetailScale": 504, + "m_flSFXSDetailScrollX": 508, + "m_flSFXSDetailScrollY": 512, + "m_flSFXSDetailScrollZ": 516, + "m_flSFXSOffsetX": 484, + "m_flSFXSOffsetY": 488, + "m_flSFXSOffsetZ": 492, + "m_flSFXSScale": 468, + "m_flSFXSScrollX": 472, + "m_flSFXSScrollY": 476, + "m_flSFXSScrollZ": 480, + "m_flSFXSUseModelUVs": 520, + "m_flSFXSelfIllumAmount": 464, + "m_nDetailCombo": 496 + }, + "C_INIT_VelocityFromCP": { + "m_bDirectionOnly": 2180, + "m_flVelocityScale": 2176, + "m_transformInput": 2072, + "m_velocityInput": 448 + }, + "C_INIT_VelocityFromNormal": { + "m_bIgnoreDt": 456, + "m_fSpeedMax": 452, + "m_fSpeedMin": 448 + }, + "C_INIT_VelocityRadialRandom": { + "m_bIgnoreDelta": 473, + "m_fSpeedMax": 456, + "m_fSpeedMin": 452, + "m_nControlPointNumber": 448, + "m_vecLocalCoordinateSystemSpeedScale": 460 + }, + "C_INIT_VelocityRandom": { + "m_LocalCoordinateSystemSpeedMax": 2768, + "m_LocalCoordinateSystemSpeedMin": 1144, + "m_bIgnoreDT": 4392, + "m_fSpeedMax": 800, + "m_fSpeedMin": 456, + "m_nControlPointNumber": 448, + "m_randomnessParameters": 4396 + }, + "C_OP_AlphaDecay": { + "m_flMinAlpha": 448 + }, + "C_OP_AttractToControlPoint": { + "m_TransformInput": 832, + "m_bApplyMinForce": 1280, + "m_fFalloffPower": 824, + "m_fForceAmount": 480, + "m_fForceAmountMin": 936, + "m_vecComponentScale": 464 + }, + "C_OP_BasicMovement": { + "m_Gravity": 448, + "m_fDrag": 2072, + "m_nMaxConstraintPasses": 2416 + }, + "C_OP_BoxConstraint": { + "m_bAccountForRadius": 3701, + "m_bLocalSpace": 3700, + "m_nCP": 3696, + "m_vecMax": 2072, + "m_vecMin": 448 + }, + "C_OP_CPOffsetToPercentageBetweenCPs": { + "m_bRadialCheck": 480, + "m_bScaleOffset": 481, + "m_flInputBias": 456, + "m_flInputMax": 452, + "m_flInputMin": 448, + "m_nEndCP": 464, + "m_nInputCP": 476, + "m_nOffsetCP": 468, + "m_nOuputCP": 472, + "m_nStartCP": 460, + "m_vecOffset": 484 + }, + "C_OP_CPVelocityForce": { + "m_flScale": 472, + "m_nControlPointNumber": 464 + }, + "C_OP_CalculateVectorAttribute": { + "m_flControlPointScale1": 496, + "m_flControlPointScale2": 520, + "m_flInputScale1": 464, + "m_flInputScale2": 472, + "m_nControlPointInput1": 476, + "m_nControlPointInput2": 500, + "m_nFieldInput1": 460, + "m_nFieldInput2": 468, + "m_nFieldOutput": 524, + "m_vFinalOutputScale": 528, + "m_vStartValue": 448 + }, + "C_OP_ChladniWave": { + "m_b3D": 5088, + "m_flInputMax": 800, + "m_flInputMin": 456, + "m_flOutputMax": 1488, + "m_flOutputMin": 1144, + "m_nFieldOutput": 448, + "m_nLocalSpaceControlPoint": 5084, + "m_nSetMethod": 5080, + "m_vecHarmonics": 3456, + "m_vecWaveLength": 1832 + }, + "C_OP_ChooseRandomChildrenInGroup": { + "m_flNumberOfChildren": 472, + "m_nChildGroupID": 464 + }, + "C_OP_ClampScalar": { + "m_flOutputMax": 800, + "m_flOutputMin": 456, + "m_nFieldOutput": 448 + }, + "C_OP_ClampVector": { + "m_nFieldOutput": 448, + "m_vecOutputMax": 2080, + "m_vecOutputMin": 456 + }, + "C_OP_CollideWithParentParticles": { + "m_flParentRadiusScale": 448, + "m_flRadiusScale": 792 + }, + "C_OP_CollideWithSelf": { + "m_flMinimumSpeed": 792, + "m_flRadiusScale": 448 + }, + "C_OP_ColorAdjustHSL": { + "m_flHueAdjust": 448, + "m_flLightnessAdjust": 1136, + "m_flSaturationAdjust": 792 + }, + "C_OP_ColorInterpolate": { + "m_ColorFade": 448, + "m_bEaseInOut": 476, + "m_flFadeEndTime": 468, + "m_flFadeStartTime": 464, + "m_nFieldOutput": 472 + }, + "C_OP_ColorInterpolateRandom": { + "m_ColorFadeMax": 476, + "m_ColorFadeMin": 448, + "m_bEaseInOut": 504, + "m_flFadeEndTime": 496, + "m_flFadeStartTime": 492, + "m_nFieldOutput": 500 + }, + "C_OP_ConnectParentParticleToNearest": { + "m_nFirstControlPoint": 448, + "m_nSecondControlPoint": 452 + }, + "C_OP_ConstrainDistance": { + "m_CenterOffset": 1140, + "m_bGlobalCenter": 1152, + "m_fMaxDistance": 792, + "m_fMinDistance": 448, + "m_nControlPointNumber": 1136 + }, + "C_OP_ConstrainDistanceToPath": { + "m_PathParameters": 464, + "m_fMinDistance": 448, + "m_flMaxDistance0": 452, + "m_flMaxDistance1": 460, + "m_flMaxDistanceMid": 456, + "m_flTravelTime": 528, + "m_nFieldScale": 532, + "m_nManualTField": 536 + }, + "C_OP_ConstrainDistanceToUserSpecifiedPath": { + "m_bLoopedPath": 460, + "m_fMinDistance": 448, + "m_flMaxDistance": 452, + "m_flTimeScale": 456, + "m_pointList": 464 + }, + "C_OP_ConstrainLineLength": { + "m_flMaxDistance": 452, + "m_flMinDistance": 448 + }, + "C_OP_ContinuousEmitter": { + "m_bForceEmitOnFirstUpdate": 1500, + "m_bForceEmitOnLastUpdate": 1501, + "m_bInitFromKilledParentParticles": 1488, + "m_flEmissionDuration": 448, + "m_flEmissionScale": 1480, + "m_flEmitRate": 1136, + "m_flScalePerParentParticle": 1484, + "m_flStartTime": 792, + "m_nLimitPerUpdate": 1496, + "m_nSnapshotControlPoint": 1492 + }, + "C_OP_ControlPointToRadialScreenSpace": { + "m_nCPIn": 464, + "m_nCPOut": 480, + "m_nCPOutField": 484, + "m_nCPSSPosOut": 488, + "m_vecCP1Pos": 468 + }, + "C_OP_ControlpointLight": { + "m_LightColor1": 1776, + "m_LightColor2": 1780, + "m_LightColor3": 1784, + "m_LightColor4": 1788, + "m_LightFiftyDist1": 1744, + "m_LightFiftyDist2": 1752, + "m_LightFiftyDist3": 1760, + "m_LightFiftyDist4": 1768, + "m_LightZeroDist1": 1748, + "m_LightZeroDist2": 1756, + "m_LightZeroDist3": 1764, + "m_LightZeroDist4": 1772, + "m_bClampLowerRange": 1806, + "m_bClampUpperRange": 1807, + "m_bLightDynamic1": 1796, + "m_bLightDynamic2": 1797, + "m_bLightDynamic3": 1798, + "m_bLightDynamic4": 1799, + "m_bLightType1": 1792, + "m_bLightType2": 1793, + "m_bLightType3": 1794, + "m_bLightType4": 1795, + "m_bUseHLambert": 1801, + "m_bUseNormal": 1800, + "m_flScale": 448, + "m_nControlPoint1": 1680, + "m_nControlPoint2": 1684, + "m_nControlPoint3": 1688, + "m_nControlPoint4": 1692, + "m_vecCPOffset1": 1696, + "m_vecCPOffset2": 1708, + "m_vecCPOffset3": 1720, + "m_vecCPOffset4": 1732 + }, + "C_OP_Cull": { + "m_flCullEnd": 456, + "m_flCullExp": 460, + "m_flCullPerc": 448, + "m_flCullStart": 452 + }, + "C_OP_CurlNoiseForce": { + "m_flWorleyJitter": 7312, + "m_flWorleySeed": 6968, + "m_nNoiseType": 464, + "m_vecNoiseFreq": 472, + "m_vecNoiseScale": 2096, + "m_vecOffset": 3720, + "m_vecOffsetRate": 5344 + }, + "C_OP_CycleScalar": { + "m_bDoNotRepeatCycle": 464, + "m_bSynchronizeParticles": 465, + "m_flCycleTime": 460, + "m_flEndValue": 456, + "m_flStartValue": 452, + "m_nCPFieldMax": 476, + "m_nCPFieldMin": 472, + "m_nCPScale": 468, + "m_nDestField": 448, + "m_nSetMethod": 480 + }, + "C_OP_CylindricalDistanceToTransform": { + "m_TransformEnd": 1936, + "m_TransformStart": 1832, + "m_bActiveRange": 2044, + "m_bAdditive": 2045, + "m_bCapsule": 2046, + "m_flInputMax": 800, + "m_flInputMin": 456, + "m_flOutputMax": 1488, + "m_flOutputMin": 1144, + "m_nFieldOutput": 448, + "m_nSetMethod": 2040 + }, + "C_OP_DampenToCP": { + "m_flRange": 452, + "m_flScale": 456, + "m_nControlPointNumber": 448 + }, + "C_OP_Decay": { + "m_bForcePreserveParticleOrder": 449, + "m_bRopeDecay": 448 + }, + "C_OP_DecayClampCount": { + "m_nCount": 448 + }, + "C_OP_DecayMaintainCount": { + "m_bKillNewest": 808, + "m_bLifespanDecay": 460, + "m_flDecayDelay": 452, + "m_flScale": 464, + "m_nParticlesToMaintain": 448, + "m_nSnapshotControlPoint": 456 + }, + "C_OP_DecayOffscreen": { + "m_flOffscreenTime": 448 + }, + "C_OP_DensityForce": { + "m_flForceScale": 468, + "m_flRadiusScale": 464, + "m_flTargetDensity": 472 + }, + "C_OP_DifferencePreviousParticle": { + "m_bActiveRange": 476, + "m_bSetPreviousParticle": 477, + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_nFieldInput": 448, + "m_nFieldOutput": 452, + "m_nSetMethod": 472 + }, + "C_OP_Diffusion": { + "m_flRadiusScale": 448, + "m_nFieldOutput": 452, + "m_nVoxelGridResolution": 456 + }, + "C_OP_DirectionBetweenVecsToVec": { + "m_nFieldOutput": 448, + "m_vecPoint1": 456, + "m_vecPoint2": 2080 + }, + "C_OP_DistanceBetweenCPsToCP": { + "m_CollisionGroupName": 509, + "m_bLOS": 508, + "m_bSetOnce": 480, + "m_flInputMax": 488, + "m_flInputMin": 484, + "m_flLOSScale": 504, + "m_flMaxTraceLength": 500, + "m_flOutputMax": 496, + "m_flOutputMin": 492, + "m_nEndCP": 468, + "m_nOutputCP": 472, + "m_nOutputCPField": 476, + "m_nSetParent": 644, + "m_nStartCP": 464, + "m_nTraceSet": 640 + }, + "C_OP_DistanceBetweenTransforms": { + "m_CollisionGroupName": 2048, + "m_TransformEnd": 560, + "m_TransformStart": 456, + "m_bLOS": 2180, + "m_flInputMax": 1008, + "m_flInputMin": 664, + "m_flLOSScale": 2044, + "m_flMaxTraceLength": 2040, + "m_flOutputMax": 1696, + "m_flOutputMin": 1352, + "m_nFieldOutput": 448, + "m_nSetMethod": 2184, + "m_nTraceSet": 2176 + }, + "C_OP_DistanceBetweenVecs": { + "m_bDeltaTime": 5084, + "m_flInputMax": 4048, + "m_flInputMin": 3704, + "m_flOutputMax": 4736, + "m_flOutputMin": 4392, + "m_nFieldOutput": 448, + "m_nSetMethod": 5080, + "m_vecPoint1": 456, + "m_vecPoint2": 2080 + }, + "C_OP_DistanceCull": { + "m_bCullInside": 468, + "m_flDistance": 464, + "m_nControlPoint": 448, + "m_vecPointOffset": 452 + }, + "C_OP_DistanceToTransform": { + "m_CollisionGroupName": 1937, + "m_TransformStart": 1832, + "m_bActiveRange": 2084, + "m_bAdditive": 2085, + "m_bLOS": 1936, + "m_flInputMax": 800, + "m_flInputMin": 456, + "m_flLOSScale": 2076, + "m_flMaxTraceLength": 2072, + "m_flOutputMax": 1488, + "m_flOutputMin": 1144, + "m_nFieldOutput": 448, + "m_nSetMethod": 2080, + "m_nTraceSet": 2068, + "m_vecComponentScale": 2088 + }, + "C_OP_DragRelativeToPlane": { + "m_bDirectional": 1136, + "m_flDragAtPlane": 448, + "m_flFalloff": 792, + "m_nControlPointNumber": 2768, + "m_vecPlaneNormal": 1144 + }, + "C_OP_DriveCPFromGlobalSoundFloat": { + "m_FieldName": 504, + "m_OperatorName": 496, + "m_StackName": 488, + "m_flInputMax": 476, + "m_flInputMin": 472, + "m_flOutputMax": 484, + "m_flOutputMin": 480, + "m_nOutputControlPoint": 464, + "m_nOutputField": 468 + }, + "C_OP_EnableChildrenFromParentParticleCount": { + "m_bDestroyImmediately": 818, + "m_bDisableChildren": 816, + "m_bPlayEndcapOnStop": 817, + "m_nChildGroupID": 464, + "m_nFirstChild": 468, + "m_nNumChildrenToEnable": 472 + }, + "C_OP_EndCapTimedDecay": { + "m_flDecayTime": 448 + }, + "C_OP_EndCapTimedFreeze": { + "m_flFreezeTime": 448 + }, + "C_OP_ExternalGameImpulseForce": { + "m_bExplosions": 810, + "m_bParticles": 811, + "m_bRopes": 808, + "m_bRopesZOnly": 809, + "m_flForceScale": 464 + }, + "C_OP_ExternalWindForce": { + "m_bDampenNearWaterPlane": 3714, + "m_bSampleGravity": 3715, + "m_bSampleWater": 3713, + "m_bSampleWind": 3712, + "m_bUseBasicMovementGravity": 5344, + "m_flLocalBuoyancyScale": 5696, + "m_flLocalGravityScale": 5352, + "m_vecBuoyancyForce": 6040, + "m_vecGravityForce": 3720, + "m_vecSamplePosition": 464, + "m_vecScale": 2088 + }, + "C_OP_FadeAndKill": { + "m_bForcePreserveParticleOrder": 472, + "m_flEndAlpha": 468, + "m_flEndFadeInTime": 452, + "m_flEndFadeOutTime": 460, + "m_flStartAlpha": 464, + "m_flStartFadeInTime": 448, + "m_flStartFadeOutTime": 456 + }, + "C_OP_FadeAndKillForTracers": { + "m_flEndAlpha": 468, + "m_flEndFadeInTime": 452, + "m_flEndFadeOutTime": 460, + "m_flStartAlpha": 464, + "m_flStartFadeInTime": 448, + "m_flStartFadeOutTime": 456 + }, + "C_OP_FadeIn": { + "m_bProportional": 460, + "m_flFadeInTimeExp": 456, + "m_flFadeInTimeMax": 452, + "m_flFadeInTimeMin": 448 + }, + "C_OP_FadeInSimple": { + "m_flFadeInTime": 448, + "m_nFieldOutput": 452 + }, + "C_OP_FadeOut": { + "m_bEaseInAndOut": 513, + "m_bProportional": 512, + "m_flFadeBias": 460, + "m_flFadeOutTimeExp": 456, + "m_flFadeOutTimeMax": 452, + "m_flFadeOutTimeMin": 448 + }, + "C_OP_FadeOutSimple": { + "m_flFadeOutTime": 448, + "m_nFieldOutput": 452 + }, + "C_OP_ForceBasedOnDistanceToPlane": { + "m_flExponent": 512, + "m_flMaxDist": 480, + "m_flMinDist": 464, + "m_nControlPointNumber": 508, + "m_vecForceAtMaxDist": 484, + "m_vecForceAtMinDist": 468, + "m_vecPlaneNormal": 496 + }, + "C_OP_ForceControlPointStub": { + "m_ControlPoint": 464 + }, + "C_OP_GlobalLight": { + "m_bClampLowerRange": 452, + "m_bClampUpperRange": 453, + "m_flScale": 448 + }, + "C_OP_HSVShiftToCP": { + "m_DefaultHSVColor": 476, + "m_nColorCP": 464, + "m_nColorGemEnableCP": 468, + "m_nOutputCP": 472 + }, + "C_OP_InheritFromParentParticles": { + "m_bRandomDistribution": 460, + "m_flScale": 448, + "m_nFieldOutput": 452, + "m_nIncrement": 456 + }, + "C_OP_InheritFromParentParticlesV2": { + "m_bRandomDistribution": 460, + "m_flScale": 448, + "m_nFieldOutput": 452, + "m_nIncrement": 456, + "m_nMissingParentBehavior": 464 + }, + "C_OP_InheritFromPeerSystem": { + "m_nFieldInput": 452, + "m_nFieldOutput": 448, + "m_nGroupID": 460, + "m_nIncrement": 456 + }, + "C_OP_InstantaneousEmitter": { + "m_flInitFromKilledParentParticles": 1136, + "m_flStartTime": 792, + "m_nMaxEmittedPerFrame": 1140, + "m_nParticlesToEmit": 448, + "m_nSnapshotControlPoint": 1144 + }, + "C_OP_InterpolateRadius": { + "m_bEaseInAndOut": 464, + "m_flBias": 468, + "m_flEndScale": 460, + "m_flEndTime": 452, + "m_flStartScale": 456, + "m_flStartTime": 448 + }, + "C_OP_LagCompensation": { + "m_nDesiredVelocityCP": 448, + "m_nDesiredVelocityCPField": 460, + "m_nLatencyCP": 452, + "m_nLatencyCPField": 456 + }, + "C_OP_LerpEndCapScalar": { + "m_flLerpTime": 456, + "m_flOutput": 452, + "m_nFieldOutput": 448 + }, + "C_OP_LerpEndCapVector": { + "m_flLerpTime": 464, + "m_nFieldOutput": 448, + "m_vecOutput": 452 + }, + "C_OP_LerpScalar": { + "m_flEndTime": 804, + "m_flOutput": 456, + "m_flStartTime": 800, + "m_nFieldOutput": 448 + }, + "C_OP_LerpToInitialPosition": { + "m_flInterpolation": 456, + "m_flScale": 808, + "m_nCacheField": 800, + "m_nControlPointNumber": 448, + "m_vecScale": 1152 + }, + "C_OP_LerpToOtherAttribute": { + "m_flInterpolation": 448, + "m_nFieldInput": 796, + "m_nFieldInputFrom": 792, + "m_nFieldOutput": 800 + }, + "C_OP_LerpVector": { + "m_flEndTime": 468, + "m_flStartTime": 464, + "m_nFieldOutput": 448, + "m_nSetMethod": 472, + "m_vecOutput": 452 + }, + "C_OP_LightningSnapshotGenerator": { + "m_flBranchTwist": 2888, + "m_flDedicatedPool": 3928, + "m_flOffset": 824, + "m_flOffsetDecay": 1168, + "m_flRadiusEnd": 3584, + "m_flRadiusStart": 3240, + "m_flRecalcRate": 1512, + "m_flSegments": 480, + "m_flSplitRate": 2544, + "m_flUVOffset": 2200, + "m_flUVScale": 1856, + "m_nBranchBehavior": 3232, + "m_nCPEndPnt": 472, + "m_nCPSnapshot": 464, + "m_nCPStartPnt": 468 + }, + "C_OP_LocalAccelerationForce": { + "m_nCP": 464, + "m_nScaleCP": 468, + "m_vecAccel": 472 + }, + "C_OP_LockPoints": { + "m_flBlendValue": 468, + "m_nControlPoint": 464, + "m_nMaxCol": 452, + "m_nMaxRow": 460, + "m_nMinCol": 448, + "m_nMinRow": 456 + }, + "C_OP_LockToBone": { + "m_HitboxSetName": 664, + "m_bRigid": 792, + "m_bRigidRotationLock": 808, + "m_bUseBones": 793, + "m_flJumpThreshold": 656, + "m_flLifeTimeFadeEnd": 652, + "m_flLifeTimeFadeStart": 648, + "m_flPrevPosScale": 660, + "m_flRotLerp": 2440, + "m_modelInput": 448, + "m_nFieldOutput": 796, + "m_nFieldOutputPrev": 800, + "m_nRotationSetType": 804, + "m_transformInput": 544, + "m_vecRotation": 816 + }, + "C_OP_LockToPointList": { + "m_bClosedLoop": 481, + "m_bPlaceAlongPath": 480, + "m_nFieldOutput": 448, + "m_nNumPointsAlongPath": 484, + "m_pointList": 456 + }, + "C_OP_LockToSavedSequentialPath": { + "m_PathParams": 464, + "m_bCPPairs": 460, + "m_flFadeEnd": 456, + "m_flFadeStart": 452 + }, + "C_OP_LockToSavedSequentialPathV2": { + "m_PathParams": 464, + "m_bCPPairs": 456, + "m_flFadeEnd": 452, + "m_flFadeStart": 448 + }, + "C_OP_MaintainEmitter": { + "m_bEmitInstantaneously": 1152, + "m_bFinalEmitOnStop": 1153, + "m_flEmissionDuration": 800, + "m_flEmissionRate": 1144, + "m_flScale": 1160, + "m_flStartTime": 792, + "m_nParticlesToMaintain": 448, + "m_nSnapshotControlPoint": 1148 + }, + "C_OP_MaintainSequentialPath": { + "m_PathParams": 480, + "m_bLoop": 464, + "m_bUseParticleCount": 465, + "m_fMaxDistance": 448, + "m_flCohesionStrength": 456, + "m_flNumToAssign": 452, + "m_flTolerance": 460 + }, + "C_OP_MaxVelocity": { + "m_flMaxVelocity": 448, + "m_flMinVelocity": 452, + "m_nOverrideCP": 456, + "m_nOverrideCPField": 460 + }, + "C_OP_ModelCull": { + "m_HitboxSetName": 455, + "m_bBoundBox": 452, + "m_bCullOutside": 453, + "m_bUseBones": 454, + "m_nControlPointNumber": 448 + }, + "C_OP_ModelDampenMovement": { + "m_HitboxSetName": 455, + "m_bBoundBox": 452, + "m_bOutside": 453, + "m_bUseBones": 454, + "m_fDrag": 2208, + "m_nControlPointNumber": 448, + "m_vecPosOffset": 584 + }, + "C_OP_MoveToHitbox": { + "m_HitboxSetName": 664, + "m_bUseBones": 792, + "m_flInterpolation": 800, + "m_flLifeTimeLerpEnd": 656, + "m_flLifeTimeLerpStart": 652, + "m_flPrevPosScale": 660, + "m_modelInput": 448, + "m_nLerpType": 796, + "m_transformInput": 544 + }, + "C_OP_MovementLoopInsideSphere": { + "m_flDistance": 456, + "m_nCP": 448, + "m_nDistSqrAttr": 2424, + "m_vecScale": 800 + }, + "C_OP_MovementMaintainOffset": { + "m_bRadiusScale": 464, + "m_nCP": 460, + "m_vecOffset": 448 + }, + "C_OP_MovementMoveAlongSkinnedCPSnapshot": { + "m_bSetNormal": 456, + "m_bSetRadius": 457, + "m_flInterpolation": 464, + "m_flTValue": 808, + "m_nControlPointNumber": 448, + "m_nSnapshotControlPointNumber": 452 + }, + "C_OP_MovementPlaceOnGround": { + "m_CollisionGroupName": 808, + "m_bIncludeShotHull": 964, + "m_bIncludeWater": 965, + "m_bScaleOffset": 969, + "m_bSetNormal": 968, + "m_flLerpRate": 804, + "m_flMaxTraceLength": 792, + "m_flOffset": 448, + "m_flTolerance": 796, + "m_flTraceOffset": 800, + "m_nIgnoreCP": 976, + "m_nLerpCP": 948, + "m_nPreserveOffsetCP": 972, + "m_nRefCP1": 940, + "m_nRefCP2": 944, + "m_nTraceMissBehavior": 960, + "m_nTraceSet": 936 + }, + "C_OP_MovementRigidAttachToCP": { + "m_bOffsetLocal": 468, + "m_nControlPointNumber": 448, + "m_nFieldInput": 460, + "m_nFieldOutput": 464, + "m_nScaleCPField": 456, + "m_nScaleControlPoint": 452 + }, + "C_OP_MovementRotateParticleAroundAxis": { + "m_TransformInput": 2416, + "m_bLocalSpace": 2520, + "m_flRotRate": 2072, + "m_vecRotAxis": 448 + }, + "C_OP_MovementSkinnedPositionFromCPSnapshot": { + "m_bRandom": 456, + "m_bSetNormal": 464, + "m_bSetRadius": 465, + "m_flIncrement": 472, + "m_flInterpolation": 1504, + "m_nControlPointNumber": 452, + "m_nFullLoopIncrement": 816, + "m_nRandomSeed": 460, + "m_nSnapShotStartPoint": 1160, + "m_nSnapshotControlPointNumber": 448 + }, + "C_OP_Noise": { + "m_bAdditive": 464, + "m_fl4NoiseScale": 460, + "m_flNoiseAnimationTimeScale": 468, + "m_flOutputMax": 456, + "m_flOutputMin": 452, + "m_nFieldOutput": 448 + }, + "C_OP_NoiseEmitter": { + "m_bAbsVal": 472, + "m_bAbsValInv": 473, + "m_flEmissionDuration": 448, + "m_flEmissionScale": 456, + "m_flNoiseScale": 488, + "m_flOffset": 476, + "m_flOutputMax": 484, + "m_flOutputMin": 480, + "m_flStartTime": 452, + "m_flWorldNoiseScale": 492, + "m_flWorldTimeScale": 508, + "m_nScaleControlPoint": 460, + "m_nScaleControlPointField": 464, + "m_nWorldNoisePoint": 468, + "m_vecOffsetLoc": 496 + }, + "C_OP_NormalLock": { + "m_nControlPointNumber": 448 + }, + "C_OP_NormalizeVector": { + "m_flScale": 452, + "m_nFieldOutput": 448 + }, + "C_OP_Orient2DRelToCP": { + "m_flRotOffset": 448, + "m_flSpinStrength": 452, + "m_nCP": 456, + "m_nFieldOutput": 460 + }, + "C_OP_OrientTo2dDirection": { + "m_flRotOffset": 448, + "m_flSpinStrength": 452, + "m_nFieldOutput": 456 + }, + "C_OP_OscillateScalar": { + "m_FrequencyMax": 460, + "m_FrequencyMin": 456, + "m_RateMax": 452, + "m_RateMin": 448, + "m_bProportional": 468, + "m_bProportionalOp": 469, + "m_flEndTime_max": 484, + "m_flEndTime_min": 480, + "m_flOscAdd": 492, + "m_flOscMult": 488, + "m_flStartTime_max": 476, + "m_flStartTime_min": 472, + "m_nField": 464 + }, + "C_OP_OscillateScalarSimple": { + "m_Frequency": 452, + "m_Rate": 448, + "m_flOscAdd": 464, + "m_flOscMult": 460, + "m_nField": 456 + }, + "C_OP_OscillateVector": { + "m_FrequencyMax": 484, + "m_FrequencyMin": 472, + "m_RateMax": 460, + "m_RateMin": 448, + "m_bOffset": 502, + "m_bProportional": 500, + "m_bProportionalOp": 501, + "m_flEndTime_max": 516, + "m_flEndTime_min": 512, + "m_flOscAdd": 864, + "m_flOscMult": 520, + "m_flRateScale": 1208, + "m_flStartTime_max": 508, + "m_flStartTime_min": 504, + "m_nField": 496 + }, + "C_OP_OscillateVectorSimple": { + "m_Frequency": 460, + "m_Rate": 448, + "m_bOffset": 484, + "m_flOscAdd": 480, + "m_flOscMult": 476, + "m_nField": 472 + }, + "C_OP_ParentVortices": { + "m_bFlipBasedOnYaw": 480, + "m_flForceScale": 464, + "m_vecTwistAxis": 468 + }, + "C_OP_ParticlePhysics": { + "m_Gravity": 448, + "m_fDrag": 2072, + "m_nMaxConstraintPasses": 2416 + }, + "C_OP_PerParticleForce": { + "m_flForceScale": 464, + "m_nCP": 2432, + "m_vForce": 808 + }, + "C_OP_PercentageBetweenTransformLerpCPs": { + "m_TransformEnd": 568, + "m_TransformStart": 464, + "m_bActiveRange": 692, + "m_bRadialCheck": 693, + "m_flInputMax": 456, + "m_flInputMin": 452, + "m_nFieldOutput": 448, + "m_nOutputEndCP": 680, + "m_nOutputEndField": 684, + "m_nOutputStartCP": 672, + "m_nOutputStartField": 676, + "m_nSetMethod": 688 + }, + "C_OP_PercentageBetweenTransforms": { + "m_TransformEnd": 576, + "m_TransformStart": 472, + "m_bActiveRange": 684, + "m_bRadialCheck": 685, + "m_flInputMax": 456, + "m_flInputMin": 452, + "m_flOutputMax": 464, + "m_flOutputMin": 460, + "m_nFieldOutput": 448, + "m_nSetMethod": 680 + }, + "C_OP_PercentageBetweenTransformsVector": { + "m_TransformEnd": 592, + "m_TransformStart": 488, + "m_bActiveRange": 700, + "m_bRadialCheck": 701, + "m_flInputMax": 456, + "m_flInputMin": 452, + "m_nFieldOutput": 448, + "m_nSetMethod": 696, + "m_vecOutputMax": 472, + "m_vecOutputMin": 460 + }, + "C_OP_PinParticleToCP": { + "m_bOffsetLocal": 2080, + "m_flAge": 3128, + "m_flBreakDistance": 2440, + "m_flBreakSpeed": 2784, + "m_flBreakValue": 3480, + "m_flInterpolation": 3824, + "m_nBreakControlPointNumber": 3472, + "m_nBreakControlPointNumber2": 3476, + "m_nControlPointNumber": 448, + "m_nParticleNumber": 2088, + "m_nParticleSelection": 2084, + "m_nPinBreakType": 2432, + "m_vecOffset": 456 + }, + "C_OP_PlanarConstraint": { + "m_PlaneNormal": 460, + "m_PointOnPlane": 448, + "m_bGlobalNormal": 477, + "m_bGlobalOrigin": 476, + "m_flMaximumDistanceToCP": 824, + "m_flRadiusScale": 480, + "m_nControlPointNumber": 472 + }, + "C_OP_PlaneCull": { + "m_bLocalSpace": 464, + "m_flPlaneOffset": 468, + "m_nPlaneControlPoint": 448, + "m_vecPlaneDirection": 452 + }, + "C_OP_PlayEndCapWhenFinished": { + "m_bFireOnEmissionEnd": 464, + "m_bIncludeChildren": 465 + }, + "C_OP_PointVectorAtNextParticle": { + "m_flInterpolation": 456, + "m_nFieldOutput": 448 + }, + "C_OP_PositionLock": { + "m_TransformInput": 448, + "m_bLockRot": 936, + "m_flEndTime_exp": 572, + "m_flEndTime_max": 568, + "m_flEndTime_min": 564, + "m_flJumpThreshold": 928, + "m_flPrevPosScale": 932, + "m_flRange": 576, + "m_flRangeBias": 584, + "m_flStartTime_exp": 560, + "m_flStartTime_max": 556, + "m_flStartTime_min": 552, + "m_nFieldOutput": 2568, + "m_nFieldOutputPrev": 2572, + "m_vecScale": 944 + }, + "C_OP_QuantizeCPComponent": { + "m_flInputValue": 464, + "m_flQuantizeValue": 816, + "m_nCPOutput": 808, + "m_nOutVectorField": 812 + }, + "C_OP_QuantizeFloat": { + "m_InputValue": 448, + "m_nOutputField": 792 + }, + "C_OP_RadiusDecay": { + "m_flMinRadius": 448 + }, + "C_OP_RampCPLinearRandom": { + "m_nOutControlPointNumber": 464, + "m_vecRateMax": 480, + "m_vecRateMin": 468 + }, + "C_OP_RampScalarLinear": { + "m_RateMax": 452, + "m_RateMin": 448, + "m_bProportionalOp": 516, + "m_flEndTime_max": 468, + "m_flEndTime_min": 464, + "m_flStartTime_max": 460, + "m_flStartTime_min": 456, + "m_nField": 512 + }, + "C_OP_RampScalarLinearSimple": { + "m_Rate": 448, + "m_flEndTime": 456, + "m_flStartTime": 452, + "m_nField": 496 + }, + "C_OP_RampScalarSpline": { + "m_RateMax": 452, + "m_RateMin": 448, + "m_bEaseOut": 517, + "m_bProportionalOp": 516, + "m_flBias": 472, + "m_flEndTime_max": 468, + "m_flEndTime_min": 464, + "m_flStartTime_max": 460, + "m_flStartTime_min": 456, + "m_nField": 512 + }, + "C_OP_RampScalarSplineSimple": { + "m_Rate": 448, + "m_bEaseOut": 500, + "m_flEndTime": 456, + "m_flStartTime": 452, + "m_nField": 496 + }, + "C_OP_RandomForce": { + "m_MaxForce": 476, + "m_MinForce": 464 + }, + "C_OP_ReadFromNeighboringParticle": { + "m_DistanceCheck": 464, + "m_flInterpolation": 808, + "m_nFieldInput": 448, + "m_nFieldOutput": 452, + "m_nIncrement": 456 + }, + "C_OP_ReinitializeScalarEndCap": { + "m_flOutputMax": 456, + "m_flOutputMin": 452, + "m_nFieldOutput": 448 + }, + "C_OP_RemapAverageHitboxSpeedtoCP": { + "m_HitboxSetName": 3488, + "m_flInputMax": 824, + "m_flInputMin": 480, + "m_flOutputMax": 1512, + "m_flOutputMin": 1168, + "m_nField": 472, + "m_nHeightControlPointNumber": 1856, + "m_nInControlPointNumber": 464, + "m_nOutControlPointNumber": 468, + "m_vecComparisonVelocity": 1864 + }, + "C_OP_RemapAverageScalarValuetoCP": { + "m_flInputMax": 480, + "m_flInputMin": 476, + "m_flOutputMax": 488, + "m_flOutputMin": 484, + "m_nField": 472, + "m_nOutControlPointNumber": 464, + "m_nOutVectorField": 468 + }, + "C_OP_RemapBoundingVolumetoCP": { + "m_flInputMax": 472, + "m_flInputMin": 468, + "m_flOutputMax": 480, + "m_flOutputMin": 476, + "m_nOutControlPointNumber": 464 + }, + "C_OP_RemapCPVelocityToVector": { + "m_bNormalize": 460, + "m_flScale": 456, + "m_nControlPoint": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RemapCPtoCP": { + "m_bDerivative": 496, + "m_flInputMax": 484, + "m_flInputMin": 480, + "m_flInterpRate": 500, + "m_flOutputMax": 492, + "m_flOutputMin": 488, + "m_nInputControlPoint": 464, + "m_nInputField": 472, + "m_nOutputControlPoint": 468, + "m_nOutputField": 476 + }, + "C_OP_RemapCPtoScalar": { + "m_flEndTime": 480, + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flInterpRate": 484, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_flStartTime": 476, + "m_nCPInput": 448, + "m_nField": 456, + "m_nFieldOutput": 452, + "m_nSetMethod": 488 + }, + "C_OP_RemapCPtoVector": { + "m_bAccelerate": 525, + "m_bOffset": 524, + "m_flEndTime": 512, + "m_flInterpRate": 516, + "m_flStartTime": 508, + "m_nCPInput": 448, + "m_nFieldOutput": 452, + "m_nLocalSpaceCP": 456, + "m_nSetMethod": 520, + "m_vInputMax": 472, + "m_vInputMin": 460, + "m_vOutputMax": 496, + "m_vOutputMin": 484 + }, + "C_OP_RemapControlPointDirectionToVector": { + "m_flScale": 452, + "m_nControlPointNumber": 456, + "m_nFieldOutput": 448 + }, + "C_OP_RemapControlPointOrientationToRotation": { + "m_flOffsetRot": 456, + "m_nCP": 448, + "m_nComponent": 460, + "m_nFieldOutput": 452 + }, + "C_OP_RemapCrossProductOfTwoVectorsToVector": { + "m_InputVec1": 448, + "m_InputVec2": 2072, + "m_bNormalize": 3700, + "m_nFieldOutput": 3696 + }, + "C_OP_RemapDensityGradientToVectorAttribute": { + "m_flRadiusScale": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RemapDensityToVector": { + "m_bUseParentDensity": 488, + "m_flDensityMax": 460, + "m_flDensityMin": 456, + "m_flRadiusScale": 448, + "m_nFieldOutput": 452, + "m_nVoxelGridResolution": 492, + "m_vecOutputMax": 476, + "m_vecOutputMin": 464 + }, + "C_OP_RemapDirectionToCPToVector": { + "m_bNormalize": 476, + "m_flOffsetRot": 460, + "m_flScale": 456, + "m_nCP": 448, + "m_nFieldOutput": 452, + "m_nFieldStrength": 480, + "m_vecOffsetAxis": 464 + }, + "C_OP_RemapDistanceToLineSegmentBase": { + "m_bInfiniteLine": 464, + "m_flMaxInputValue": 460, + "m_flMinInputValue": 456, + "m_nCP0": 448, + "m_nCP1": 452 + }, + "C_OP_RemapDistanceToLineSegmentToScalar": { + "m_flMaxOutputValue": 488, + "m_flMinOutputValue": 484, + "m_nFieldOutput": 480 + }, + "C_OP_RemapDistanceToLineSegmentToVector": { + "m_nFieldOutput": 480, + "m_vMaxOutputValue": 496, + "m_vMinOutputValue": 484 + }, + "C_OP_RemapDotProductToCP": { + "m_flInputMax": 824, + "m_flInputMin": 480, + "m_flOutputMax": 1512, + "m_flOutputMin": 1168, + "m_nInputCP1": 464, + "m_nInputCP2": 468, + "m_nOutVectorField": 476, + "m_nOutputCP": 472 + }, + "C_OP_RemapDotProductToScalar": { + "m_bActiveRange": 484, + "m_bUseParticleNormal": 485, + "m_bUseParticleVelocity": 476, + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_nFieldOutput": 456, + "m_nInputCP1": 448, + "m_nInputCP2": 452, + "m_nSetMethod": 480 + }, + "C_OP_RemapExternalWindToCP": { + "m_bSetMagnitude": 2096, + "m_nCP": 464, + "m_nCPOutput": 468, + "m_nOutVectorField": 2100, + "m_vecScale": 472 + }, + "C_OP_RemapModelVolumetoCP": { + "m_flInputMax": 488, + "m_flInputMin": 484, + "m_flOutputMax": 496, + "m_flOutputMin": 492, + "m_nBBoxType": 464, + "m_nField": 480, + "m_nInControlPointNumber": 468, + "m_nOutControlPointMaxNumber": 476, + "m_nOutControlPointNumber": 472 + }, + "C_OP_RemapNamedModelElementEndCap": { + "m_bModelFromRenderer": 528, + "m_fallbackNames": 504, + "m_hModel": 448, + "m_inNames": 456, + "m_nFieldInput": 532, + "m_nFieldOutput": 536, + "m_outNames": 480 + }, + "C_OP_RemapNamedModelElementOnceTimed": { + "m_bModelFromRenderer": 528, + "m_bProportional": 529, + "m_fallbackNames": 504, + "m_flRemapTime": 540, + "m_hModel": 448, + "m_inNames": 456, + "m_nFieldInput": 532, + "m_nFieldOutput": 536, + "m_outNames": 480 + }, + "C_OP_RemapParticleCountOnScalarEndCap": { + "m_bBackwards": 468, + "m_flOutputMax": 464, + "m_flOutputMin": 460, + "m_nFieldOutput": 448, + "m_nInputMax": 456, + "m_nInputMin": 452, + "m_nSetMethod": 472 + }, + "C_OP_RemapParticleCountToScalar": { + "m_bActiveRange": 1832, + "m_flOutputMax": 1488, + "m_flOutputMin": 1144, + "m_nFieldOutput": 448, + "m_nInputMax": 800, + "m_nInputMin": 456, + "m_nSetMethod": 1836 + }, + "C_OP_RemapSDFDistanceToScalarAttribute": { + "m_flMaxDistance": 800, + "m_flMinDistance": 456, + "m_flValueAboveMax": 2176, + "m_flValueAtMax": 1832, + "m_flValueAtMin": 1488, + "m_flValueBelowMin": 1144, + "m_nFieldOutput": 448, + "m_nVectorFieldInput": 452 + }, + "C_OP_RemapSDFDistanceToVectorAttribute": { + "m_flMaxDistance": 800, + "m_flMinDistance": 456, + "m_nVectorFieldInput": 452, + "m_nVectorFieldOutput": 448, + "m_vValueAboveMax": 1180, + "m_vValueAtMax": 1168, + "m_vValueAtMin": 1156, + "m_vValueBelowMin": 1144 + }, + "C_OP_RemapSDFGradientToVectorAttribute": { + "m_nFieldOutput": 448 + }, + "C_OP_RemapScalar": { + "m_bOldCode": 472, + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_nFieldInput": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RemapScalarEndCap": { + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_nFieldInput": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RemapScalarOnceTimed": { + "m_bProportional": 448, + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_flRemapTime": 476, + "m_nFieldInput": 452, + "m_nFieldOutput": 456 + }, + "C_OP_RemapSpeed": { + "m_bIgnoreDelta": 472, + "m_flInputMax": 456, + "m_flInputMin": 452, + "m_flOutputMax": 464, + "m_flOutputMin": 460, + "m_nFieldOutput": 448, + "m_nSetMethod": 468 + }, + "C_OP_RemapSpeedtoCP": { + "m_bUseDeltaV": 492, + "m_flInputMax": 480, + "m_flInputMin": 476, + "m_flOutputMax": 488, + "m_flOutputMin": 484, + "m_nField": 472, + "m_nInControlPointNumber": 464, + "m_nOutControlPointNumber": 468 + }, + "C_OP_RemapTransformOrientationToRotations": { + "m_TransformInput": 448, + "m_bUseQuat": 564, + "m_bWriteNormal": 565, + "m_vecRotation": 552 + }, + "C_OP_RemapTransformOrientationToYaw": { + "m_TransformInput": 448, + "m_flRotOffset": 556, + "m_flSpinStrength": 560, + "m_nFieldOutput": 552 + }, + "C_OP_RemapTransformToVelocity": { + "m_TransformInput": 448 + }, + "C_OP_RemapTransformVisibilityToScalar": { + "m_TransformInput": 456, + "m_flInputMax": 568, + "m_flInputMin": 564, + "m_flOutputMax": 576, + "m_flOutputMin": 572, + "m_flRadius": 580, + "m_nFieldOutput": 560, + "m_nSetMethod": 448 + }, + "C_OP_RemapTransformVisibilityToVector": { + "m_TransformInput": 456, + "m_flInputMax": 568, + "m_flInputMin": 564, + "m_flRadius": 596, + "m_nFieldOutput": 560, + "m_nSetMethod": 448, + "m_vecOutputMax": 584, + "m_vecOutputMin": 572 + }, + "C_OP_RemapVectorComponentToScalar": { + "m_nComponent": 456, + "m_nFieldInput": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RemapVectortoCP": { + "m_nFieldInput": 452, + "m_nOutControlPointNumber": 448, + "m_nParticleNumber": 456 + }, + "C_OP_RemapVelocityToVector": { + "m_bNormalize": 456, + "m_flScale": 452, + "m_nFieldOutput": 448 + }, + "C_OP_RemapVisibilityScalar": { + "m_flInputMax": 460, + "m_flInputMin": 456, + "m_flOutputMax": 468, + "m_flOutputMin": 464, + "m_flRadiusScale": 472, + "m_nFieldInput": 448, + "m_nFieldOutput": 452 + }, + "C_OP_RenderAsModels": { + "m_ModelList": 512, + "m_bFitToModelSize": 544, + "m_bNonUniformScaling": 545, + "m_flModelScale": 540, + "m_nSizeCullBloat": 560, + "m_nXAxisScalingAttribute": 548, + "m_nYAxisScalingAttribute": 552, + "m_nZAxisScalingAttribute": 556 + }, + "C_OP_RenderBlobs": { + "m_MaterialVars": 1552, + "m_cubeWidth": 512, + "m_cutoffRadius": 856, + "m_hMaterial": 1600, + "m_nScaleCP": 1544, + "m_renderRadius": 1200 + }, + "C_OP_RenderCables": { + "m_LightingTransform": 4944, + "m_MaterialFloatVars": 5048, + "m_MaterialVecVars": 5096, + "m_bDrawCableCaps": 4912, + "m_flAlphaScale": 856, + "m_flCapOffsetAmount": 4920, + "m_flCapRoundness": 4916, + "m_flColorMapOffsetU": 3880, + "m_flColorMapOffsetV": 3536, + "m_flNormalMapOffsetU": 4568, + "m_flNormalMapOffsetV": 4224, + "m_flRadiusScale": 512, + "m_flTessScale": 4924, + "m_flTextureRepeatsCircumference": 3192, + "m_flTextureRepeatsPerSegment": 2848, + "m_hMaterial": 2832, + "m_nColorBlendType": 2824, + "m_nMaxTesselation": 4932, + "m_nMinTesselation": 4928, + "m_nRoundness": 4936, + "m_nTextureRepetitionMode": 2840, + "m_vecColorScale": 1200 + }, + "C_OP_RenderDeferredLight": { + "m_bUseAlphaTestWindow": 512, + "m_bUseTexture": 513, + "m_flAlphaScale": 520, + "m_flDistanceFalloff": 2164, + "m_flLightDistance": 2156, + "m_flRadiusScale": 516, + "m_flSpotFoV": 2168, + "m_flStartFalloff": 2160, + "m_hTexture": 2184, + "m_nAlpha2Field": 524, + "m_nAlphaTestPointField": 2172, + "m_nAlphaTestRangeField": 2176, + "m_nAlphaTestSharpnessField": 2180, + "m_nColorBlendType": 2152, + "m_nHSVShiftControlPoint": 2192, + "m_vecColorScale": 528 + }, + "C_OP_RenderFlattenGrass": { + "m_flFlattenStrength": 512, + "m_flRadiusScale": 520, + "m_nStrengthFieldOverride": 516 + }, + "C_OP_RenderGpuImplicit": { + "m_bUsePerParticleRadius": 512, + "m_fGridSize": 520, + "m_fIsosurfaceThreshold": 1208, + "m_fRadiusScale": 864, + "m_hMaterial": 1560, + "m_nScaleCP": 1552 + }, + "C_OP_RenderLightBeam": { + "m_bCastShadows": 2488, + "m_flBrightnessLumensPerMeter": 2144, + "m_flRange": 2840, + "m_flSkirt": 2496, + "m_flThickness": 3184, + "m_nColorBlendType": 2136, + "m_vColorBlend": 512 + }, + "C_OP_RenderLights": { + "m_bAnimateInFPS": 536, + "m_flAnimationRate": 528, + "m_flEndFadeSize": 552, + "m_flMaxSize": 544, + "m_flMinSize": 540, + "m_flStartFadeSize": 548, + "m_nAnimationType": 532 + }, + "C_OP_RenderMaterialProxy": { + "m_MaterialVars": 520, + "m_flAlpha": 2520, + "m_flMaterialOverrideEnabled": 552, + "m_hOverrideMaterial": 544, + "m_nColorBlendType": 2864, + "m_nMaterialControlPoint": 512, + "m_nProxyType": 516, + "m_vecColorScale": 896 + }, + "C_OP_RenderModels": { + "m_ActivityName": 5464, + "m_EconSlotName": 6468, + "m_MaterialVars": 6344, + "m_ModelList": 520, + "m_SequenceName": 5720, + "m_bAcceptsDecals": 6728, + "m_bAnimated": 5441, + "m_bCenterOffset": 558, + "m_bDisableShadows": 6727, + "m_bDoNotDrawInParticlePass": 6730, + "m_bEnableClothSimulation": 5976, + "m_bForceDrawInterlevedWithSiblings": 6729, + "m_bForceLoopingAnimation": 5449, + "m_bIgnoreNormal": 556, + "m_bIgnoreRadius": 3808, + "m_bLocalScale": 5440, + "m_bManualAnimFrame": 5451, + "m_bOnlyRenderInEffecsGameOverlay": 515, + "m_bOnlyRenderInEffectsBloomPass": 512, + "m_bOnlyRenderInEffectsWaterPass": 513, + "m_bOrientZ": 557, + "m_bOriginalModel": 6724, + "m_bOverrideTranslucentMaterials": 5992, + "m_bResetAnimOnStop": 5450, + "m_bScaleAnimationRate": 5448, + "m_bSuppressTint": 6725, + "m_bUseMixedResolutionRendering": 514, + "m_bUseRawMeshGroup": 6726, + "m_flAlphaScale": 7336, + "m_flAnimationRate": 5444, + "m_flRadiusScale": 6992, + "m_flRollScale": 7680, + "m_hOverrideMaterial": 5984, + "m_modelInput": 6368, + "m_nAlpha2Field": 8024, + "m_nAnimationField": 5456, + "m_nAnimationScaleField": 5452, + "m_nBodyGroupField": 548, + "m_nColorBlendType": 9656, + "m_nLOD": 6464, + "m_nManualFrameField": 5460, + "m_nModelScaleCP": 3812, + "m_nSkin": 6000, + "m_nSubModelField": 552, + "m_szRenderAttribute": 6731, + "m_vecColorScale": 8032, + "m_vecComponentScale": 3816, + "m_vecLocalOffset": 560, + "m_vecLocalRotation": 2184 + }, + "C_OP_RenderOmni2Light": { + "m_bCastShadows": 2840, + "m_bSphericalCookie": 4576, + "m_flBrightnessCandelas": 2496, + "m_flBrightnessLumens": 2152, + "m_flInnerConeAngle": 3880, + "m_flLuminaireRadius": 2848, + "m_flOuterConeAngle": 4224, + "m_flRange": 3536, + "m_flSkirt": 3192, + "m_hLightCookie": 4568, + "m_nBrightnessUnit": 2148, + "m_nColorBlendType": 2144, + "m_nLightType": 512, + "m_vColorBlend": 520 + }, + "C_OP_RenderPoints": { + "m_hMaterial": 512 + }, + "C_OP_RenderPostProcessing": { + "m_flPostProcessStrength": 512, + "m_hPostTexture": 856, + "m_nPriority": 864 + }, + "C_OP_RenderProjected": { + "m_MaterialVars": 544, + "m_bEnableProjectedDepthControls": 516, + "m_bFlipHorizontal": 515, + "m_bOrientToNormal": 540, + "m_bProjectCharacter": 512, + "m_bProjectWater": 514, + "m_bProjectWorld": 513, + "m_flAnimationTimeScale": 536, + "m_flMaxProjectionDepth": 524, + "m_flMinProjectionDepth": 520, + "m_hProjectedMaterial": 528 + }, + "C_OP_RenderRopes": { + "m_bClampV": 10412, + "m_bClosedLoop": 10449, + "m_bDrawAsOpaque": 10460, + "m_bEnableFadingAndClamping": 9328, + "m_bGenerateNormals": 10461, + "m_bReverseOrder": 10448, + "m_bUseScalarForTextureCoordinate": 10437, + "m_flEndFadeDot": 9352, + "m_flEndFadeSize": 9344, + "m_flMaxSize": 9336, + "m_flMinSize": 9332, + "m_flRadiusTaper": 9356, + "m_flScalarAttributeTextureCoordScale": 10444, + "m_flScaleVOffsetByControlPointDistance": 10432, + "m_flScaleVScrollByControlPointDistance": 10428, + "m_flScaleVSizeByControlPointDistance": 10424, + "m_flStartFadeDot": 9348, + "m_flStartFadeSize": 9340, + "m_flTessScale": 9368, + "m_flTextureVOffset": 10064, + "m_flTextureVScrollRate": 9720, + "m_flTextureVWorldSize": 9376, + "m_nMaxTesselation": 9364, + "m_nMinTesselation": 9360, + "m_nOrientationType": 10452, + "m_nScalarFieldForTextureCoordinate": 10440, + "m_nScaleCP1": 10416, + "m_nScaleCP2": 10420, + "m_nTextureVParamsCP": 10408, + "m_nVectorFieldForOrientation": 10456 + }, + "C_OP_RenderScreenShake": { + "m_flAmplitudeScale": 524, + "m_flDurationScale": 512, + "m_flFrequencyScale": 520, + "m_flRadiusScale": 516, + "m_nAmplitudeField": 540, + "m_nDurationField": 532, + "m_nFilterCP": 544, + "m_nFrequencyField": 536, + "m_nRadiusField": 528 + }, + "C_OP_RenderScreenVelocityRotate": { + "m_flForwardDegrees": 516, + "m_flRotateRateDegrees": 512 + }, + "C_OP_RenderSound": { + "m_bSuppressStopSoundEvent": 808, + "m_flDurationScale": 512, + "m_flPitchScale": 520, + "m_flSndLvlScale": 516, + "m_flVolumeScale": 524, + "m_nCPReference": 548, + "m_nChannel": 544, + "m_nDurationField": 532, + "m_nPitchField": 536, + "m_nSndLvlField": 528, + "m_nVolumeField": 540, + "m_pszSoundName": 552 + }, + "C_OP_RenderSprites": { + "m_OutlineColor": 10405, + "m_bDistanceAlpha": 10392, + "m_bOutline": 10404, + "m_bParticleShadows": 11128, + "m_bSoftEdges": 10393, + "m_bUseYawWithNormalAligned": 9680, + "m_flAlphaAdjustWithSizeAdjust": 9692, + "m_flEdgeSoftnessEnd": 10400, + "m_flEdgeSoftnessStart": 10396, + "m_flEndFadeDot": 10388, + "m_flEndFadeSize": 10040, + "m_flLightingDirectionality": 10784, + "m_flLightingTessellation": 10440, + "m_flMaxSize": 9688, + "m_flMinSize": 9684, + "m_flOutlineEnd0": 10424, + "m_flOutlineEnd1": 10428, + "m_flOutlineStart0": 10416, + "m_flOutlineStart1": 10420, + "m_flShadowDensity": 11132, + "m_flStartFadeDot": 10384, + "m_flStartFadeSize": 9696, + "m_nLightingMode": 10432, + "m_nOrientationControlPoint": 9676, + "m_nOrientationType": 9672, + "m_nOutlineAlpha": 10412, + "m_nSequenceOverride": 9328 + }, + "C_OP_RenderStandardLight": { + "m_bCastShadows": 2496, + "m_bClosedLoop": 4953, + "m_bIgnoreDT": 4968, + "m_bRenderDiffuse": 4576, + "m_bRenderSpecular": 4577, + "m_bReverseOrder": 4952, + "m_flCapsuleLength": 4948, + "m_flConstrainRadiusToLengthRatio": 4972, + "m_flFalloffLinearity": 3544, + "m_flFiftyPercentFalloff": 3888, + "m_flFogContribution": 4600, + "m_flIntensity": 2152, + "m_flLengthFadeInTime": 4980, + "m_flLengthScale": 4976, + "m_flMaxLength": 4960, + "m_flMinLength": 4964, + "m_flPhi": 2848, + "m_flRadiusMultiplier": 3192, + "m_flTheta": 2504, + "m_flZeroPercentFalloff": 4232, + "m_lightCookie": 4584, + "m_nAttenuationStyle": 3536, + "m_nCapsuleLightBehavior": 4944, + "m_nColorBlendType": 2144, + "m_nFogLightingMode": 4596, + "m_nLightType": 512, + "m_nPrevPntSource": 4956, + "m_nPriority": 4592, + "m_vecColorScale": 520 + }, + "C_OP_RenderStatusEffect": { + "m_pTextureColorWarp": 512, + "m_pTextureDetail2": 520, + "m_pTextureDiffuseWarp": 528, + "m_pTextureEnvMap": 560, + "m_pTextureFresnelColorWarp": 536, + "m_pTextureFresnelWarp": 544, + "m_pTextureSpecularWarp": 552 + }, + "C_OP_RenderStatusEffectCitadel": { + "m_pTextureColorWarp": 512, + "m_pTextureDetail": 552, + "m_pTextureMetalness": 528, + "m_pTextureNormal": 520, + "m_pTextureRoughness": 536, + "m_pTextureSelfIllum": 544 + }, + "C_OP_RenderText": { + "m_DefaultText": 520, + "m_OutlineColor": 512 + }, + "C_OP_RenderTonemapController": { + "m_flTonemapLevel": 512, + "m_flTonemapWeight": 516, + "m_nTonemapLevelField": 520, + "m_nTonemapWeightField": 524 + }, + "C_OP_RenderTrails": { + "m_bEnableFadingAndClamping": 10048, + "m_bFlipUVBasedOnPitchYaw": 14724, + "m_bIgnoreDT": 10072, + "m_flConstrainRadiusToLengthRatio": 10076, + "m_flEndFadeDot": 10056, + "m_flForwardShift": 14720, + "m_flHeadAlphaScale": 12056, + "m_flLengthFadeInTime": 10084, + "m_flLengthScale": 10080, + "m_flMaxLength": 10064, + "m_flMinLength": 10068, + "m_flRadiusHeadTaper": 10088, + "m_flRadiusTaper": 12400, + "m_flStartFadeDot": 10052, + "m_flTailAlphaScale": 14368, + "m_nHorizCropField": 14712, + "m_nPrevPntSource": 10060, + "m_nVertCropField": 14716, + "m_vecHeadColorScale": 10432, + "m_vecTailColorScale": 12744 + }, + "C_OP_RenderTreeShake": { + "m_flControlPointOrientationAmount": 544, + "m_flPeakStrength": 512, + "m_flRadialAmount": 540, + "m_flRadius": 520, + "m_flShakeDuration": 528, + "m_flTransitionTime": 532, + "m_flTwistAmount": 536, + "m_nControlPointForLinearDirection": 548, + "m_nPeakStrengthFieldOverride": 516, + "m_nRadiusFieldOverride": 524 + }, + "C_OP_RenderVRHapticEvent": { + "m_flAmplitude": 528, + "m_nHand": 512, + "m_nOutputField": 520, + "m_nOutputHandCP": 516 + }, + "C_OP_RepeatedTriggerChildGroup": { + "m_bLimitChildCount": 1504, + "m_flClusterCooldown": 1160, + "m_flClusterRefireTime": 472, + "m_flClusterSize": 816, + "m_nChildGroupID": 464 + }, + "C_OP_RestartAfterDuration": { + "m_bOnlyChildren": 468, + "m_flDurationMax": 452, + "m_flDurationMin": 448, + "m_nCP": 456, + "m_nCPField": 460, + "m_nChildGroupID": 464 + }, + "C_OP_RopeSpringConstraint": { + "m_flAdjustmentScale": 1480, + "m_flInitialRestingLength": 1488, + "m_flMaxDistance": 1136, + "m_flMinDistance": 792, + "m_flRestLength": 448 + }, + "C_OP_RotateVector": { + "m_bNormalize": 484, + "m_flRotRateMax": 480, + "m_flRotRateMin": 476, + "m_flScale": 488, + "m_nFieldOutput": 448, + "m_vecRotAxisMax": 464, + "m_vecRotAxisMin": 452 + }, + "C_OP_RtEnvCull": { + "m_RtEnvName": 474, + "m_bCullOnMiss": 472, + "m_bStickInsteadOfCull": 473, + "m_nComponent": 608, + "m_nRTEnvCP": 604, + "m_vecTestDir": 448, + "m_vecTestNormal": 460 + }, + "C_OP_SDFConstraint": { + "m_flMaxDist": 792, + "m_flMinDist": 448, + "m_nMaxIterations": 1136 + }, + "C_OP_SDFForce": { + "m_flForceScale": 464 + }, + "C_OP_SDFLighting": { + "m_vLightingDir": 448, + "m_vTint_0": 460, + "m_vTint_1": 472 + }, + "C_OP_SelectivelyEnableChildren": { + "m_bDestroyImmediately": 1497, + "m_bPlayEndcapOnStop": 1496, + "m_nChildGroupID": 464, + "m_nFirstChild": 808, + "m_nNumChildrenToEnable": 1152 + }, + "C_OP_SequenceFromModel": { + "m_flInputMax": 464, + "m_flInputMin": 460, + "m_flOutputMax": 472, + "m_flOutputMin": 468, + "m_nControlPointNumber": 448, + "m_nFieldOutput": 452, + "m_nFieldOutputAnim": 456, + "m_nSetMethod": 476 + }, + "C_OP_SetAttributeToScalarExpression": { + "m_flInput1": 456, + "m_flInput2": 800, + "m_nExpression": 448, + "m_nOutputField": 1144, + "m_nSetMethod": 1148 + }, + "C_OP_SetCPOrientationToDirection": { + "m_nInputControlPoint": 448, + "m_nOutputControlPoint": 452 + }, + "C_OP_SetCPOrientationToGroundNormal": { + "m_CollisionGroupName": 464, + "m_bIncludeWater": 616, + "m_flInterpRate": 448, + "m_flMaxTraceLength": 452, + "m_flTolerance": 456, + "m_flTraceOffset": 460, + "m_nInputCP": 596, + "m_nOutputCP": 600, + "m_nTraceSet": 592 + }, + "C_OP_SetCPOrientationToPointAtCP": { + "m_b2DOrientation": 816, + "m_bAvoidSingularity": 817, + "m_bPointAway": 818, + "m_flInterpolation": 472, + "m_nInputCP": 464, + "m_nOutputCP": 468 + }, + "C_OP_SetCPtoVector": { + "m_nCPInput": 448, + "m_nFieldOutput": 452 + }, + "C_OP_SetChildControlPoints": { + "m_bReverse": 808, + "m_bSetOrientation": 809, + "m_nChildGroupID": 448, + "m_nFirstControlPoint": 452, + "m_nFirstSourcePoint": 464, + "m_nNumControlPoints": 456 + }, + "C_OP_SetControlPointFieldFromVectorExpression": { + "m_flOutputRemap": 3720, + "m_nExpression": 464, + "m_nOutVectorField": 4068, + "m_nOutputCP": 4064, + "m_vecInput1": 472, + "m_vecInput2": 2096 + }, + "C_OP_SetControlPointFieldToScalarExpression": { + "m_flInput1": 472, + "m_flInput2": 816, + "m_flOutputRemap": 1160, + "m_nExpression": 464, + "m_nOutVectorField": 1508, + "m_nOutputCP": 1504 + }, + "C_OP_SetControlPointFieldToWater": { + "m_nCPField": 472, + "m_nDestCP": 468, + "m_nSourceCP": 464 + }, + "C_OP_SetControlPointFromObjectScale": { + "m_nCPInput": 464, + "m_nCPOutput": 468 + }, + "C_OP_SetControlPointOrientation": { + "m_bRandomize": 466, + "m_bSetOnce": 467, + "m_bUseWorldLocation": 464, + "m_flInterpolation": 504, + "m_nCP": 468, + "m_nHeadLocation": 472, + "m_vecRotation": 476, + "m_vecRotationB": 488 + }, + "C_OP_SetControlPointOrientationToCPVelocity": { + "m_nCPInput": 464, + "m_nCPOutput": 468 + }, + "C_OP_SetControlPointPositionToRandomActiveCP": { + "m_flResetRate": 480, + "m_nCP1": 464, + "m_nHeadLocationMax": 472, + "m_nHeadLocationMin": 468 + }, + "C_OP_SetControlPointPositionToTimeOfDayValue": { + "m_nControlPointNumber": 464, + "m_pszTimeOfDayParameter": 468, + "m_vecDefaultValue": 596 + }, + "C_OP_SetControlPointPositions": { + "m_bOrient": 465, + "m_bSetOnce": 466, + "m_bUseWorldLocation": 464, + "m_nCP1": 468, + "m_nCP2": 472, + "m_nCP3": 476, + "m_nCP4": 480, + "m_nHeadLocation": 532, + "m_vecCP1Pos": 484, + "m_vecCP2Pos": 496, + "m_vecCP3Pos": 508, + "m_vecCP4Pos": 520 + }, + "C_OP_SetControlPointRotation": { + "m_flRotRate": 2088, + "m_nCP": 2432, + "m_nLocalCP": 2436, + "m_vecRotAxis": 464 + }, + "C_OP_SetControlPointToCPVelocity": { + "m_bNormalize": 472, + "m_nCPField": 480, + "m_nCPInput": 464, + "m_nCPOutputMag": 476, + "m_nCPOutputVel": 468, + "m_vecComparisonVelocity": 488 + }, + "C_OP_SetControlPointToCenter": { + "m_nCP1": 464, + "m_nSetParent": 480, + "m_vecCP1Pos": 468 + }, + "C_OP_SetControlPointToHMD": { + "m_bOrientToHMD": 480, + "m_nCP1": 464, + "m_vecCP1Pos": 468 + }, + "C_OP_SetControlPointToHand": { + "m_bOrientToHand": 484, + "m_nCP1": 464, + "m_nHand": 468, + "m_vecCP1Pos": 472 + }, + "C_OP_SetControlPointToImpactPoint": { + "m_CollisionGroupName": 844, + "m_bIncludeWater": 978, + "m_bSetToEndpoint": 976, + "m_bTraceToClosestSurface": 977, + "m_flOffset": 828, + "m_flStartOffset": 824, + "m_flTraceLength": 480, + "m_flUpdateRate": 472, + "m_nCPIn": 468, + "m_nCPOut": 464, + "m_nTraceSet": 972, + "m_vecTraceDir": 832 + }, + "C_OP_SetControlPointToPlayer": { + "m_bOrientToEyes": 480, + "m_nCP1": 464, + "m_vecCP1Pos": 468 + }, + "C_OP_SetControlPointToVectorExpression": { + "m_bNormalizedOutput": 3720, + "m_nExpression": 464, + "m_nOutputCP": 468, + "m_vInput1": 472, + "m_vInput2": 2096 + }, + "C_OP_SetControlPointToWaterSurface": { + "m_bAdaptiveThreshold": 832, + "m_flRetestRate": 488, + "m_nActiveCP": 476, + "m_nActiveCPField": 480, + "m_nDestCP": 468, + "m_nFlowCP": 472, + "m_nSourceCP": 464 + }, + "C_OP_SetControlPointsToModelParticles": { + "m_AttachmentName": 576, + "m_HitboxSetName": 448, + "m_bAttachment": 717, + "m_bSkin": 716, + "m_nFirstControlPoint": 704, + "m_nFirstSourcePoint": 712, + "m_nNumControlPoints": 708 + }, + "C_OP_SetControlPointsToParticle": { + "m_bSetOrientation": 464, + "m_nChildGroupID": 448, + "m_nFirstControlPoint": 452, + "m_nFirstSourcePoint": 460, + "m_nNumControlPoints": 456, + "m_nOrientationMode": 468, + "m_nSetParent": 472 + }, + "C_OP_SetFloat": { + "m_InputValue": 448, + "m_Lerp": 800, + "m_nOutputField": 792, + "m_nSetMethod": 796 + }, + "C_OP_SetFloatAttributeToVectorExpression": { + "m_flOutputRemap": 3704, + "m_nExpression": 448, + "m_nOutputField": 4048, + "m_nSetMethod": 4052, + "m_vInput1": 456, + "m_vInput2": 2080 + }, + "C_OP_SetFloatCollection": { + "m_InputValue": 448, + "m_Lerp": 800, + "m_nOutputField": 792, + "m_nSetMethod": 796 + }, + "C_OP_SetFromCPSnapshot": { + "m_bRandom": 464, + "m_bReverse": 465, + "m_bSubSample": 1504, + "m_flInterpolation": 1160, + "m_nAttributeToRead": 452, + "m_nAttributeToWrite": 456, + "m_nControlPointNumber": 448, + "m_nLocalSpaceCP": 460, + "m_nRandomSeed": 468, + "m_nSnapShotIncrement": 816, + "m_nSnapShotStartPoint": 472 + }, + "C_OP_SetGravityToCP": { + "m_bSetOrientation": 816, + "m_bSetZDown": 817, + "m_flScale": 472, + "m_nCPInput": 464, + "m_nCPOutput": 468 + }, + "C_OP_SetParentControlPointsToChildCP": { + "m_bSetOrientation": 480, + "m_nChildControlPoint": 468, + "m_nChildGroupID": 464, + "m_nFirstSourcePoint": 476, + "m_nNumControlPoints": 472 + }, + "C_OP_SetPerChildControlPoint": { + "m_bNumBasedOnParticleCount": 1160, + "m_bSetOrientation": 1152, + "m_nChildGroupID": 448, + "m_nFirstControlPoint": 452, + "m_nFirstSourcePoint": 808, + "m_nNumControlPoints": 456, + "m_nOrientationField": 1156, + "m_nParticleIncrement": 464 + }, + "C_OP_SetPerChildControlPointFromAttribute": { + "m_bNumBasedOnParticleCount": 468, + "m_nAttributeToRead": 472, + "m_nCPField": 476, + "m_nChildGroupID": 448, + "m_nFirstControlPoint": 452, + "m_nFirstSourcePoint": 464, + "m_nNumControlPoints": 456, + "m_nParticleIncrement": 460 + }, + "C_OP_SetRandomControlPointPosition": { + "m_bOrient": 465, + "m_bUseWorldLocation": 464, + "m_flInterpolation": 848, + "m_flReRandomRate": 480, + "m_nCP1": 468, + "m_nHeadLocation": 472, + "m_vecCPMaxPos": 836, + "m_vecCPMinPos": 824 + }, + "C_OP_SetSimulationRate": { + "m_flSimulationScale": 464 + }, + "C_OP_SetSingleControlPointPosition": { + "m_bSetOnce": 464, + "m_nCP1": 468, + "m_transformInput": 2096, + "m_vecCP1Pos": 472 + }, + "C_OP_SetToCP": { + "m_bOffsetLocal": 464, + "m_nControlPointNumber": 448, + "m_vecOffset": 452 + }, + "C_OP_SetVariable": { + "m_floatInput": 2280, + "m_positionOffset": 632, + "m_rotationOffset": 644, + "m_transformInput": 528, + "m_variableReference": 464, + "m_vecInput": 656 + }, + "C_OP_SetVec": { + "m_InputValue": 448, + "m_Lerp": 2080, + "m_bNormalizedOutput": 2424, + "m_nOutputField": 2072, + "m_nSetMethod": 2076 + }, + "C_OP_SetVectorAttributeToVectorExpression": { + "m_bNormalizedOutput": 3712, + "m_nExpression": 448, + "m_nOutputField": 3704, + "m_nSetMethod": 3708, + "m_vInput1": 456, + "m_vInput2": 2080 + }, + "C_OP_SnapshotRigidSkinToBones": { + "m_bTransformNormals": 448, + "m_bTransformRadii": 449, + "m_nControlPointNumber": 452 + }, + "C_OP_SnapshotSkinToBones": { + "m_bTransformNormals": 448, + "m_bTransformRadii": 449, + "m_flJumpThreshold": 464, + "m_flLifeTimeFadeEnd": 460, + "m_flLifeTimeFadeStart": 456, + "m_flPrevPosScale": 468, + "m_nControlPointNumber": 452 + }, + "C_OP_SpringToVectorConstraint": { + "m_flMaxDistance": 1136, + "m_flMinDistance": 792, + "m_flRestLength": 448, + "m_flRestingLength": 1480, + "m_vecAnchorVector": 1824 + }, + "C_OP_StopAfterCPDuration": { + "m_bDestroyImmediately": 808, + "m_bPlayEndCap": 809, + "m_flDuration": 464 + }, + "C_OP_TeleportBeam": { + "m_flAlpha": 496, + "m_flArcMaxDuration": 484, + "m_flArcSpeed": 492, + "m_flSegmentBreak": 488, + "m_nCPColor": 460, + "m_nCPExtraArcData": 468, + "m_nCPInvalidColor": 464, + "m_nCPMisc": 456, + "m_nCPPosition": 448, + "m_nCPVelocity": 452, + "m_vGravity": 472 + }, + "C_OP_TimeVaryingForce": { + "m_EndingForce": 484, + "m_StartingForce": 468, + "m_flEndLerpTime": 480, + "m_flStartLerpTime": 464 + }, + "C_OP_TurbulenceForce": { + "m_flNoiseCoordScale0": 464, + "m_flNoiseCoordScale1": 468, + "m_flNoiseCoordScale2": 472, + "m_flNoiseCoordScale3": 476, + "m_vecNoiseAmount0": 480, + "m_vecNoiseAmount1": 492, + "m_vecNoiseAmount2": 504, + "m_vecNoiseAmount3": 516 + }, + "C_OP_TwistAroundAxis": { + "m_TwistAxis": 468, + "m_bLocalSpace": 480, + "m_fForceAmount": 464, + "m_nControlPointNumber": 484 + }, + "C_OP_UpdateLightSource": { + "m_flBrightnessScale": 452, + "m_flMaximumLightingRadius": 464, + "m_flMinimumLightingRadius": 460, + "m_flPositionDampingConstant": 468, + "m_flRadiusScale": 456, + "m_vColorTint": 448 + }, + "C_OP_VectorFieldSnapshot": { + "m_bLockToSurface": 2437, + "m_bSetVelocity": 2436, + "m_flBoundaryDampening": 2432, + "m_flGridSpacing": 2440, + "m_flInterpolation": 464, + "m_nAttributeToWrite": 452, + "m_nControlPointNumber": 448, + "m_nLocalSpaceCP": 456, + "m_vecScale": 808 + }, + "C_OP_VectorNoise": { + "m_bAdditive": 480, + "m_bOffset": 481, + "m_fl4NoiseScale": 476, + "m_flNoiseAnimationTimeScale": 484, + "m_nFieldOutput": 448, + "m_vecOutputMax": 464, + "m_vecOutputMin": 452 + }, + "C_OP_VelocityDecay": { + "m_flMinVelocity": 448 + }, + "C_OP_VelocityMatchingForce": { + "m_flDirScale": 448, + "m_flSpdScale": 452, + "m_nCPBroadcast": 456 + }, + "C_OP_WindForce": { + "m_vForce": 464 + }, + "C_OP_WorldTraceConstraint": { + "m_CollisionGroupName": 476, + "m_bBrushOnly": 605, + "m_bDecayBounce": 2008, + "m_bIncludeWater": 606, + "m_bKillonContact": 2009, + "m_bSetNormal": 2016, + "m_bWorldOnly": 604, + "m_flBounceAmount": 976, + "m_flCollisionConfirmationSpeed": 624, + "m_flCpMovementTolerance": 612, + "m_flMinSpeed": 2012, + "m_flRadiusScale": 632, + "m_flRandomDirScale": 1664, + "m_flRetestRate": 616, + "m_flSlideAmount": 1320, + "m_flStopSpeed": 2024, + "m_flTraceTolerance": 620, + "m_nCP": 448, + "m_nCollisionMode": 464, + "m_nCollisionModeMin": 468, + "m_nEntityStickDataField": 2368, + "m_nEntityStickNormalField": 2372, + "m_nIgnoreCP": 608, + "m_nMaxTracesPerFrame": 628, + "m_nStickOnCollisionField": 2020, + "m_nTraceSet": 472, + "m_vecCpOffset": 452 + }, + "CollisionGroupContext_t": { + "m_nCollisionGroupNumber": 0 + }, + "ControlPointReference_t": { + "m_bOffsetInLocalSpace": 16, + "m_controlPointNameString": 0, + "m_vOffsetFromControlPoint": 4 + }, + "FloatInputMaterialVariable_t": { + "m_flInput": 8, + "m_strVariable": 0 + }, + "MaterialVariable_t": { + "m_flScale": 12, + "m_nVariableField": 8, + "m_strVariable": 0 + }, + "ModelReference_t": { + "m_flRelativeProbabilityOfSpawn": 8, + "m_model": 0 + }, + "PARTICLE_EHANDLE__": { + "unused": 0 + }, + "PARTICLE_WORLD_HANDLE__": { + "unused": 0 + }, + "ParticleAttributeIndex_t": { + "m_Value": 0 + }, + "ParticleChildrenInfo_t": { + "m_ChildRef": 0, + "m_bDisableChild": 13, + "m_bEndCap": 12, + "m_flDelay": 8, + "m_nDetailLevel": 16 + }, + "ParticleControlPointConfiguration_t": { + "m_drivers": 8, + "m_name": 0, + "m_previewState": 32 + }, + "ParticleControlPointDriver_t": { + "m_angOffset": 28, + "m_attachmentName": 8, + "m_entityName": 40, + "m_iAttachType": 4, + "m_iControlPoint": 0, + "m_vecOffset": 16 + }, + "ParticleNamedValueConfiguration_t": { + "m_BoundEntityPath": 32, + "m_ConfigName": 0, + "m_ConfigValue": 8, + "m_iAttachType": 24, + "m_strAttachmentName": 48, + "m_strEntityScope": 40 + }, + "ParticleNamedValueSource_t": { + "m_DefaultConfig": 16, + "m_IsPublic": 8, + "m_Name": 0, + "m_NamedConfigs": 72, + "m_ValueType": 12 + }, + "ParticlePreviewBodyGroup_t": { + "m_bodyGroupName": 0, + "m_nValue": 8 + }, + "ParticlePreviewState_t": { + "m_bAnimationNonLooping": 84, + "m_bShouldDrawAttachmentNames": 82, + "m_bShouldDrawAttachments": 81, + "m_bShouldDrawControlPointAxes": 83, + "m_bShouldDrawHitboxes": 80, + "m_flParticleSimulationRate": 76, + "m_flPlaybackSpeed": 72, + "m_groundType": 12, + "m_hitboxSetName": 32, + "m_materialGroupName": 40, + "m_nFireParticleOnSequenceFrame": 24, + "m_nModSpecificData": 8, + "m_previewModel": 0, + "m_sequenceName": 16, + "m_vecBodyGroups": 48, + "m_vecPreviewGravity": 88 + }, + "PointDefinitionWithTimeValues_t": { + "m_flTimeDuration": 20 + }, + "PointDefinition_t": { + "m_bLocalCoords": 4, + "m_nControlPoint": 0, + "m_vOffset": 8 + }, + "SequenceWeightedList_t": { + "m_flRelativeWeight": 4, + "m_nSequence": 0 + }, + "TextureControls_t": { + "m_bClampUVs": 2409, + "m_bRandomizeOffsets": 2408, + "m_flDistortion": 2064, + "m_flFinalTextureOffsetU": 688, + "m_flFinalTextureOffsetV": 1032, + "m_flFinalTextureScaleU": 0, + "m_flFinalTextureScaleV": 344, + "m_flFinalTextureUVRotation": 1376, + "m_flZoomScale": 1720, + "m_nPerParticleBlend": 2412, + "m_nPerParticleDistortion": 2436, + "m_nPerParticleOffsetU": 2420, + "m_nPerParticleOffsetV": 2424, + "m_nPerParticleRotation": 2428, + "m_nPerParticleScale": 2416, + "m_nPerParticleZoom": 2432 + }, + "TextureGroup_t": { + "m_Gradient": 16, + "m_TextureControls": 400, + "m_bEnabled": 0, + "m_bReplaceTextureWithGradient": 1, + "m_flTextureBlend": 56, + "m_hTexture": 8, + "m_nTextureBlendMode": 48, + "m_nTextureChannels": 44, + "m_nTextureType": 40 + }, + "VecInputMaterialVariable_t": { + "m_strVariable": 0, + "m_vecInput": 8 + } +} \ No newline at end of file diff --git a/generated/pulse_system.dll.hpp b/generated/pulse_system.dll.hpp new file mode 100644 index 0000000..5b29ee8 --- /dev/null +++ b/generated/pulse_system.dll.hpp @@ -0,0 +1,348 @@ +#pragma once + +#include + +namespace CPulseTestFuncs_LibraryA { +} + +namespace CPulseExecCursor { +} + +namespace CPulse_RegisterInfo { + constexpr std::ptrdiff_t m_nReg = 0x0; + constexpr std::ptrdiff_t m_Type = 0x8; + constexpr std::ptrdiff_t m_OriginName = 0x18; + constexpr std::ptrdiff_t m_nWrittenByInstruction = 0x50; + constexpr std::ptrdiff_t m_nLastReadByInstruction = 0x54; +} + +namespace CPulse_Chunk { + constexpr std::ptrdiff_t m_Instructions = 0x0; + constexpr std::ptrdiff_t m_Registers = 0x10; + constexpr std::ptrdiff_t m_InstructionEditorIDs = 0x20; +} + +namespace CPulse_Variable { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_Description = 0x8; + constexpr std::ptrdiff_t m_Type = 0x10; + constexpr std::ptrdiff_t m_DefaultValue = 0x20; + constexpr std::ptrdiff_t m_bIsPublic = 0x32; +} + +namespace CPulse_PublicOutput { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_Description = 0x8; + constexpr std::ptrdiff_t m_ParamType = 0x10; +} + +namespace CPulse_OutputConnection { + constexpr std::ptrdiff_t m_SourceOutput = 0x0; + constexpr std::ptrdiff_t m_TargetEntity = 0x8; + constexpr std::ptrdiff_t m_TargetInput = 0x10; + constexpr std::ptrdiff_t m_Param = 0x18; +} + +namespace CPulse_InvokeBinding { + constexpr std::ptrdiff_t m_RegisterMap = 0x0; + constexpr std::ptrdiff_t m_FuncName = 0x20; + constexpr std::ptrdiff_t m_nCellIndex = 0x28; + constexpr std::ptrdiff_t m_InstanceType = 0x30; + constexpr std::ptrdiff_t m_nSrcChunk = 0x40; + constexpr std::ptrdiff_t m_nSrcInstruction = 0x44; +} + +namespace CPulse_CallInfo { + constexpr std::ptrdiff_t m_PortName = 0x0; + constexpr std::ptrdiff_t m_nEditorNodeID = 0x8; + constexpr std::ptrdiff_t m_RegisterMap = 0x10; + constexpr std::ptrdiff_t m_CallMethodID = 0x30; + constexpr std::ptrdiff_t m_nSrcChunk = 0x34; + constexpr std::ptrdiff_t m_nSrcInstruction = 0x38; +} + +namespace CPulseGraphDef { + constexpr std::ptrdiff_t m_DomainIdentifier = 0x8; + constexpr std::ptrdiff_t m_ParentMapName = 0x10; + constexpr std::ptrdiff_t m_Chunks = 0x18; + constexpr std::ptrdiff_t m_Cells = 0x30; + constexpr std::ptrdiff_t m_Vars = 0x48; + constexpr std::ptrdiff_t m_PublicOutputs = 0x60; + constexpr std::ptrdiff_t m_InvokeBindings = 0x78; + constexpr std::ptrdiff_t m_CallInfos = 0x90; + constexpr std::ptrdiff_t m_OutputConnections = 0xa8; +} + +namespace CBasePulseGraphInstance { +} + +namespace CPulseMathlib { +} + +namespace CPulseTestScriptLib { +} + +namespace PulseRuntimeChunkIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeCallInfoIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeVarIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeOutputIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeStateOffset_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeRegisterIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeCellIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeInvokeIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseDocNodeID_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRuntimeEntrypointIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace PulseRegisterMap_t { + constexpr std::ptrdiff_t m_Inparams = 0x0; + constexpr std::ptrdiff_t m_Outparams = 0x10; +} + +namespace PGDInstruction_t { + constexpr std::ptrdiff_t m_nCode = 0x0; + constexpr std::ptrdiff_t m_nVar = 0x4; + constexpr std::ptrdiff_t m_nReg0 = 0x8; + constexpr std::ptrdiff_t m_nReg1 = 0xa; + constexpr std::ptrdiff_t m_nReg2 = 0xc; + constexpr std::ptrdiff_t m_nInvokeBindingIndex = 0x10; + constexpr std::ptrdiff_t m_nChunk = 0x14; + constexpr std::ptrdiff_t m_nDestInstruction = 0x18; + constexpr std::ptrdiff_t m_nCallInfoIndex = 0x1c; + constexpr std::ptrdiff_t m_Arg0Name = 0x20; + constexpr std::ptrdiff_t m_Arg1Name = 0x28; + constexpr std::ptrdiff_t m_bLiteralBool = 0x30; + constexpr std::ptrdiff_t m_nLiteralInt = 0x34; + constexpr std::ptrdiff_t m_flLiteralFloat = 0x38; + constexpr std::ptrdiff_t m_LiteralString = 0x40; + constexpr std::ptrdiff_t m_vLiteralVec3 = 0x50; +} + +namespace CPulse_OutflowConnection { + constexpr std::ptrdiff_t m_SourceOutflowName = 0x0; + constexpr std::ptrdiff_t m_nDestChunk = 0x8; + constexpr std::ptrdiff_t m_nInstruction = 0xc; +} + +namespace CPulse_ResumePoint { +} + +namespace CPulseCell_Base { + constexpr std::ptrdiff_t m_nEditorNodeID = 0x8; +} + +namespace CPulseCell_BaseFlow { +} + +namespace CPulseCell_Inflow_BaseEntrypoint { + constexpr std::ptrdiff_t m_EntryChunk = 0x48; + constexpr std::ptrdiff_t m_RegisterMap = 0x50; +} + +namespace CPulseRuntimeMethodArg { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_Description = 0x38; + constexpr std::ptrdiff_t m_Type = 0x40; +} + +namespace CPulseCell_Inflow_Method { + constexpr std::ptrdiff_t m_MethodName = 0x70; + constexpr std::ptrdiff_t m_Description = 0x78; + constexpr std::ptrdiff_t m_bIsPublic = 0x80; + constexpr std::ptrdiff_t m_ReturnType = 0x88; + constexpr std::ptrdiff_t m_Args = 0x98; +} + +namespace CPulseCell_Inflow_EventHandler { + constexpr std::ptrdiff_t m_EventName = 0x70; +} + +namespace CPulseCell_Inflow_GraphHook { + constexpr std::ptrdiff_t m_HookName = 0x70; +} + +namespace CPulseCell_Inflow_EntOutputHandler { + constexpr std::ptrdiff_t m_SourceEntity = 0x70; + constexpr std::ptrdiff_t m_SourceOutput = 0x78; + constexpr std::ptrdiff_t m_TargetInput = 0x80; + constexpr std::ptrdiff_t m_ExpectedParamType = 0x88; +} + +namespace CPulseCell_BaseYieldingInflow { +} + +namespace CPulseCell_BaseValue { +} + +namespace CPulseCell_Step_PublicOutput { + constexpr std::ptrdiff_t m_OutputIndex = 0x48; +} + +namespace CPulseCell_Inflow_Yield { + constexpr std::ptrdiff_t m_UnyieldResume = 0x48; +} + +namespace CPulseCell_Inflow_Wait { + constexpr std::ptrdiff_t m_WakeResume = 0x48; +} + +namespace CPulseCell_Outflow_StringSwitch { + constexpr std::ptrdiff_t m_DefaultCaseOutflow = 0x48; + constexpr std::ptrdiff_t m_CaseOutflows = 0x58; +} + +namespace CPulseCell_Outflow_IntSwitch { + constexpr std::ptrdiff_t m_DefaultCaseOutflow = 0x48; + constexpr std::ptrdiff_t m_CaseOutflows = 0x58; +} + +namespace CPulseCell_Outflow_CycleOrdered { + constexpr std::ptrdiff_t m_Outputs = 0x48; +} + +namespace CPulseCell_Outflow_CycleOrdered::InstanceState_t { + constexpr std::ptrdiff_t m_nNextIndex = 0x0; +} + +namespace CPulseCell_Outflow_CycleRandom { + constexpr std::ptrdiff_t m_Outputs = 0x48; +} + +namespace CPulseCell_Outflow_CycleShuffled { + constexpr std::ptrdiff_t m_Outputs = 0x48; +} + +namespace CPulseCell_Outflow_CycleShuffled::InstanceState_t { + constexpr std::ptrdiff_t m_Shuffle = 0x0; + constexpr std::ptrdiff_t m_nNextShuffle = 0x20; +} + +namespace CPulseCell_Outflow_SimultaneousParallel { + constexpr std::ptrdiff_t m_Outputs = 0x48; +} + +namespace CPulseCell_Outflow_TestRandomYesNo { + constexpr std::ptrdiff_t m_Yes = 0x48; + constexpr std::ptrdiff_t m_No = 0x58; +} + +namespace CPulseCell_Outflow_TestExplicitYesNo { + constexpr std::ptrdiff_t m_Yes = 0x48; + constexpr std::ptrdiff_t m_No = 0x58; +} + +namespace CPulseCell_Value_TestValue50 { +} + +namespace CPulseCell_Value_RandomInt { +} + +namespace CPulseCell_Step_DebugLog { +} + +namespace CPulseCell_Step_CallExternalMethod { + constexpr std::ptrdiff_t m_MethodName = 0x48; + constexpr std::ptrdiff_t m_ExpectedArgs = 0x50; +} + +namespace PulseTestEHandle_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace FakeEntity_t { + constexpr std::ptrdiff_t m_nHandle = 0x0; + constexpr std::ptrdiff_t m_Name = 0x8; + constexpr std::ptrdiff_t m_Class = 0x10; + constexpr std::ptrdiff_t m_bDestroyed = 0x18; + constexpr std::ptrdiff_t m_pAssociatedGraphInstance = 0x20; + constexpr std::ptrdiff_t m_bFuncWasCalled = 0x28; + constexpr std::ptrdiff_t m_fValue = 0x2c; +} + +namespace CPulseGraphInstance_TestDomain { + constexpr std::ptrdiff_t m_bIsRunningUnitTests = 0xd0; + constexpr std::ptrdiff_t m_bExplicitTimeStepping = 0xd1; + constexpr std::ptrdiff_t m_bExpectingToDestroyWithYieldedCursors = 0xd2; + constexpr std::ptrdiff_t m_nNextValidateIndex = 0xd4; + constexpr std::ptrdiff_t m_Tracepoints = 0xd8; + constexpr std::ptrdiff_t m_bTestYesOrNoPath = 0xf0; +} + +namespace CPulseCell_Step_TestDomainTracepoint { +} + +namespace CPulseCell_Step_TestDomainCreateFakeEntity { +} + +namespace CPulseCell_Step_TestDomainDestroyFakeEntity { +} + +namespace CPulseCell_Step_TestDomainEntFire { + constexpr std::ptrdiff_t m_Input = 0x48; +} + +namespace CPulseCell_Val_TestDomainGetEntityName { +} + +namespace CPulseCell_Val_TestDomainFindEntityByName { +} + +namespace CTestDomainDerived_Cursor { + constexpr std::ptrdiff_t m_nCursorValueA = 0x188; + constexpr std::ptrdiff_t m_nCursorValueB = 0x18c; +} + +namespace CPulseGraphInstance_TestDomain_Derived { + constexpr std::ptrdiff_t m_nInstanceValueX = 0xf8; +} + +namespace CPulseTestFuncs_DerivedDomain { +} + +namespace CPulseCell_Test_NoInflow { +} + +namespace CPulseCell_Test_MultiInflow_WithDefault { +} + +namespace CPulseCell_Test_MultiInflow_NoDefault { +} + +namespace CPulseTurtleGraphicsCursor { + constexpr std::ptrdiff_t m_Color = 0x188; + constexpr std::ptrdiff_t m_vPos = 0x18c; + constexpr std::ptrdiff_t m_flHeadingDeg = 0x194; + constexpr std::ptrdiff_t m_bPenUp = 0x198; +} + +namespace CPulseGraphInstance_TurtleGraphics { +} + diff --git a/generated/pulse_system.dll.json b/generated/pulse_system.dll.json new file mode 100644 index 0000000..9254f9d --- /dev/null +++ b/generated/pulse_system.dll.json @@ -0,0 +1,231 @@ +{ + "CPulseCell_Base": { + "m_nEditorNodeID": 8 + }, + "CPulseCell_Inflow_BaseEntrypoint": { + "m_EntryChunk": 72, + "m_RegisterMap": 80 + }, + "CPulseCell_Inflow_EntOutputHandler": { + "m_ExpectedParamType": 136, + "m_SourceEntity": 112, + "m_SourceOutput": 120, + "m_TargetInput": 128 + }, + "CPulseCell_Inflow_EventHandler": { + "m_EventName": 112 + }, + "CPulseCell_Inflow_GraphHook": { + "m_HookName": 112 + }, + "CPulseCell_Inflow_Method": { + "m_Args": 152, + "m_Description": 120, + "m_MethodName": 112, + "m_ReturnType": 136, + "m_bIsPublic": 128 + }, + "CPulseCell_Inflow_Wait": { + "m_WakeResume": 72 + }, + "CPulseCell_Inflow_Yield": { + "m_UnyieldResume": 72 + }, + "CPulseCell_Outflow_CycleOrdered": { + "m_Outputs": 72 + }, + "CPulseCell_Outflow_CycleOrdered::InstanceState_t": { + "m_nNextIndex": 0 + }, + "CPulseCell_Outflow_CycleRandom": { + "m_Outputs": 72 + }, + "CPulseCell_Outflow_CycleShuffled": { + "m_Outputs": 72 + }, + "CPulseCell_Outflow_CycleShuffled::InstanceState_t": { + "m_Shuffle": 0, + "m_nNextShuffle": 32 + }, + "CPulseCell_Outflow_IntSwitch": { + "m_CaseOutflows": 88, + "m_DefaultCaseOutflow": 72 + }, + "CPulseCell_Outflow_SimultaneousParallel": { + "m_Outputs": 72 + }, + "CPulseCell_Outflow_StringSwitch": { + "m_CaseOutflows": 88, + "m_DefaultCaseOutflow": 72 + }, + "CPulseCell_Outflow_TestExplicitYesNo": { + "m_No": 88, + "m_Yes": 72 + }, + "CPulseCell_Outflow_TestRandomYesNo": { + "m_No": 88, + "m_Yes": 72 + }, + "CPulseCell_Step_CallExternalMethod": { + "m_ExpectedArgs": 80, + "m_MethodName": 72 + }, + "CPulseCell_Step_PublicOutput": { + "m_OutputIndex": 72 + }, + "CPulseCell_Step_TestDomainEntFire": { + "m_Input": 72 + }, + "CPulseGraphDef": { + "m_CallInfos": 144, + "m_Cells": 48, + "m_Chunks": 24, + "m_DomainIdentifier": 8, + "m_InvokeBindings": 120, + "m_OutputConnections": 168, + "m_ParentMapName": 16, + "m_PublicOutputs": 96, + "m_Vars": 72 + }, + "CPulseGraphInstance_TestDomain": { + "m_Tracepoints": 216, + "m_bExpectingToDestroyWithYieldedCursors": 210, + "m_bExplicitTimeStepping": 209, + "m_bIsRunningUnitTests": 208, + "m_bTestYesOrNoPath": 240, + "m_nNextValidateIndex": 212 + }, + "CPulseGraphInstance_TestDomain_Derived": { + "m_nInstanceValueX": 248 + }, + "CPulseRuntimeMethodArg": { + "m_Description": 56, + "m_Name": 0, + "m_Type": 64 + }, + "CPulseTurtleGraphicsCursor": { + "m_Color": 392, + "m_bPenUp": 408, + "m_flHeadingDeg": 404, + "m_vPos": 396 + }, + "CPulse_CallInfo": { + "m_CallMethodID": 48, + "m_PortName": 0, + "m_RegisterMap": 16, + "m_nEditorNodeID": 8, + "m_nSrcChunk": 52, + "m_nSrcInstruction": 56 + }, + "CPulse_Chunk": { + "m_InstructionEditorIDs": 32, + "m_Instructions": 0, + "m_Registers": 16 + }, + "CPulse_InvokeBinding": { + "m_FuncName": 32, + "m_InstanceType": 48, + "m_RegisterMap": 0, + "m_nCellIndex": 40, + "m_nSrcChunk": 64, + "m_nSrcInstruction": 68 + }, + "CPulse_OutflowConnection": { + "m_SourceOutflowName": 0, + "m_nDestChunk": 8, + "m_nInstruction": 12 + }, + "CPulse_OutputConnection": { + "m_Param": 24, + "m_SourceOutput": 0, + "m_TargetEntity": 8, + "m_TargetInput": 16 + }, + "CPulse_PublicOutput": { + "m_Description": 8, + "m_Name": 0, + "m_ParamType": 16 + }, + "CPulse_RegisterInfo": { + "m_OriginName": 24, + "m_Type": 8, + "m_nLastReadByInstruction": 84, + "m_nReg": 0, + "m_nWrittenByInstruction": 80 + }, + "CPulse_Variable": { + "m_DefaultValue": 32, + "m_Description": 8, + "m_Name": 0, + "m_Type": 16, + "m_bIsPublic": 50 + }, + "CTestDomainDerived_Cursor": { + "m_nCursorValueA": 392, + "m_nCursorValueB": 396 + }, + "FakeEntity_t": { + "m_Class": 16, + "m_Name": 8, + "m_bDestroyed": 24, + "m_bFuncWasCalled": 40, + "m_fValue": 44, + "m_nHandle": 0, + "m_pAssociatedGraphInstance": 32 + }, + "PGDInstruction_t": { + "m_Arg0Name": 32, + "m_Arg1Name": 40, + "m_LiteralString": 64, + "m_bLiteralBool": 48, + "m_flLiteralFloat": 56, + "m_nCallInfoIndex": 28, + "m_nChunk": 20, + "m_nCode": 0, + "m_nDestInstruction": 24, + "m_nInvokeBindingIndex": 16, + "m_nLiteralInt": 52, + "m_nReg0": 8, + "m_nReg1": 10, + "m_nReg2": 12, + "m_nVar": 4, + "m_vLiteralVec3": 80 + }, + "PulseDocNodeID_t": { + "m_Value": 0 + }, + "PulseRegisterMap_t": { + "m_Inparams": 0, + "m_Outparams": 16 + }, + "PulseRuntimeCallInfoIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeCellIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeChunkIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeEntrypointIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeInvokeIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeOutputIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeRegisterIndex_t": { + "m_Value": 0 + }, + "PulseRuntimeStateOffset_t": { + "m_Value": 0 + }, + "PulseRuntimeVarIndex_t": { + "m_Value": 0 + }, + "PulseTestEHandle_t": { + "m_Value": 0 + } +} \ No newline at end of file diff --git a/generated/rendersystemdx11.dll.hpp b/generated/rendersystemdx11.dll.hpp new file mode 100644 index 0000000..999530c --- /dev/null +++ b/generated/rendersystemdx11.dll.hpp @@ -0,0 +1,25 @@ +#pragma once + +#include + +namespace RenderInputLayoutField_t { + constexpr std::ptrdiff_t m_pSemanticName = 0x0; + constexpr std::ptrdiff_t m_nSemanticIndex = 0x20; + constexpr std::ptrdiff_t m_Format = 0x24; + constexpr std::ptrdiff_t m_nOffset = 0x28; + constexpr std::ptrdiff_t m_nSlot = 0x2c; + constexpr std::ptrdiff_t m_nSlotType = 0x30; + constexpr std::ptrdiff_t m_nInstanceStepRate = 0x34; +} + +namespace VsInputSignatureElement_t { + constexpr std::ptrdiff_t m_pName = 0x0; + constexpr std::ptrdiff_t m_pSemantic = 0x40; + constexpr std::ptrdiff_t m_pD3DSemanticName = 0x80; + constexpr std::ptrdiff_t m_nD3DSemanticIndex = 0xc0; +} + +namespace VsInputSignature_t { + constexpr std::ptrdiff_t m_elems = 0x0; +} + diff --git a/generated/rendersystemdx11.dll.json b/generated/rendersystemdx11.dll.json new file mode 100644 index 0000000..0f14b8a --- /dev/null +++ b/generated/rendersystemdx11.dll.json @@ -0,0 +1,20 @@ +{ + "RenderInputLayoutField_t": { + "m_Format": 36, + "m_nInstanceStepRate": 52, + "m_nOffset": 40, + "m_nSemanticIndex": 32, + "m_nSlot": 44, + "m_nSlotType": 48, + "m_pSemanticName": 0 + }, + "VsInputSignatureElement_t": { + "m_nD3DSemanticIndex": 192, + "m_pD3DSemanticName": 128, + "m_pName": 0, + "m_pSemantic": 64 + }, + "VsInputSignature_t": { + "m_elems": 0 + } +} \ No newline at end of file diff --git a/generated/resourcesystem.dll.hpp b/generated/resourcesystem.dll.hpp new file mode 100644 index 0000000..9c54437 --- /dev/null +++ b/generated/resourcesystem.dll.hpp @@ -0,0 +1,203 @@ +#pragma once + +#include + +namespace TestResource_t { + constexpr std::ptrdiff_t m_name = 0x0; +} + +namespace InfoForResourceTypeTestResource_t { +} + +namespace InfoForResourceTypeProceduralTestResource_t { +} + +namespace InfoForResourceTypeManifestTestResource_t { +} + +namespace ManifestTestResource_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_child = 0x8; +} + +namespace InfoForResourceTypeCVDataResource { +} + +namespace InfoForResourceTypeIPulseGraphDef { +} + +namespace InfoForResourceTypeCTypeScriptResource { +} + +namespace InfoForResourceTypeCJavaScriptResource { +} + +namespace InfoForResourceTypeIParticleSystemDefinition { +} + +namespace InfoForResourceTypeIParticleSnapshot { +} + +namespace InfoForResourceTypeCAnimData { +} + +namespace InfoForResourceTypeCAnimationGroup { +} + +namespace InfoForResourceTypeCSequenceGroupData { +} + +namespace InfoForResourceTypeIMaterial2 { +} + +namespace InfoForResourceTypeCMorphSetData { +} + +namespace InfoForResourceTypeCRenderMesh { +} + +namespace InfoForResourceTypeCModel { +} + +namespace InfoForResourceTypeCTextureBase { +} + +namespace InfoForResourceTypeIVectorGraphic { +} + +namespace InfoForResourceTypeCVSoundEventScriptList { +} + +namespace InfoForResourceTypeCVSoundStackScriptList { +} + +namespace InfoForResourceTypeVSound_t { +} + +namespace InfoForResourceTypeCVMixListResource { +} + +namespace InfoForResourceTypeCPhysAggregateData { +} + +namespace InfoForResourceTypeCVPhysXSurfacePropertiesList { +} + +namespace InfoForResourceTypeCEntityLump { +} + +namespace InfoForResourceTypeCWorldNode { +} + +namespace InfoForResourceTypeWorld_t { +} + +namespace InfoForResourceTypeCVoxelVisibility { +} + +namespace InfoForResourceTypeCPostProcessingResource { +} + +namespace InfoForResourceTypeCPanoramaStyle { +} + +namespace InfoForResourceTypeCPanoramaLayout { +} + +namespace InfoForResourceTypeCPanoramaDynamicImages { +} + +namespace InfoForResourceTypeCDotaItemDefinitionResource { +} + +namespace InfoForResourceTypeCDOTAPatchNotesList { +} + +namespace InfoForResourceTypeCDOTANovelsList { +} + +namespace InfoForResourceTypeIAnimGraphModelBinding { +} + +namespace InfoForResourceTypeCChoreoSceneFileData { +} + +namespace InfoForResourceTypeCDACGameDefsData { +} + +namespace InfoForResourceTypeCCompositeMaterialKit { +} + +namespace InfoForResourceTypeCSmartProp { +} + +namespace InfoForResourceTypeCCSGOEconItem { +} + +namespace InfoForResourceTypeCResponseRulesList { +} + +namespace FuseVariableIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace FuseFunctionIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace ConstantInfo_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nameToken = 0x8; + constexpr std::ptrdiff_t m_flValue = 0xc; +} + +namespace VariableInfo_t { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nameToken = 0x8; + constexpr std::ptrdiff_t m_nIndex = 0xc; + constexpr std::ptrdiff_t m_nNumComponents = 0xe; + constexpr std::ptrdiff_t m_eVarType = 0xf; + constexpr std::ptrdiff_t m_eAccess = 0x10; +} + +namespace FunctionInfo_t { + constexpr std::ptrdiff_t m_name = 0x8; + constexpr std::ptrdiff_t m_nameToken = 0x10; + constexpr std::ptrdiff_t m_nParamCount = 0x14; + constexpr std::ptrdiff_t m_nIndex = 0x18; + constexpr std::ptrdiff_t m_bIsPure = 0x1a; +} + +namespace CFuseProgram { + constexpr std::ptrdiff_t m_programBuffer = 0x0; + constexpr std::ptrdiff_t m_variablesRead = 0x18; + constexpr std::ptrdiff_t m_variablesWritten = 0x30; + constexpr std::ptrdiff_t m_nMaxTempVarsUsed = 0x48; +} + +namespace CFuseSymbolTable { + constexpr std::ptrdiff_t m_constants = 0x0; + constexpr std::ptrdiff_t m_variables = 0x18; + constexpr std::ptrdiff_t m_functions = 0x30; + constexpr std::ptrdiff_t m_constantMap = 0x48; + constexpr std::ptrdiff_t m_variableMap = 0x68; + constexpr std::ptrdiff_t m_functionMap = 0x88; +} + +namespace AABB_t { + constexpr std::ptrdiff_t m_vMinBounds = 0x0; + constexpr std::ptrdiff_t m_vMaxBounds = 0xc; +} + +namespace PackedAABB_t { + constexpr std::ptrdiff_t m_nPackedMin = 0x0; + constexpr std::ptrdiff_t m_nPackedMax = 0x4; +} + +namespace FourQuaternions { + constexpr std::ptrdiff_t x = 0x0; + constexpr std::ptrdiff_t y = 0x10; + constexpr std::ptrdiff_t z = 0x20; + constexpr std::ptrdiff_t w = 0x30; +} + diff --git a/generated/resourcesystem.dll.json b/generated/resourcesystem.dll.json new file mode 100644 index 0000000..0ea7339 --- /dev/null +++ b/generated/resourcesystem.dll.json @@ -0,0 +1,63 @@ +{ + "AABB_t": { + "m_vMaxBounds": 12, + "m_vMinBounds": 0 + }, + "CFuseProgram": { + "m_nMaxTempVarsUsed": 72, + "m_programBuffer": 0, + "m_variablesRead": 24, + "m_variablesWritten": 48 + }, + "CFuseSymbolTable": { + "m_constantMap": 72, + "m_constants": 0, + "m_functionMap": 136, + "m_functions": 48, + "m_variableMap": 104, + "m_variables": 24 + }, + "ConstantInfo_t": { + "m_flValue": 12, + "m_name": 0, + "m_nameToken": 8 + }, + "FourQuaternions": { + "w": 48, + "x": 0, + "y": 16, + "z": 32 + }, + "FunctionInfo_t": { + "m_bIsPure": 26, + "m_nIndex": 24, + "m_nParamCount": 20, + "m_name": 8, + "m_nameToken": 16 + }, + "FuseFunctionIndex_t": { + "m_Value": 0 + }, + "FuseVariableIndex_t": { + "m_Value": 0 + }, + "ManifestTestResource_t": { + "m_child": 8, + "m_name": 0 + }, + "PackedAABB_t": { + "m_nPackedMax": 4, + "m_nPackedMin": 0 + }, + "TestResource_t": { + "m_name": 0 + }, + "VariableInfo_t": { + "m_eAccess": 16, + "m_eVarType": 15, + "m_nIndex": 12, + "m_nNumComponents": 14, + "m_name": 0, + "m_nameToken": 8 + } +} \ No newline at end of file diff --git a/generated/scenefilecache.dll.hpp b/generated/scenefilecache.dll.hpp new file mode 100644 index 0000000..1ad0691 --- /dev/null +++ b/generated/scenefilecache.dll.hpp @@ -0,0 +1,4 @@ +#pragma once + +#include + diff --git a/generated/scenefilecache.dll.json b/generated/scenefilecache.dll.json new file mode 100644 index 0000000..ec747fa --- /dev/null +++ b/generated/scenefilecache.dll.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/generated/scenesystem.dll.hpp b/generated/scenesystem.dll.hpp new file mode 100644 index 0000000..3bb50e6 --- /dev/null +++ b/generated/scenesystem.dll.hpp @@ -0,0 +1,57 @@ +#pragma once + +#include + +namespace CSSDSEndFrameViewInfo { + constexpr std::ptrdiff_t m_nViewId = 0x0; + constexpr std::ptrdiff_t m_ViewName = 0x8; +} + +namespace CSSDSMsg_EndFrame { + constexpr std::ptrdiff_t m_Views = 0x0; +} + +namespace SceneViewId_t { + constexpr std::ptrdiff_t m_nViewId = 0x0; + constexpr std::ptrdiff_t m_nFrameCount = 0x8; +} + +namespace CSSDSMsg_ViewRender { + constexpr std::ptrdiff_t m_viewId = 0x0; + constexpr std::ptrdiff_t m_ViewName = 0x10; +} + +namespace CSSDSMsg_LayerBase { + constexpr std::ptrdiff_t m_viewId = 0x0; + constexpr std::ptrdiff_t m_ViewName = 0x10; + constexpr std::ptrdiff_t m_nLayerIndex = 0x18; + constexpr std::ptrdiff_t m_nLayerId = 0x20; + constexpr std::ptrdiff_t m_LayerName = 0x28; + constexpr std::ptrdiff_t m_displayText = 0x30; +} + +namespace CSSDSMsg_ViewTarget { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_TextureId = 0x8; + constexpr std::ptrdiff_t m_nWidth = 0x10; + constexpr std::ptrdiff_t m_nHeight = 0x14; + constexpr std::ptrdiff_t m_nRequestedWidth = 0x18; + constexpr std::ptrdiff_t m_nRequestedHeight = 0x1c; + constexpr std::ptrdiff_t m_nNumMipLevels = 0x20; + constexpr std::ptrdiff_t m_nDepth = 0x24; + constexpr std::ptrdiff_t m_nMultisampleNumSamples = 0x28; + constexpr std::ptrdiff_t m_nFormat = 0x2c; +} + +namespace CSSDSMsg_ViewTargetList { + constexpr std::ptrdiff_t m_viewId = 0x0; + constexpr std::ptrdiff_t m_ViewName = 0x10; + constexpr std::ptrdiff_t m_Targets = 0x18; +} + +namespace CSSDSMsg_PreLayer { +} + +namespace CSSDSMsg_PostLayer { +} + diff --git a/generated/scenesystem.dll.json b/generated/scenesystem.dll.json new file mode 100644 index 0000000..608530f --- /dev/null +++ b/generated/scenesystem.dll.json @@ -0,0 +1,42 @@ +{ + "CSSDSEndFrameViewInfo": { + "m_ViewName": 8, + "m_nViewId": 0 + }, + "CSSDSMsg_EndFrame": { + "m_Views": 0 + }, + "CSSDSMsg_LayerBase": { + "m_LayerName": 40, + "m_ViewName": 16, + "m_displayText": 48, + "m_nLayerId": 32, + "m_nLayerIndex": 24, + "m_viewId": 0 + }, + "CSSDSMsg_ViewRender": { + "m_ViewName": 16, + "m_viewId": 0 + }, + "CSSDSMsg_ViewTarget": { + "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 + }, + "CSSDSMsg_ViewTargetList": { + "m_Targets": 24, + "m_ViewName": 16, + "m_viewId": 0 + }, + "SceneViewId_t": { + "m_nFrameCount": 8, + "m_nViewId": 0 + } +} \ No newline at end of file diff --git a/generated/schemasystem.dll.hpp b/generated/schemasystem.dll.hpp new file mode 100644 index 0000000..96b4667 --- /dev/null +++ b/generated/schemasystem.dll.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include + +namespace CSchemaSystemInternalRegistration { + constexpr std::ptrdiff_t m_Vector2D = 0x0; + constexpr std::ptrdiff_t m_Vector = 0x8; + constexpr std::ptrdiff_t m_VectorAligned = 0x20; + constexpr std::ptrdiff_t m_Quaternion = 0x30; + constexpr std::ptrdiff_t m_QAngle = 0x40; + constexpr std::ptrdiff_t m_RotationVector = 0x4c; + constexpr std::ptrdiff_t m_RadianEuler = 0x58; + constexpr std::ptrdiff_t m_DegreeEuler = 0x64; + constexpr std::ptrdiff_t m_QuaternionStorage = 0x70; + constexpr std::ptrdiff_t m_matrix3x4_t = 0x80; + constexpr std::ptrdiff_t m_matrix3x4a_t = 0xb0; + constexpr std::ptrdiff_t m_Color = 0xe0; + constexpr std::ptrdiff_t m_Vector4D = 0xe4; + constexpr std::ptrdiff_t m_CTransform = 0x100; + constexpr std::ptrdiff_t m_pKeyValues = 0x120; + constexpr std::ptrdiff_t m_CUtlBinaryBlock = 0x128; + constexpr std::ptrdiff_t m_CUtlString = 0x140; + constexpr std::ptrdiff_t m_CUtlSymbol = 0x148; + constexpr std::ptrdiff_t m_stringToken = 0x14c; + constexpr std::ptrdiff_t m_stringTokenWithStorage = 0x150; + constexpr std::ptrdiff_t m_ResourceTypes = 0x168; + constexpr std::ptrdiff_t m_KV3 = 0x170; +} + +namespace InfoForResourceTypeCResourceManifestInternal { +} + +namespace ResourceId_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CExampleSchemaVData_Monomorphic { + constexpr std::ptrdiff_t m_nExample1 = 0x0; + constexpr std::ptrdiff_t m_nExample2 = 0x4; +} + +namespace CExampleSchemaVData_PolymorphicBase { + constexpr std::ptrdiff_t m_nBase = 0x8; +} + +namespace CExampleSchemaVData_PolymorphicDerivedA { + constexpr std::ptrdiff_t m_nDerivedA = 0x10; +} + +namespace CExampleSchemaVData_PolymorphicDerivedB { + constexpr std::ptrdiff_t m_nDerivedB = 0x10; +} + diff --git a/generated/schemasystem.dll.json b/generated/schemasystem.dll.json new file mode 100644 index 0000000..fe72d36 --- /dev/null +++ b/generated/schemasystem.dll.json @@ -0,0 +1,42 @@ +{ + "CExampleSchemaVData_Monomorphic": { + "m_nExample1": 0, + "m_nExample2": 4 + }, + "CExampleSchemaVData_PolymorphicBase": { + "m_nBase": 8 + }, + "CExampleSchemaVData_PolymorphicDerivedA": { + "m_nDerivedA": 16 + }, + "CExampleSchemaVData_PolymorphicDerivedB": { + "m_nDerivedB": 16 + }, + "CSchemaSystemInternalRegistration": { + "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 + }, + "ResourceId_t": { + "m_Value": 0 + } +} \ No newline at end of file diff --git a/generated/server.dll.hpp b/generated/server.dll.hpp new file mode 100644 index 0000000..d80d1e0 --- /dev/null +++ b/generated/server.dll.hpp @@ -0,0 +1,7633 @@ +#pragma once + +#include + +namespace CRangeFloat { + constexpr std::ptrdiff_t m_pValue = 0x0; +} + +namespace CRangeInt { + constexpr std::ptrdiff_t m_pValue = 0x0; +} + +namespace Extent { + constexpr std::ptrdiff_t lo = 0x0; + constexpr std::ptrdiff_t hi = 0xc; +} + +namespace CNavVolume { +} + +namespace CNavVolumeVector { + constexpr std::ptrdiff_t m_bHasBeenPreFiltered = 0x78; +} + +namespace CNavVolumeAll { +} + +namespace CNavVolumeSphere { + constexpr std::ptrdiff_t m_vCenter = 0x70; + constexpr std::ptrdiff_t m_flRadius = 0x7c; +} + +namespace CNavVolumeSphericalShell { + constexpr std::ptrdiff_t m_flRadiusInner = 0x80; +} + +namespace CNavHullVData { + constexpr std::ptrdiff_t m_bAgentEnabled = 0x0; + constexpr std::ptrdiff_t m_agentRadius = 0x4; + constexpr std::ptrdiff_t m_agentHeight = 0x8; + constexpr std::ptrdiff_t m_agentShortHeightEnabled = 0xc; + constexpr std::ptrdiff_t m_agentShortHeight = 0x10; + constexpr std::ptrdiff_t m_agentMaxClimb = 0x14; + constexpr std::ptrdiff_t m_agentMaxSlope = 0x18; + constexpr std::ptrdiff_t m_agentMaxJumpDownDist = 0x1c; + constexpr std::ptrdiff_t m_agentMaxJumpHorizDistBase = 0x20; + constexpr std::ptrdiff_t m_agentMaxJumpUpDist = 0x24; + constexpr std::ptrdiff_t m_agentBorderErosion = 0x28; +} + +namespace CNavHullPresetVData { + constexpr std::ptrdiff_t m_vecNavHulls = 0x0; +} + +namespace CEntityIdentity { + constexpr std::ptrdiff_t m_nameStringableIndex = 0x14; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_designerName = 0x20; + constexpr std::ptrdiff_t m_flags = 0x30; + constexpr std::ptrdiff_t m_worldGroupId = 0x38; + constexpr std::ptrdiff_t m_fDataObjectTypes = 0x3c; + constexpr std::ptrdiff_t m_PathIndex = 0x40; + constexpr std::ptrdiff_t m_pPrev = 0x58; + constexpr std::ptrdiff_t m_pNext = 0x60; + constexpr std::ptrdiff_t m_pPrevByClass = 0x68; + constexpr std::ptrdiff_t m_pNextByClass = 0x70; +} + +namespace CEntityInstance { + constexpr std::ptrdiff_t m_iszPrivateVScripts = 0x8; + constexpr std::ptrdiff_t m_pEntity = 0x10; + constexpr std::ptrdiff_t m_CScriptComponent = 0x28; +} + +namespace CScriptComponent { + constexpr std::ptrdiff_t m_scriptClassName = 0x30; +} + +namespace CBodyComponent { + constexpr std::ptrdiff_t m_pSceneNode = 0x8; + constexpr std::ptrdiff_t __m_pChainEntity = 0x20; +} + +namespace CBodyComponentPoint { + constexpr std::ptrdiff_t m_sceneNode = 0x50; + constexpr std::ptrdiff_t __m_pChainEntity = 0x1a0; +} + +namespace CBodyComponentSkeletonInstance { + constexpr std::ptrdiff_t m_skeletonInstance = 0x50; + constexpr std::ptrdiff_t __m_pChainEntity = 0x440; +} + +namespace CHitboxComponent { + constexpr std::ptrdiff_t m_bvDisabledHitGroups = 0x24; +} + +namespace CLightComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x48; + constexpr std::ptrdiff_t m_Color = 0x85; + constexpr std::ptrdiff_t m_SecondaryColor = 0x89; + constexpr std::ptrdiff_t m_flBrightness = 0x90; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x94; + constexpr std::ptrdiff_t m_flBrightnessMult = 0x98; + constexpr std::ptrdiff_t m_flRange = 0x9c; + constexpr std::ptrdiff_t m_flFalloff = 0xa0; + constexpr std::ptrdiff_t m_flAttenuation0 = 0xa4; + constexpr std::ptrdiff_t m_flAttenuation1 = 0xa8; + constexpr std::ptrdiff_t m_flAttenuation2 = 0xac; + constexpr std::ptrdiff_t m_flTheta = 0xb0; + constexpr std::ptrdiff_t m_flPhi = 0xb4; + constexpr std::ptrdiff_t m_hLightCookie = 0xb8; + constexpr std::ptrdiff_t m_nCascades = 0xc0; + constexpr std::ptrdiff_t m_nCastShadows = 0xc4; + constexpr std::ptrdiff_t m_nShadowWidth = 0xc8; + constexpr std::ptrdiff_t m_nShadowHeight = 0xcc; + constexpr std::ptrdiff_t m_bRenderDiffuse = 0xd0; + constexpr std::ptrdiff_t m_nRenderSpecular = 0xd4; + constexpr std::ptrdiff_t m_bRenderTransmissive = 0xd8; + constexpr std::ptrdiff_t m_flOrthoLightWidth = 0xdc; + constexpr std::ptrdiff_t m_flOrthoLightHeight = 0xe0; + constexpr std::ptrdiff_t m_nStyle = 0xe4; + constexpr std::ptrdiff_t m_Pattern = 0xe8; + constexpr std::ptrdiff_t m_nCascadeRenderStaticObjects = 0xf0; + constexpr std::ptrdiff_t m_flShadowCascadeCrossFade = 0xf4; + constexpr std::ptrdiff_t m_flShadowCascadeDistanceFade = 0xf8; + constexpr std::ptrdiff_t m_flShadowCascadeDistance0 = 0xfc; + constexpr std::ptrdiff_t m_flShadowCascadeDistance1 = 0x100; + constexpr std::ptrdiff_t m_flShadowCascadeDistance2 = 0x104; + constexpr std::ptrdiff_t m_flShadowCascadeDistance3 = 0x108; + constexpr std::ptrdiff_t m_nShadowCascadeResolution0 = 0x10c; + constexpr std::ptrdiff_t m_nShadowCascadeResolution1 = 0x110; + constexpr std::ptrdiff_t m_nShadowCascadeResolution2 = 0x114; + constexpr std::ptrdiff_t m_nShadowCascadeResolution3 = 0x118; + constexpr std::ptrdiff_t m_bUsesBakedShadowing = 0x11c; + constexpr std::ptrdiff_t m_nShadowPriority = 0x120; + constexpr std::ptrdiff_t m_nBakedShadowIndex = 0x124; + constexpr std::ptrdiff_t m_bRenderToCubemaps = 0x128; + constexpr std::ptrdiff_t m_LightGroups = 0x130; + constexpr std::ptrdiff_t m_nDirectLight = 0x138; + constexpr std::ptrdiff_t m_nIndirectLight = 0x13c; + constexpr std::ptrdiff_t m_flFadeMinDist = 0x140; + constexpr std::ptrdiff_t m_flFadeMaxDist = 0x144; + constexpr std::ptrdiff_t m_flShadowFadeMinDist = 0x148; + constexpr std::ptrdiff_t m_flShadowFadeMaxDist = 0x14c; + constexpr std::ptrdiff_t m_bEnabled = 0x150; + constexpr std::ptrdiff_t m_bFlicker = 0x151; + constexpr std::ptrdiff_t m_bPrecomputedFieldsValid = 0x152; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMins = 0x154; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMaxs = 0x160; + constexpr std::ptrdiff_t m_vPrecomputedOBBOrigin = 0x16c; + constexpr std::ptrdiff_t m_vPrecomputedOBBAngles = 0x178; + constexpr std::ptrdiff_t m_vPrecomputedOBBExtent = 0x184; + constexpr std::ptrdiff_t m_flPrecomputedMaxRange = 0x190; + constexpr std::ptrdiff_t m_nFogLightingMode = 0x194; + constexpr std::ptrdiff_t m_flFogContributionStength = 0x198; + constexpr std::ptrdiff_t m_flNearClipPlane = 0x19c; + constexpr std::ptrdiff_t m_SkyColor = 0x1a0; + constexpr std::ptrdiff_t m_flSkyIntensity = 0x1a4; + constexpr std::ptrdiff_t m_SkyAmbientBounce = 0x1a8; + constexpr std::ptrdiff_t m_bUseSecondaryColor = 0x1ac; + constexpr std::ptrdiff_t m_bMixedShadows = 0x1ad; + constexpr std::ptrdiff_t m_flLightStyleStartTime = 0x1b0; + constexpr std::ptrdiff_t m_flCapsuleLength = 0x1b4; + constexpr std::ptrdiff_t m_flMinRoughness = 0x1b8; + constexpr std::ptrdiff_t m_bPvsModifyEntity = 0x1c8; +} + +namespace CNetworkTransmitComponent { + constexpr std::ptrdiff_t m_nTransmitStateOwnedCounter = 0x16c; +} + +namespace CRenderComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x10; + constexpr std::ptrdiff_t m_bIsRenderingWithViewModels = 0x50; + constexpr std::ptrdiff_t m_nSplitscreenFlags = 0x54; + constexpr std::ptrdiff_t m_bEnableRendering = 0x60; + constexpr std::ptrdiff_t m_bInterpolationReadyToDraw = 0xb0; +} + +namespace AnimationUpdateListHandle_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CAnimEventListenerBase { +} + +namespace CAnimEventListener { +} + +namespace CAnimEventQueueListener { +} + +namespace CAnimGraphTagRef { + constexpr std::ptrdiff_t m_nTagIndex = 0x0; + constexpr std::ptrdiff_t m_tagName = 0x10; +} + +namespace CBuoyancyHelper { + constexpr std::ptrdiff_t m_flFluidDensity = 0x18; + constexpr std::ptrdiff_t m_flDisplacementFromObjects = 0x1c; +} + +namespace CSkillFloat { + constexpr std::ptrdiff_t m_pValue = 0x0; +} + +namespace CSkillInt { + constexpr std::ptrdiff_t m_pValue = 0x0; +} + +namespace CSkillDamage { + constexpr std::ptrdiff_t m_flDamage = 0x0; + constexpr std::ptrdiff_t m_flPhysicsForceDamage = 0x10; +} + +namespace CRemapFloat { + constexpr std::ptrdiff_t m_pValue = 0x0; +} + +namespace CScriptUniformRandomStream { + constexpr std::ptrdiff_t m_hScriptScope = 0x8; + constexpr std::ptrdiff_t m_nInitialSeed = 0x9c; +} + +namespace ViewAngleServerChange_t { + constexpr std::ptrdiff_t nType = 0x30; + constexpr std::ptrdiff_t qAngle = 0x34; + constexpr std::ptrdiff_t nIndex = 0x40; +} + +namespace CBreakableStageHelper { + constexpr std::ptrdiff_t m_nCurrentStage = 0x8; + constexpr std::ptrdiff_t m_nStageCount = 0xc; +} + +namespace CommandToolCommand_t { + constexpr std::ptrdiff_t m_bEnabled = 0x0; + constexpr std::ptrdiff_t m_bOpened = 0x1; + constexpr std::ptrdiff_t m_InternalId = 0x4; + constexpr std::ptrdiff_t m_ShortName = 0x8; + constexpr std::ptrdiff_t m_ExecMode = 0x10; + constexpr std::ptrdiff_t m_SpawnGroup = 0x18; + constexpr std::ptrdiff_t m_PeriodicExecDelay = 0x20; + constexpr std::ptrdiff_t m_SpecType = 0x24; + constexpr std::ptrdiff_t m_EntitySpec = 0x28; + constexpr std::ptrdiff_t m_Commands = 0x30; + constexpr std::ptrdiff_t m_SetDebugBits = 0x38; + constexpr std::ptrdiff_t m_ClearDebugBits = 0x40; +} + +namespace CPlayerPawnComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; +} + +namespace CPlayerControllerComponent { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; +} + +namespace CPlayer_AutoaimServices { +} + +namespace audioparams_t { + constexpr std::ptrdiff_t localSound = 0x8; + constexpr std::ptrdiff_t soundscapeIndex = 0x68; + constexpr std::ptrdiff_t localBits = 0x6c; + constexpr std::ptrdiff_t soundscapeEntityListIndex = 0x70; + constexpr std::ptrdiff_t soundEventHash = 0x74; +} + +namespace CPlayer_CameraServices { + constexpr std::ptrdiff_t m_vecCsViewPunchAngle = 0x40; + constexpr std::ptrdiff_t m_nCsViewPunchAngleTick = 0x4c; + constexpr std::ptrdiff_t m_flCsViewPunchAngleTickRatio = 0x50; + constexpr std::ptrdiff_t m_PlayerFog = 0x58; + constexpr std::ptrdiff_t m_hColorCorrectionCtrl = 0x98; + constexpr std::ptrdiff_t m_hViewEntity = 0x9c; + constexpr std::ptrdiff_t m_hTonemapController = 0xa0; + constexpr std::ptrdiff_t m_audio = 0xa8; + constexpr std::ptrdiff_t m_PostProcessingVolumes = 0x120; + constexpr std::ptrdiff_t m_flOldPlayerZ = 0x138; + constexpr std::ptrdiff_t m_flOldPlayerViewOffsetZ = 0x13c; + constexpr std::ptrdiff_t m_hTriggerSoundscapeList = 0x158; +} + +namespace CPlayer_FlashlightServices { +} + +namespace CPlayer_ItemServices { +} + +namespace CPlayer_MovementServices { + constexpr std::ptrdiff_t m_nImpulse = 0x40; + constexpr std::ptrdiff_t m_nButtons = 0x48; + constexpr std::ptrdiff_t m_nQueuedButtonDownMask = 0x68; + constexpr std::ptrdiff_t m_nQueuedButtonChangeMask = 0x70; + constexpr std::ptrdiff_t m_nButtonDoublePressed = 0x78; + constexpr std::ptrdiff_t m_pButtonPressedCmdNumber = 0x80; + constexpr std::ptrdiff_t m_nLastCommandNumberProcessed = 0x180; + constexpr std::ptrdiff_t m_nToggleButtonDownMask = 0x188; + constexpr std::ptrdiff_t m_flMaxspeed = 0x190; + constexpr std::ptrdiff_t m_arrForceSubtickMoveWhen = 0x194; + constexpr std::ptrdiff_t m_flForwardMove = 0x1a4; + constexpr std::ptrdiff_t m_flLeftMove = 0x1a8; + constexpr std::ptrdiff_t m_flUpMove = 0x1ac; + constexpr std::ptrdiff_t m_vecLastMovementImpulses = 0x1b0; + constexpr std::ptrdiff_t m_vecOldViewAngles = 0x1bc; +} + +namespace CPlayer_MovementServices_Humanoid { + constexpr std::ptrdiff_t m_flStepSoundTime = 0x1d0; + constexpr std::ptrdiff_t m_flFallVelocity = 0x1d4; + constexpr std::ptrdiff_t m_bInCrouch = 0x1d8; + constexpr std::ptrdiff_t m_nCrouchState = 0x1dc; + constexpr std::ptrdiff_t m_flCrouchTransitionStartTime = 0x1e0; + constexpr std::ptrdiff_t m_bDucked = 0x1e4; + constexpr std::ptrdiff_t m_bDucking = 0x1e5; + constexpr std::ptrdiff_t m_bInDuckJump = 0x1e6; + constexpr std::ptrdiff_t m_groundNormal = 0x1e8; + constexpr std::ptrdiff_t m_flSurfaceFriction = 0x1f4; + constexpr std::ptrdiff_t m_surfaceProps = 0x1f8; + constexpr std::ptrdiff_t m_nStepside = 0x208; + constexpr std::ptrdiff_t m_iTargetVolume = 0x20c; + constexpr std::ptrdiff_t m_vecSmoothedVelocity = 0x210; +} + +namespace CPlayer_ObserverServices { + constexpr std::ptrdiff_t m_iObserverMode = 0x40; + constexpr std::ptrdiff_t m_hObserverTarget = 0x44; + constexpr std::ptrdiff_t m_iObserverLastMode = 0x48; + constexpr std::ptrdiff_t m_bForcedObserverMode = 0x4c; +} + +namespace CPlayer_UseServices { +} + +namespace CPlayer_WaterServices { +} + +namespace CPlayer_WeaponServices { + constexpr std::ptrdiff_t m_bAllowSwitchToNoWeapon = 0x40; + constexpr std::ptrdiff_t m_hMyWeapons = 0x48; + constexpr std::ptrdiff_t m_hActiveWeapon = 0x60; + constexpr std::ptrdiff_t m_hLastWeapon = 0x64; + constexpr std::ptrdiff_t m_iAmmo = 0x68; + constexpr std::ptrdiff_t m_bPreventWeaponPickup = 0xa8; +} + +namespace AmmoTypeInfo_t { + constexpr std::ptrdiff_t m_nMaxCarry = 0x10; + constexpr std::ptrdiff_t m_nSplashSize = 0x1c; + constexpr std::ptrdiff_t m_nFlags = 0x24; + constexpr std::ptrdiff_t m_flMass = 0x28; + constexpr std::ptrdiff_t m_flSpeed = 0x2c; +} + +namespace CAnimGraphControllerBase { +} + +namespace CBodyComponentBaseAnimGraph { + constexpr std::ptrdiff_t m_animationController = 0x470; + constexpr std::ptrdiff_t __m_pChainEntity = 0x6b0; +} + +namespace EntityRenderAttribute_t { + constexpr std::ptrdiff_t m_ID = 0x30; + constexpr std::ptrdiff_t m_Values = 0x34; +} + +namespace ModelConfigHandle_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace ActiveModelConfig_t { + constexpr std::ptrdiff_t m_Handle = 0x28; + constexpr std::ptrdiff_t m_Name = 0x30; + constexpr std::ptrdiff_t m_AssociatedEntities = 0x38; + constexpr std::ptrdiff_t m_AssociatedEntityNames = 0x50; +} + +namespace CBodyComponentBaseModelEntity { + constexpr std::ptrdiff_t __m_pChainEntity = 0x470; +} + +namespace CNetworkOriginCellCoordQuantizedVector { + constexpr std::ptrdiff_t m_cellX = 0x10; + constexpr std::ptrdiff_t m_cellY = 0x12; + constexpr std::ptrdiff_t m_cellZ = 0x14; + constexpr std::ptrdiff_t m_nOutsideWorld = 0x16; + constexpr std::ptrdiff_t m_vecX = 0x18; + constexpr std::ptrdiff_t m_vecY = 0x20; + constexpr std::ptrdiff_t m_vecZ = 0x28; +} + +namespace CNetworkOriginQuantizedVector { + constexpr std::ptrdiff_t m_vecX = 0x10; + constexpr std::ptrdiff_t m_vecY = 0x18; + constexpr std::ptrdiff_t m_vecZ = 0x20; +} + +namespace CNetworkVelocityVector { + constexpr std::ptrdiff_t m_vecX = 0x10; + constexpr std::ptrdiff_t m_vecY = 0x18; + constexpr std::ptrdiff_t m_vecZ = 0x20; +} + +namespace CNetworkViewOffsetVector { + constexpr std::ptrdiff_t m_vecX = 0x10; + constexpr std::ptrdiff_t m_vecY = 0x18; + constexpr std::ptrdiff_t m_vecZ = 0x20; +} + +namespace GameTime_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace GameTick_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CGameSceneNodeHandle { + constexpr std::ptrdiff_t m_hOwner = 0x8; + constexpr std::ptrdiff_t m_name = 0xc; +} + +namespace CGameSceneNode { + constexpr std::ptrdiff_t m_nodeToWorld = 0x10; + constexpr std::ptrdiff_t m_pOwner = 0x30; + constexpr std::ptrdiff_t m_pParent = 0x38; + constexpr std::ptrdiff_t m_pChild = 0x40; + constexpr std::ptrdiff_t m_pNextSibling = 0x48; + constexpr std::ptrdiff_t m_hParent = 0x70; + constexpr std::ptrdiff_t m_vecOrigin = 0x80; + constexpr std::ptrdiff_t m_angRotation = 0xb8; + constexpr std::ptrdiff_t m_flScale = 0xc4; + constexpr std::ptrdiff_t m_vecAbsOrigin = 0xc8; + constexpr std::ptrdiff_t m_angAbsRotation = 0xd4; + constexpr std::ptrdiff_t m_flAbsScale = 0xe0; + constexpr std::ptrdiff_t m_nParentAttachmentOrBone = 0xe4; + constexpr std::ptrdiff_t m_bDebugAbsOriginChanges = 0xe6; + constexpr std::ptrdiff_t m_bDormant = 0xe7; + constexpr std::ptrdiff_t m_bForceParentToBeNetworked = 0xe8; + constexpr std::ptrdiff_t m_bDirtyHierarchy = 0x0; + constexpr std::ptrdiff_t m_bDirtyBoneMergeInfo = 0x0; + constexpr std::ptrdiff_t m_bNetworkedPositionChanged = 0x0; + constexpr std::ptrdiff_t m_bNetworkedAnglesChanged = 0x0; + constexpr std::ptrdiff_t m_bNetworkedScaleChanged = 0x0; + constexpr std::ptrdiff_t m_bWillBeCallingPostDataUpdate = 0x0; + constexpr std::ptrdiff_t m_bNotifyBoneTransformsChanged = 0x0; + constexpr std::ptrdiff_t m_bBoneMergeFlex = 0x0; + constexpr std::ptrdiff_t m_nLatchAbsOrigin = 0x0; + constexpr std::ptrdiff_t m_bDirtyBoneMergeBoneToRoot = 0x0; + constexpr std::ptrdiff_t m_nHierarchicalDepth = 0xeb; + constexpr std::ptrdiff_t m_nHierarchyType = 0xec; + constexpr std::ptrdiff_t m_nDoNotSetAnimTimeInInvalidatePhysicsCount = 0xed; + constexpr std::ptrdiff_t m_name = 0xf0; + constexpr std::ptrdiff_t m_hierarchyAttachName = 0x130; + constexpr std::ptrdiff_t m_flZOffset = 0x134; + constexpr std::ptrdiff_t m_vRenderOrigin = 0x138; +} + +namespace IChoreoServices { +} + +namespace CInButtonState { + constexpr std::ptrdiff_t m_pButtonStates = 0x8; +} + +namespace ISkeletonAnimationController { +} + +namespace CSkeletonAnimationController { + constexpr std::ptrdiff_t m_pSkeletonInstance = 0x8; +} + +namespace CNetworkedSequenceOperation { + constexpr std::ptrdiff_t m_hSequence = 0x8; + constexpr std::ptrdiff_t m_flPrevCycle = 0xc; + constexpr std::ptrdiff_t m_flCycle = 0x10; + constexpr std::ptrdiff_t m_flWeight = 0x14; + constexpr std::ptrdiff_t m_bSequenceChangeNetworked = 0x1c; + constexpr std::ptrdiff_t m_bDiscontinuity = 0x1d; + constexpr std::ptrdiff_t m_flPrevCycleFromDiscontinuity = 0x20; + constexpr std::ptrdiff_t m_flPrevCycleForAnimEventDetection = 0x24; +} + +namespace CModelState { + constexpr std::ptrdiff_t m_hModel = 0xa0; + constexpr std::ptrdiff_t m_ModelName = 0xa8; + constexpr std::ptrdiff_t m_bClientClothCreationSuppressed = 0xe8; + constexpr std::ptrdiff_t m_MeshGroupMask = 0x180; + constexpr std::ptrdiff_t m_nIdealMotionType = 0x222; + constexpr std::ptrdiff_t m_nForceLOD = 0x223; + constexpr std::ptrdiff_t m_nClothUpdateFlags = 0x224; +} + +namespace CSkeletonInstance { + constexpr std::ptrdiff_t m_modelState = 0x160; + constexpr std::ptrdiff_t m_bIsAnimationEnabled = 0x390; + constexpr std::ptrdiff_t m_bUseParentRenderBounds = 0x391; + constexpr std::ptrdiff_t m_bDisableSolidCollisionsForHierarchy = 0x392; + constexpr std::ptrdiff_t m_bDirtyMotionType = 0x0; + constexpr std::ptrdiff_t m_bIsGeneratingLatchedParentSpaceState = 0x0; + constexpr std::ptrdiff_t m_materialGroup = 0x394; + constexpr std::ptrdiff_t m_nHitboxSet = 0x398; +} + +namespace IntervalTimer { + constexpr std::ptrdiff_t m_timestamp = 0x8; + constexpr std::ptrdiff_t m_nWorldGroupId = 0xc; +} + +namespace CountdownTimer { + constexpr std::ptrdiff_t m_duration = 0x8; + constexpr std::ptrdiff_t m_timestamp = 0xc; + constexpr std::ptrdiff_t m_timescale = 0x10; + constexpr std::ptrdiff_t m_nWorldGroupId = 0x14; +} + +namespace EngineCountdownTimer { + constexpr std::ptrdiff_t m_duration = 0x8; + constexpr std::ptrdiff_t m_timestamp = 0xc; + constexpr std::ptrdiff_t m_timescale = 0x10; +} + +namespace CTimeline { + constexpr std::ptrdiff_t m_flValues = 0x10; + constexpr std::ptrdiff_t m_nValueCounts = 0x110; + constexpr std::ptrdiff_t m_nBucketCount = 0x210; + constexpr std::ptrdiff_t m_flInterval = 0x214; + constexpr std::ptrdiff_t m_flFinalValue = 0x218; + constexpr std::ptrdiff_t m_nCompressionType = 0x21c; + constexpr std::ptrdiff_t m_bStopped = 0x220; +} + +namespace CAnimGraphNetworkedVariables { + constexpr std::ptrdiff_t m_PredNetBoolVariables = 0x8; + constexpr std::ptrdiff_t m_PredNetByteVariables = 0x20; + constexpr std::ptrdiff_t m_PredNetUInt16Variables = 0x38; + constexpr std::ptrdiff_t m_PredNetIntVariables = 0x50; + constexpr std::ptrdiff_t m_PredNetUInt32Variables = 0x68; + constexpr std::ptrdiff_t m_PredNetUInt64Variables = 0x80; + constexpr std::ptrdiff_t m_PredNetFloatVariables = 0x98; + constexpr std::ptrdiff_t m_PredNetVectorVariables = 0xb0; + constexpr std::ptrdiff_t m_PredNetQuaternionVariables = 0xc8; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetBoolVariables = 0xe0; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetByteVariables = 0xf8; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt16Variables = 0x110; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetIntVariables = 0x128; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt32Variables = 0x140; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetUInt64Variables = 0x158; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetFloatVariables = 0x170; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetVectorVariables = 0x188; + constexpr std::ptrdiff_t m_OwnerOnlyPredNetQuaternionVariables = 0x1a0; + constexpr std::ptrdiff_t m_nBoolVariablesCount = 0x1b8; + constexpr std::ptrdiff_t m_nOwnerOnlyBoolVariablesCount = 0x1bc; + constexpr std::ptrdiff_t m_nRandomSeedOffset = 0x1c0; + constexpr std::ptrdiff_t m_flLastTeleportTime = 0x1c4; +} + +namespace CFootstepTableHandle { +} + +namespace ResponseFollowup { + constexpr std::ptrdiff_t followup_concept = 0x0; + constexpr std::ptrdiff_t followup_contexts = 0x8; + constexpr std::ptrdiff_t followup_delay = 0x10; + constexpr std::ptrdiff_t followup_target = 0x14; + constexpr std::ptrdiff_t followup_entityiotarget = 0x1c; + constexpr std::ptrdiff_t followup_entityioinput = 0x24; + constexpr std::ptrdiff_t followup_entityiodelay = 0x2c; + constexpr std::ptrdiff_t bFired = 0x30; +} + +namespace ResponseParams { + constexpr std::ptrdiff_t odds = 0x10; + constexpr std::ptrdiff_t flags = 0x12; + constexpr std::ptrdiff_t m_pFollowup = 0x18; +} + +namespace CResponseCriteriaSet { + constexpr std::ptrdiff_t m_nNumPrefixedContexts = 0x28; + constexpr std::ptrdiff_t m_bOverrideOnAppend = 0x2c; +} + +namespace CRR_Response { + constexpr std::ptrdiff_t m_Type = 0x0; + constexpr std::ptrdiff_t m_szResponseName = 0x1; + constexpr std::ptrdiff_t m_szMatchingRule = 0xc1; + constexpr std::ptrdiff_t m_Params = 0x148; + constexpr std::ptrdiff_t m_fMatchScore = 0x168; + constexpr std::ptrdiff_t m_szSpeakerContext = 0x170; + constexpr std::ptrdiff_t m_szWorldContext = 0x178; + constexpr std::ptrdiff_t m_Followup = 0x180; + constexpr std::ptrdiff_t m_pchCriteriaNames = 0x1b8; + constexpr std::ptrdiff_t m_pchCriteriaValues = 0x1d0; +} + +namespace ConceptHistory_t { + constexpr std::ptrdiff_t timeSpoken = 0x0; + constexpr std::ptrdiff_t m_response = 0x8; +} + +namespace CAI_Expresser { + constexpr std::ptrdiff_t m_flStopTalkTime = 0x38; + constexpr std::ptrdiff_t m_flStopTalkTimeWithoutDelay = 0x3c; + constexpr std::ptrdiff_t m_flBlockedTalkTime = 0x40; + constexpr std::ptrdiff_t m_voicePitch = 0x44; + constexpr std::ptrdiff_t m_flLastTimeAcceptedSpeak = 0x48; + constexpr std::ptrdiff_t m_bAllowSpeakingInterrupts = 0x4c; + constexpr std::ptrdiff_t m_bConsiderSceneInvolvementAsSpeech = 0x4d; + constexpr std::ptrdiff_t m_nLastSpokenPriority = 0x50; + constexpr std::ptrdiff_t m_pOuter = 0x58; +} + +namespace CResponseQueue { + constexpr std::ptrdiff_t m_ExpresserTargets = 0x50; +} + +namespace CResponseQueue::CDeferredResponse { + constexpr std::ptrdiff_t m_contexts = 0x10; + constexpr std::ptrdiff_t m_fDispatchTime = 0x40; + constexpr std::ptrdiff_t m_hIssuer = 0x44; + constexpr std::ptrdiff_t m_response = 0x50; + constexpr std::ptrdiff_t m_bResponseValid = 0x238; +} + +namespace CAI_ExpresserWithFollowup { + constexpr std::ptrdiff_t m_pPostponedFollowup = 0x60; +} + +namespace CMultiplayer_Expresser { + constexpr std::ptrdiff_t m_bAllowMultipleScenes = 0x70; +} + +namespace CCommentarySystem { + constexpr std::ptrdiff_t m_bCommentaryConvarsChanging = 0x11; + constexpr std::ptrdiff_t m_bCommentaryEnabledMidGame = 0x12; + constexpr std::ptrdiff_t m_flNextTeleportTime = 0x14; + constexpr std::ptrdiff_t m_iTeleportStage = 0x18; + constexpr std::ptrdiff_t m_bCheatState = 0x1c; + constexpr std::ptrdiff_t m_bIsFirstSpawnGroupToLoad = 0x1d; + constexpr std::ptrdiff_t m_hCurrentNode = 0x38; + constexpr std::ptrdiff_t m_hActiveCommentaryNode = 0x3c; + constexpr std::ptrdiff_t m_hLastCommentaryNode = 0x40; + constexpr std::ptrdiff_t m_vecNodes = 0x48; +} + +namespace CPhysicsShake { + constexpr std::ptrdiff_t m_force = 0x8; +} + +namespace CGameScriptedMoveData { + constexpr std::ptrdiff_t m_vDest = 0x0; + constexpr std::ptrdiff_t m_vSrc = 0xc; + constexpr std::ptrdiff_t m_angSrc = 0x18; + constexpr std::ptrdiff_t m_angDst = 0x24; + constexpr std::ptrdiff_t m_angCurrent = 0x30; + constexpr std::ptrdiff_t m_flAngRate = 0x3c; + constexpr std::ptrdiff_t m_flDuration = 0x40; + constexpr std::ptrdiff_t m_flStartTime = 0x44; + constexpr std::ptrdiff_t m_nPrevMoveType = 0x48; + constexpr std::ptrdiff_t m_bActive = 0x49; + constexpr std::ptrdiff_t m_bTeleportOnEnd = 0x4a; + constexpr std::ptrdiff_t m_bIgnoreRotation = 0x4b; + constexpr std::ptrdiff_t m_nType = 0x4c; + constexpr std::ptrdiff_t m_bSuccess = 0x50; + constexpr std::ptrdiff_t m_nForcedCrouchState = 0x54; + constexpr std::ptrdiff_t m_bIgnoreCollisions = 0x58; +} + +namespace CGameChoreoServices { + constexpr std::ptrdiff_t m_hOwner = 0x8; + constexpr std::ptrdiff_t m_hScriptedSequence = 0xc; + constexpr std::ptrdiff_t m_scriptState = 0x10; + constexpr std::ptrdiff_t m_choreoState = 0x14; + constexpr std::ptrdiff_t m_flTimeStartedState = 0x18; +} + +namespace HullFlags_t { + constexpr std::ptrdiff_t m_bHull_Human = 0x0; + constexpr std::ptrdiff_t m_bHull_SmallCentered = 0x1; + constexpr std::ptrdiff_t m_bHull_WideHuman = 0x2; + constexpr std::ptrdiff_t m_bHull_Tiny = 0x3; + constexpr std::ptrdiff_t m_bHull_Medium = 0x4; + constexpr std::ptrdiff_t m_bHull_TinyCentered = 0x5; + constexpr std::ptrdiff_t m_bHull_Large = 0x6; + constexpr std::ptrdiff_t m_bHull_LargeCentered = 0x7; + constexpr std::ptrdiff_t m_bHull_MediumTall = 0x8; + constexpr std::ptrdiff_t m_bHull_Small = 0x9; +} + +namespace CConstantForceController { + constexpr std::ptrdiff_t m_linear = 0xc; + constexpr std::ptrdiff_t m_angular = 0x18; + constexpr std::ptrdiff_t m_linearSave = 0x24; + constexpr std::ptrdiff_t m_angularSave = 0x30; +} + +namespace CMotorController { + constexpr std::ptrdiff_t m_speed = 0x8; + constexpr std::ptrdiff_t m_maxTorque = 0xc; + constexpr std::ptrdiff_t m_axis = 0x10; + constexpr std::ptrdiff_t m_inertiaFactor = 0x1c; +} + +namespace CSoundEnvelope { + constexpr std::ptrdiff_t m_current = 0x0; + constexpr std::ptrdiff_t m_target = 0x4; + constexpr std::ptrdiff_t m_rate = 0x8; + constexpr std::ptrdiff_t m_forceupdate = 0xc; +} + +namespace CCopyRecipientFilter { + constexpr std::ptrdiff_t m_Flags = 0x8; + constexpr std::ptrdiff_t m_Recipients = 0x10; +} + +namespace CSoundPatch { + constexpr std::ptrdiff_t m_pitch = 0x8; + constexpr std::ptrdiff_t m_volume = 0x18; + constexpr std::ptrdiff_t m_shutdownTime = 0x30; + constexpr std::ptrdiff_t m_flLastTime = 0x34; + constexpr std::ptrdiff_t m_iszSoundScriptName = 0x38; + constexpr std::ptrdiff_t m_hEnt = 0x40; + constexpr std::ptrdiff_t m_soundEntityIndex = 0x44; + constexpr std::ptrdiff_t m_soundOrigin = 0x48; + constexpr std::ptrdiff_t m_isPlaying = 0x54; + constexpr std::ptrdiff_t m_Filter = 0x58; + constexpr std::ptrdiff_t m_flCloseCaptionDuration = 0x80; + constexpr std::ptrdiff_t m_bUpdatedSoundOrigin = 0x84; + constexpr std::ptrdiff_t m_iszClassName = 0x88; +} + +namespace CPulseGraphInstance_ServerPointEntity { +} + +namespace CPulseCell_Value_FindEntByName { + constexpr std::ptrdiff_t m_EntityType = 0x48; +} + +namespace CPulseCell_Step_SetAnimGraphParam { + constexpr std::ptrdiff_t m_ParamName = 0x48; +} + +namespace CPulseCell_Step_EntFire { + constexpr std::ptrdiff_t m_Input = 0x48; +} + +namespace CPulseCell_Outflow_PlayVCD { + constexpr std::ptrdiff_t m_vcdFilename = 0x48; + constexpr std::ptrdiff_t m_OnFinished = 0x50; + constexpr std::ptrdiff_t m_Triggers = 0x60; +} + +namespace CPulseCell_Inflow_GameEvent { + constexpr std::ptrdiff_t m_EventName = 0x70; +} + +namespace CPulseServerFuncs { +} + +namespace CPulseCell_SoundEventStart { + constexpr std::ptrdiff_t m_Type = 0x48; +} + +namespace CPulseServerFuncs_Sounds { +} + +namespace CTouchExpansionComponent { +} + +namespace dynpitchvol_base_t { + constexpr std::ptrdiff_t preset = 0x0; + constexpr std::ptrdiff_t pitchrun = 0x4; + constexpr std::ptrdiff_t pitchstart = 0x8; + constexpr std::ptrdiff_t spinup = 0xc; + constexpr std::ptrdiff_t spindown = 0x10; + constexpr std::ptrdiff_t volrun = 0x14; + constexpr std::ptrdiff_t volstart = 0x18; + constexpr std::ptrdiff_t fadein = 0x1c; + constexpr std::ptrdiff_t fadeout = 0x20; + constexpr std::ptrdiff_t lfotype = 0x24; + constexpr std::ptrdiff_t lforate = 0x28; + constexpr std::ptrdiff_t lfomodpitch = 0x2c; + constexpr std::ptrdiff_t lfomodvol = 0x30; + constexpr std::ptrdiff_t cspinup = 0x34; + constexpr std::ptrdiff_t cspincount = 0x38; + constexpr std::ptrdiff_t pitch = 0x3c; + constexpr std::ptrdiff_t spinupsav = 0x40; + constexpr std::ptrdiff_t spindownsav = 0x44; + constexpr std::ptrdiff_t pitchfrac = 0x48; + constexpr std::ptrdiff_t vol = 0x4c; + constexpr std::ptrdiff_t fadeinsav = 0x50; + constexpr std::ptrdiff_t fadeoutsav = 0x54; + constexpr std::ptrdiff_t volfrac = 0x58; + constexpr std::ptrdiff_t lfofrac = 0x5c; + constexpr std::ptrdiff_t lfomult = 0x60; +} + +namespace dynpitchvol_t { +} + +namespace ResponseContext_t { + constexpr std::ptrdiff_t m_iszName = 0x0; + constexpr std::ptrdiff_t m_iszValue = 0x8; + constexpr std::ptrdiff_t m_fExpirationTime = 0x10; +} + +namespace Relationship_t { + constexpr std::ptrdiff_t disposition = 0x0; + constexpr std::ptrdiff_t priority = 0x4; +} + +namespace CBaseEntity { + constexpr std::ptrdiff_t m_CBodyComponent = 0x30; + constexpr std::ptrdiff_t m_NetworkTransmitComponent = 0x38; + constexpr std::ptrdiff_t m_aThinkFunctions = 0x228; + constexpr std::ptrdiff_t m_iCurrentThinkContext = 0x240; + constexpr std::ptrdiff_t m_nLastThinkTick = 0x244; + constexpr std::ptrdiff_t m_isSteadyState = 0x250; + constexpr std::ptrdiff_t m_lastNetworkChange = 0x258; + constexpr std::ptrdiff_t m_ResponseContexts = 0x268; + constexpr std::ptrdiff_t m_iszResponseContext = 0x280; + constexpr std::ptrdiff_t m_iHealth = 0x2a8; + constexpr std::ptrdiff_t m_iMaxHealth = 0x2ac; + constexpr std::ptrdiff_t m_lifeState = 0x2b0; + constexpr std::ptrdiff_t m_flDamageAccumulator = 0x2b4; + constexpr std::ptrdiff_t m_bTakesDamage = 0x2b8; + constexpr std::ptrdiff_t m_nTakeDamageFlags = 0x2bc; + constexpr std::ptrdiff_t m_MoveCollide = 0x2c1; + constexpr std::ptrdiff_t m_MoveType = 0x2c2; + constexpr std::ptrdiff_t m_nWaterTouch = 0x2c3; + constexpr std::ptrdiff_t m_nSlimeTouch = 0x2c4; + constexpr std::ptrdiff_t m_bRestoreInHierarchy = 0x2c5; + constexpr std::ptrdiff_t m_target = 0x2c8; + constexpr std::ptrdiff_t m_flMoveDoneTime = 0x2d0; + constexpr std::ptrdiff_t m_hDamageFilter = 0x2d4; + constexpr std::ptrdiff_t m_iszDamageFilterName = 0x2d8; + constexpr std::ptrdiff_t m_nSubclassID = 0x2e0; + constexpr std::ptrdiff_t m_flAnimTime = 0x2f0; + constexpr std::ptrdiff_t m_flSimulationTime = 0x2f4; + constexpr std::ptrdiff_t m_flCreateTime = 0x2f8; + constexpr std::ptrdiff_t m_bClientSideRagdoll = 0x2fc; + constexpr std::ptrdiff_t m_ubInterpolationFrame = 0x2fd; + constexpr std::ptrdiff_t m_vPrevVPhysicsUpdatePos = 0x300; + constexpr std::ptrdiff_t m_iTeamNum = 0x30c; + constexpr std::ptrdiff_t m_iGlobalname = 0x310; + constexpr std::ptrdiff_t m_iSentToClients = 0x318; + constexpr std::ptrdiff_t m_flSpeed = 0x31c; + constexpr std::ptrdiff_t m_sUniqueHammerID = 0x320; + constexpr std::ptrdiff_t m_spawnflags = 0x328; + constexpr std::ptrdiff_t m_nNextThinkTick = 0x32c; + constexpr std::ptrdiff_t m_nSimulationTick = 0x330; + constexpr std::ptrdiff_t m_OnKilled = 0x338; + constexpr std::ptrdiff_t m_fFlags = 0x360; + constexpr std::ptrdiff_t m_vecAbsVelocity = 0x364; + constexpr std::ptrdiff_t m_vecVelocity = 0x370; + constexpr std::ptrdiff_t m_vecBaseVelocity = 0x3a0; + constexpr std::ptrdiff_t m_nPushEnumCount = 0x3ac; + constexpr std::ptrdiff_t m_pCollision = 0x3b0; + constexpr std::ptrdiff_t m_hEffectEntity = 0x3b8; + constexpr std::ptrdiff_t m_hOwnerEntity = 0x3bc; + constexpr std::ptrdiff_t m_fEffects = 0x3c0; + constexpr std::ptrdiff_t m_hGroundEntity = 0x3c4; + constexpr std::ptrdiff_t m_flFriction = 0x3c8; + constexpr std::ptrdiff_t m_flElasticity = 0x3cc; + constexpr std::ptrdiff_t m_flGravityScale = 0x3d0; + constexpr std::ptrdiff_t m_flTimeScale = 0x3d4; + constexpr std::ptrdiff_t m_flWaterLevel = 0x3d8; + constexpr std::ptrdiff_t m_bSimulatedEveryTick = 0x3dc; + constexpr std::ptrdiff_t m_bAnimatedEveryTick = 0x3dd; + constexpr std::ptrdiff_t m_bDisableLowViolence = 0x3de; + constexpr std::ptrdiff_t m_nWaterType = 0x3df; + constexpr std::ptrdiff_t m_iEFlags = 0x3e0; + constexpr std::ptrdiff_t m_OnUser1 = 0x3e8; + constexpr std::ptrdiff_t m_OnUser2 = 0x410; + constexpr std::ptrdiff_t m_OnUser3 = 0x438; + constexpr std::ptrdiff_t m_OnUser4 = 0x460; + constexpr std::ptrdiff_t m_iInitialTeamNum = 0x488; + constexpr std::ptrdiff_t m_flNavIgnoreUntilTime = 0x48c; + constexpr std::ptrdiff_t m_vecAngVelocity = 0x490; + constexpr std::ptrdiff_t m_bNetworkQuantizeOriginAndAngles = 0x49c; + constexpr std::ptrdiff_t m_bLagCompensate = 0x49d; + constexpr std::ptrdiff_t m_flOverriddenFriction = 0x4a0; + constexpr std::ptrdiff_t m_pBlocker = 0x4a4; + constexpr std::ptrdiff_t m_flLocalTime = 0x4a8; + constexpr std::ptrdiff_t m_flVPhysicsUpdateLocalTime = 0x4ac; +} + +namespace CServerOnlyEntity { +} + +namespace CServerOnlyPointEntity { +} + +namespace CLogicalEntity { +} + +namespace CColorCorrection { + constexpr std::ptrdiff_t m_flFadeInDuration = 0x4b0; + constexpr std::ptrdiff_t m_flFadeOutDuration = 0x4b4; + constexpr std::ptrdiff_t m_flStartFadeInWeight = 0x4b8; + constexpr std::ptrdiff_t m_flStartFadeOutWeight = 0x4bc; + constexpr std::ptrdiff_t m_flTimeStartFadeIn = 0x4c0; + constexpr std::ptrdiff_t m_flTimeStartFadeOut = 0x4c4; + constexpr std::ptrdiff_t m_flMaxWeight = 0x4c8; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4cc; + constexpr std::ptrdiff_t m_bEnabled = 0x4cd; + constexpr std::ptrdiff_t m_bMaster = 0x4ce; + constexpr std::ptrdiff_t m_bClientSide = 0x4cf; + constexpr std::ptrdiff_t m_bExclusive = 0x4d0; + constexpr std::ptrdiff_t m_MinFalloff = 0x4d4; + constexpr std::ptrdiff_t m_MaxFalloff = 0x4d8; + constexpr std::ptrdiff_t m_flCurWeight = 0x4dc; + constexpr std::ptrdiff_t m_netlookupFilename = 0x4e0; + constexpr std::ptrdiff_t m_lookupFilename = 0x6e0; +} + +namespace CEntityFlame { + constexpr std::ptrdiff_t m_hEntAttached = 0x4b0; + constexpr std::ptrdiff_t m_bCheapEffect = 0x4b4; + constexpr std::ptrdiff_t m_flSize = 0x4b8; + constexpr std::ptrdiff_t m_bUseHitboxes = 0x4bc; + constexpr std::ptrdiff_t m_iNumHitboxFires = 0x4c0; + constexpr std::ptrdiff_t m_flHitboxFireScale = 0x4c4; + constexpr std::ptrdiff_t m_flLifetime = 0x4c8; + constexpr std::ptrdiff_t m_hAttacker = 0x4cc; + constexpr std::ptrdiff_t m_iDangerSound = 0x4d0; + constexpr std::ptrdiff_t m_flDirectDamagePerSecond = 0x4d4; + constexpr std::ptrdiff_t m_iCustomDamageType = 0x4d8; +} + +namespace CBaseFilter { + constexpr std::ptrdiff_t m_bNegated = 0x4b0; + constexpr std::ptrdiff_t m_OnPass = 0x4b8; + constexpr std::ptrdiff_t m_OnFail = 0x4e0; +} + +namespace CFilterMultiple { + constexpr std::ptrdiff_t m_nFilterType = 0x508; + constexpr std::ptrdiff_t m_iFilterName = 0x510; + constexpr std::ptrdiff_t m_hFilter = 0x560; + constexpr std::ptrdiff_t m_nFilterCount = 0x588; +} + +namespace CFilterProximity { + constexpr std::ptrdiff_t m_flRadius = 0x508; +} + +namespace CFilterLOS { +} + +namespace CFilterClass { + constexpr std::ptrdiff_t m_iFilterClass = 0x508; +} + +namespace CBaseFire { + constexpr std::ptrdiff_t m_flScale = 0x4b0; + constexpr std::ptrdiff_t m_flStartScale = 0x4b4; + constexpr std::ptrdiff_t m_flScaleTime = 0x4b8; + constexpr std::ptrdiff_t m_nFlags = 0x4bc; +} + +namespace CFireSmoke { + constexpr std::ptrdiff_t m_nFlameModelIndex = 0x4c0; + constexpr std::ptrdiff_t m_nFlameFromAboveModelIndex = 0x4c4; +} + +namespace CFishPool { + constexpr std::ptrdiff_t m_fishCount = 0x4c0; + constexpr std::ptrdiff_t m_maxRange = 0x4c4; + constexpr std::ptrdiff_t m_swimDepth = 0x4c8; + constexpr std::ptrdiff_t m_waterLevel = 0x4cc; + constexpr std::ptrdiff_t m_isDormant = 0x4d0; + constexpr std::ptrdiff_t m_fishes = 0x4d8; + constexpr std::ptrdiff_t m_visTimer = 0x4f0; +} + +namespace CInfoData { +} + +namespace locksound_t { + constexpr std::ptrdiff_t sLockedSound = 0x8; + constexpr std::ptrdiff_t sUnlockedSound = 0x10; + constexpr std::ptrdiff_t flwaitSound = 0x18; +} + +namespace CLogicBranch { + constexpr std::ptrdiff_t m_bInValue = 0x4b0; + constexpr std::ptrdiff_t m_Listeners = 0x4b8; + constexpr std::ptrdiff_t m_OnTrue = 0x4d0; + constexpr std::ptrdiff_t m_OnFalse = 0x4f8; +} + +namespace CLogicDistanceCheck { + constexpr std::ptrdiff_t m_iszEntityA = 0x4b0; + constexpr std::ptrdiff_t m_iszEntityB = 0x4b8; + constexpr std::ptrdiff_t m_flZone1Distance = 0x4c0; + constexpr std::ptrdiff_t m_flZone2Distance = 0x4c4; + constexpr std::ptrdiff_t m_InZone1 = 0x4c8; + constexpr std::ptrdiff_t m_InZone2 = 0x4f0; + constexpr std::ptrdiff_t m_InZone3 = 0x518; +} + +namespace VelocitySampler { + constexpr std::ptrdiff_t m_prevSample = 0x0; + constexpr std::ptrdiff_t m_fPrevSampleTime = 0xc; + constexpr std::ptrdiff_t m_fIdealSampleRate = 0x10; +} + +namespace SimpleConstraintSoundProfile { + constexpr std::ptrdiff_t eKeypoints = 0x8; + constexpr std::ptrdiff_t m_keyPoints = 0xc; + constexpr std::ptrdiff_t m_reversalSoundThresholds = 0x14; +} + +namespace ConstraintSoundInfo { + constexpr std::ptrdiff_t m_vSampler = 0x8; + constexpr std::ptrdiff_t m_soundProfile = 0x20; + constexpr std::ptrdiff_t m_forwardAxis = 0x40; + constexpr std::ptrdiff_t m_iszTravelSoundFwd = 0x50; + constexpr std::ptrdiff_t m_iszTravelSoundBack = 0x58; + constexpr std::ptrdiff_t m_iszReversalSounds = 0x68; + constexpr std::ptrdiff_t m_bPlayTravelSound = 0x80; + constexpr std::ptrdiff_t m_bPlayReversalSound = 0x81; +} + +namespace CSmoothFunc { + constexpr std::ptrdiff_t m_flSmoothAmplitude = 0x8; + constexpr std::ptrdiff_t m_flSmoothBias = 0xc; + constexpr std::ptrdiff_t m_flSmoothDuration = 0x10; + constexpr std::ptrdiff_t m_flSmoothRemainingTime = 0x14; + constexpr std::ptrdiff_t m_nSmoothDir = 0x18; +} + +namespace magnetted_objects_t { + constexpr std::ptrdiff_t hEntity = 0x8; +} + +namespace CPointPrefab { + constexpr std::ptrdiff_t m_targetMapName = 0x4b0; + constexpr std::ptrdiff_t m_forceWorldGroupID = 0x4b8; + constexpr std::ptrdiff_t m_fixupNames = 0x4c0; +} + +namespace CSkyboxReference { + constexpr std::ptrdiff_t m_worldGroupId = 0x4b0; + constexpr std::ptrdiff_t m_hSkyCamera = 0x4b4; +} + +namespace CSkyCamera { + constexpr std::ptrdiff_t m_skyboxData = 0x4b0; + constexpr std::ptrdiff_t m_skyboxSlotToken = 0x540; + constexpr std::ptrdiff_t m_bUseAngles = 0x544; + constexpr std::ptrdiff_t m_pNext = 0x548; +} + +namespace CSound { + constexpr std::ptrdiff_t m_hOwner = 0x0; + constexpr std::ptrdiff_t m_hTarget = 0x4; + constexpr std::ptrdiff_t m_iVolume = 0x8; + constexpr std::ptrdiff_t m_flOcclusionScale = 0xc; + constexpr std::ptrdiff_t m_iType = 0x10; + constexpr std::ptrdiff_t m_iNextAudible = 0x14; + constexpr std::ptrdiff_t m_flExpireTime = 0x18; + constexpr std::ptrdiff_t m_iNext = 0x1c; + constexpr std::ptrdiff_t m_bNoExpirationTime = 0x1e; + constexpr std::ptrdiff_t m_ownerChannelIndex = 0x20; + constexpr std::ptrdiff_t m_vecOrigin = 0x24; + constexpr std::ptrdiff_t m_bHasOwner = 0x30; +} + +namespace CEnvSoundscape { + constexpr std::ptrdiff_t m_OnPlay = 0x4b0; + constexpr std::ptrdiff_t m_flRadius = 0x4d8; + constexpr std::ptrdiff_t m_soundscapeName = 0x4e0; + constexpr std::ptrdiff_t m_soundEventName = 0x4e8; + constexpr std::ptrdiff_t m_bOverrideWithEvent = 0x4f0; + constexpr std::ptrdiff_t m_soundscapeIndex = 0x4f4; + constexpr std::ptrdiff_t m_soundscapeEntityListId = 0x4f8; + constexpr std::ptrdiff_t m_soundEventHash = 0x4fc; + constexpr std::ptrdiff_t m_positionNames = 0x500; + constexpr std::ptrdiff_t m_hProxySoundscape = 0x540; + constexpr std::ptrdiff_t m_bDisabled = 0x544; +} + +namespace CEnvSoundscapeProxy { + constexpr std::ptrdiff_t m_MainSoundscapeName = 0x548; +} + +namespace CEnvSoundscapeTriggerable { +} + +namespace lerpdata_t { + constexpr std::ptrdiff_t m_hEnt = 0x0; + constexpr std::ptrdiff_t m_MoveType = 0x4; + constexpr std::ptrdiff_t m_flStartTime = 0x8; + constexpr std::ptrdiff_t m_vecStartOrigin = 0xc; + constexpr std::ptrdiff_t m_qStartRot = 0x20; + constexpr std::ptrdiff_t m_nFXIndex = 0x30; +} + +namespace CNavLinkAnimgraphVar { + constexpr std::ptrdiff_t m_strAnimgraphVar = 0x0; + constexpr std::ptrdiff_t m_unAlignmentDegrees = 0x8; +} + +namespace CNavLinkMovementVData { + constexpr std::ptrdiff_t m_bIsInterpolated = 0x0; + constexpr std::ptrdiff_t m_unRecommendedDistance = 0x4; + constexpr std::ptrdiff_t m_vecAnimgraphVars = 0x8; +} + +namespace CNavVolumeMarkupVolume { +} + +namespace CNavVolumeCalculatedVector { +} + +namespace CNavVolumeBreadthFirstSearch { + constexpr std::ptrdiff_t m_vStartPos = 0xa0; + constexpr std::ptrdiff_t m_flSearchDist = 0xac; +} + +namespace VPhysicsCollisionAttribute_t { + constexpr std::ptrdiff_t m_nInteractsAs = 0x8; + constexpr std::ptrdiff_t m_nInteractsWith = 0x10; + constexpr std::ptrdiff_t m_nInteractsExclude = 0x18; + constexpr std::ptrdiff_t m_nEntityId = 0x20; + constexpr std::ptrdiff_t m_nOwnerId = 0x24; + constexpr std::ptrdiff_t m_nHierarchyId = 0x28; + constexpr std::ptrdiff_t m_nCollisionGroup = 0x2a; + constexpr std::ptrdiff_t m_nCollisionFunctionMask = 0x2b; +} + +namespace CCollisionProperty { + constexpr std::ptrdiff_t m_collisionAttribute = 0x10; + constexpr std::ptrdiff_t m_vecMins = 0x40; + constexpr std::ptrdiff_t m_vecMaxs = 0x4c; + constexpr std::ptrdiff_t m_usSolidFlags = 0x5a; + constexpr std::ptrdiff_t m_nSolidType = 0x5b; + constexpr std::ptrdiff_t m_triggerBloat = 0x5c; + constexpr std::ptrdiff_t m_nSurroundType = 0x5d; + constexpr std::ptrdiff_t m_CollisionGroup = 0x5e; + constexpr std::ptrdiff_t m_nEnablePhysics = 0x5f; + constexpr std::ptrdiff_t m_flBoundingRadius = 0x60; + constexpr std::ptrdiff_t m_vecSpecifiedSurroundingMins = 0x64; + constexpr std::ptrdiff_t m_vecSpecifiedSurroundingMaxs = 0x70; + constexpr std::ptrdiff_t m_vecSurroundingMaxs = 0x7c; + constexpr std::ptrdiff_t m_vecSurroundingMins = 0x88; + constexpr std::ptrdiff_t m_vCapsuleCenter1 = 0x94; + constexpr std::ptrdiff_t m_vCapsuleCenter2 = 0xa0; + constexpr std::ptrdiff_t m_flCapsuleRadius = 0xac; +} + +namespace CEffectData { + constexpr std::ptrdiff_t m_vOrigin = 0x8; + constexpr std::ptrdiff_t m_vStart = 0x14; + constexpr std::ptrdiff_t m_vNormal = 0x20; + constexpr std::ptrdiff_t m_vAngles = 0x2c; + constexpr std::ptrdiff_t m_hEntity = 0x38; + constexpr std::ptrdiff_t m_hOtherEntity = 0x3c; + constexpr std::ptrdiff_t m_flScale = 0x40; + constexpr std::ptrdiff_t m_flMagnitude = 0x44; + constexpr std::ptrdiff_t m_flRadius = 0x48; + constexpr std::ptrdiff_t m_nSurfaceProp = 0x4c; + constexpr std::ptrdiff_t m_nEffectIndex = 0x50; + constexpr std::ptrdiff_t m_nDamageType = 0x58; + constexpr std::ptrdiff_t m_nPenetrate = 0x5c; + constexpr std::ptrdiff_t m_nMaterial = 0x5e; + constexpr std::ptrdiff_t m_nHitBox = 0x60; + constexpr std::ptrdiff_t m_nColor = 0x62; + constexpr std::ptrdiff_t m_fFlags = 0x63; + constexpr std::ptrdiff_t m_nAttachmentIndex = 0x64; + constexpr std::ptrdiff_t m_nAttachmentName = 0x68; + constexpr std::ptrdiff_t m_iEffectName = 0x6c; + constexpr std::ptrdiff_t m_nExplosionType = 0x6e; +} + +namespace CEnvDetailController { + constexpr std::ptrdiff_t m_flFadeStartDist = 0x4b0; + constexpr std::ptrdiff_t m_flFadeEndDist = 0x4b4; +} + +namespace CEnvWindShared { + constexpr std::ptrdiff_t m_flStartTime = 0x8; + constexpr std::ptrdiff_t m_iWindSeed = 0xc; + constexpr std::ptrdiff_t m_iMinWind = 0x10; + constexpr std::ptrdiff_t m_iMaxWind = 0x12; + constexpr std::ptrdiff_t m_windRadius = 0x14; + constexpr std::ptrdiff_t m_iMinGust = 0x18; + constexpr std::ptrdiff_t m_iMaxGust = 0x1a; + constexpr std::ptrdiff_t m_flMinGustDelay = 0x1c; + constexpr std::ptrdiff_t m_flMaxGustDelay = 0x20; + constexpr std::ptrdiff_t m_flGustDuration = 0x24; + constexpr std::ptrdiff_t m_iGustDirChange = 0x28; + constexpr std::ptrdiff_t m_location = 0x2c; + constexpr std::ptrdiff_t m_iszGustSound = 0x38; + constexpr std::ptrdiff_t m_iWindDir = 0x3c; + constexpr std::ptrdiff_t m_flWindSpeed = 0x40; + constexpr std::ptrdiff_t m_currentWindVector = 0x44; + constexpr std::ptrdiff_t m_CurrentSwayVector = 0x50; + constexpr std::ptrdiff_t m_PrevSwayVector = 0x5c; + constexpr std::ptrdiff_t m_iInitialWindDir = 0x68; + constexpr std::ptrdiff_t m_flInitialWindSpeed = 0x6c; + constexpr std::ptrdiff_t m_OnGustStart = 0x70; + constexpr std::ptrdiff_t m_OnGustEnd = 0x98; + constexpr std::ptrdiff_t m_flVariationTime = 0xc0; + constexpr std::ptrdiff_t m_flSwayTime = 0xc4; + constexpr std::ptrdiff_t m_flSimTime = 0xc8; + constexpr std::ptrdiff_t m_flSwitchTime = 0xcc; + constexpr std::ptrdiff_t m_flAveWindSpeed = 0xd0; + constexpr std::ptrdiff_t m_bGusting = 0xd4; + constexpr std::ptrdiff_t m_flWindAngleVariation = 0xd8; + constexpr std::ptrdiff_t m_flWindSpeedVariation = 0xdc; + constexpr std::ptrdiff_t m_iEntIndex = 0xe0; +} + +namespace CEnvWindShared::WindAveEvent_t { + constexpr std::ptrdiff_t m_flStartWindSpeed = 0x0; + constexpr std::ptrdiff_t m_flAveWindSpeed = 0x4; +} + +namespace CEnvWindShared::WindVariationEvent_t { + constexpr std::ptrdiff_t m_flWindAngleVariation = 0x0; + constexpr std::ptrdiff_t m_flWindSpeedVariation = 0x4; +} + +namespace CInfoLadderDismount { +} + +namespace shard_model_desc_t { + constexpr std::ptrdiff_t m_nModelID = 0x8; + constexpr std::ptrdiff_t m_hMaterial = 0x10; + constexpr std::ptrdiff_t m_solid = 0x18; + constexpr std::ptrdiff_t m_ShatterPanelMode = 0x19; + constexpr std::ptrdiff_t m_vecPanelSize = 0x1c; + constexpr std::ptrdiff_t m_vecStressPositionA = 0x24; + constexpr std::ptrdiff_t m_vecStressPositionB = 0x2c; + constexpr std::ptrdiff_t m_vecPanelVertices = 0x38; + constexpr std::ptrdiff_t m_flGlassHalfThickness = 0x50; + constexpr std::ptrdiff_t m_bHasParent = 0x54; + constexpr std::ptrdiff_t m_bParentFrozen = 0x55; + constexpr std::ptrdiff_t m_SurfacePropStringToken = 0x58; + constexpr std::ptrdiff_t m_LightGroup = 0x5c; +} + +namespace CShatterGlassShard { + constexpr std::ptrdiff_t m_hShardHandle = 0x8; + constexpr std::ptrdiff_t m_vecPanelVertices = 0x10; + constexpr std::ptrdiff_t m_vLocalPanelSpaceOrigin = 0x28; + constexpr std::ptrdiff_t m_hModel = 0x30; + constexpr std::ptrdiff_t m_hPhysicsEntity = 0x38; + constexpr std::ptrdiff_t m_hParentPanel = 0x3c; + constexpr std::ptrdiff_t m_hParentShard = 0x40; + constexpr std::ptrdiff_t m_ShatterStressType = 0x44; + constexpr std::ptrdiff_t m_vecStressVelocity = 0x48; + constexpr std::ptrdiff_t m_bCreatedModel = 0x54; + constexpr std::ptrdiff_t m_flLongestEdge = 0x58; + constexpr std::ptrdiff_t m_flShortestEdge = 0x5c; + constexpr std::ptrdiff_t m_flLongestAcross = 0x60; + constexpr std::ptrdiff_t m_flShortestAcross = 0x64; + constexpr std::ptrdiff_t m_flSumOfAllEdges = 0x68; + constexpr std::ptrdiff_t m_flArea = 0x6c; + constexpr std::ptrdiff_t m_nOnFrameEdge = 0x70; + constexpr std::ptrdiff_t m_nParentPanelsNthShard = 0x74; + constexpr std::ptrdiff_t m_nSubShardGeneration = 0x78; + constexpr std::ptrdiff_t m_vecAverageVertPosition = 0x7c; + constexpr std::ptrdiff_t m_bAverageVertPositionIsValid = 0x84; + constexpr std::ptrdiff_t m_vecPanelSpaceStressPositionA = 0x88; + constexpr std::ptrdiff_t m_vecPanelSpaceStressPositionB = 0x90; + constexpr std::ptrdiff_t m_bStressPositionAIsValid = 0x98; + constexpr std::ptrdiff_t m_bStressPositionBIsValid = 0x99; + constexpr std::ptrdiff_t m_bFlaggedForRemoval = 0x9a; + constexpr std::ptrdiff_t m_flPhysicsEntitySpawnedAtTime = 0x9c; + constexpr std::ptrdiff_t m_bShatterRateLimited = 0xa0; + constexpr std::ptrdiff_t m_hEntityHittingMe = 0xa4; + constexpr std::ptrdiff_t m_vecNeighbors = 0xa8; +} + +namespace CGameRulesProxy { +} + +namespace CGameRules { + constexpr std::ptrdiff_t m_szQuestName = 0x8; + constexpr std::ptrdiff_t m_nQuestPhase = 0x88; +} + +namespace CGlowProperty { + constexpr std::ptrdiff_t m_fGlowColor = 0x8; + constexpr std::ptrdiff_t m_iGlowType = 0x30; + constexpr std::ptrdiff_t m_iGlowTeam = 0x34; + constexpr std::ptrdiff_t m_nGlowRange = 0x38; + constexpr std::ptrdiff_t m_nGlowRangeMin = 0x3c; + constexpr std::ptrdiff_t m_glowColorOverride = 0x40; + constexpr std::ptrdiff_t m_bFlashing = 0x44; + constexpr std::ptrdiff_t m_flGlowTime = 0x48; + constexpr std::ptrdiff_t m_flGlowStartTime = 0x4c; + constexpr std::ptrdiff_t m_bEligibleForScreenHighlight = 0x50; + constexpr std::ptrdiff_t m_bGlowing = 0x51; +} + +namespace IVehicle { +} + +namespace CMultiplayRules { +} + +namespace fogparams_t { + constexpr std::ptrdiff_t dirPrimary = 0x8; + constexpr std::ptrdiff_t colorPrimary = 0x14; + constexpr std::ptrdiff_t colorSecondary = 0x18; + constexpr std::ptrdiff_t colorPrimaryLerpTo = 0x1c; + constexpr std::ptrdiff_t colorSecondaryLerpTo = 0x20; + constexpr std::ptrdiff_t start = 0x24; + constexpr std::ptrdiff_t end = 0x28; + constexpr std::ptrdiff_t farz = 0x2c; + constexpr std::ptrdiff_t maxdensity = 0x30; + constexpr std::ptrdiff_t exponent = 0x34; + constexpr std::ptrdiff_t HDRColorScale = 0x38; + constexpr std::ptrdiff_t skyboxFogFactor = 0x3c; + constexpr std::ptrdiff_t skyboxFogFactorLerpTo = 0x40; + constexpr std::ptrdiff_t startLerpTo = 0x44; + constexpr std::ptrdiff_t endLerpTo = 0x48; + constexpr std::ptrdiff_t maxdensityLerpTo = 0x4c; + constexpr std::ptrdiff_t lerptime = 0x50; + constexpr std::ptrdiff_t duration = 0x54; + constexpr std::ptrdiff_t blendtobackground = 0x58; + constexpr std::ptrdiff_t scattering = 0x5c; + constexpr std::ptrdiff_t locallightscale = 0x60; + constexpr std::ptrdiff_t enable = 0x64; + constexpr std::ptrdiff_t blend = 0x65; + constexpr std::ptrdiff_t m_bNoReflectionFog = 0x66; + constexpr std::ptrdiff_t m_bPadding = 0x67; +} + +namespace fogplayerparams_t { + constexpr std::ptrdiff_t m_hCtrl = 0x8; + constexpr std::ptrdiff_t m_flTransitionTime = 0xc; + constexpr std::ptrdiff_t m_OldColor = 0x10; + constexpr std::ptrdiff_t m_flOldStart = 0x14; + constexpr std::ptrdiff_t m_flOldEnd = 0x18; + constexpr std::ptrdiff_t m_flOldMaxDensity = 0x1c; + constexpr std::ptrdiff_t m_flOldHDRColorScale = 0x20; + constexpr std::ptrdiff_t m_flOldFarZ = 0x24; + constexpr std::ptrdiff_t m_NewColor = 0x28; + constexpr std::ptrdiff_t m_flNewStart = 0x2c; + constexpr std::ptrdiff_t m_flNewEnd = 0x30; + constexpr std::ptrdiff_t m_flNewMaxDensity = 0x34; + constexpr std::ptrdiff_t m_flNewHDRColorScale = 0x38; + constexpr std::ptrdiff_t m_flNewFarZ = 0x3c; +} + +namespace sky3dparams_t { + constexpr std::ptrdiff_t scale = 0x8; + constexpr std::ptrdiff_t origin = 0xc; + constexpr std::ptrdiff_t bClip3DSkyBoxNearToWorldFar = 0x18; + constexpr std::ptrdiff_t flClip3DSkyBoxNearToWorldFarOffset = 0x1c; + constexpr std::ptrdiff_t fog = 0x20; + constexpr std::ptrdiff_t m_nWorldGroupID = 0x88; +} + +namespace IRagdoll { +} + +namespace ragdollelement_t { + constexpr std::ptrdiff_t originParentSpace = 0x0; + constexpr std::ptrdiff_t parentIndex = 0x20; + constexpr std::ptrdiff_t m_flRadius = 0x24; +} + +namespace ragdoll_t { + constexpr std::ptrdiff_t list = 0x0; + constexpr std::ptrdiff_t boneIndex = 0x18; + constexpr std::ptrdiff_t allowStretch = 0x30; + constexpr std::ptrdiff_t unused = 0x31; +} + +namespace PhysicsRagdollPose_t { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; + constexpr std::ptrdiff_t m_Transforms = 0x30; + constexpr std::ptrdiff_t m_hOwner = 0x48; +} + +namespace CSceneEventInfo { + constexpr std::ptrdiff_t m_iLayer = 0x0; + constexpr std::ptrdiff_t m_iPriority = 0x4; + constexpr std::ptrdiff_t m_hSequence = 0x8; + constexpr std::ptrdiff_t m_flWeight = 0xc; + constexpr std::ptrdiff_t m_bIsMoving = 0x10; + constexpr std::ptrdiff_t m_bHasArrived = 0x11; + constexpr std::ptrdiff_t m_flInitialYaw = 0x14; + constexpr std::ptrdiff_t m_flTargetYaw = 0x18; + constexpr std::ptrdiff_t m_flFacingYaw = 0x1c; + constexpr std::ptrdiff_t m_nType = 0x20; + constexpr std::ptrdiff_t m_flNext = 0x24; + constexpr std::ptrdiff_t m_bIsGesture = 0x28; + constexpr std::ptrdiff_t m_bShouldRemove = 0x29; + constexpr std::ptrdiff_t m_hTarget = 0x54; + constexpr std::ptrdiff_t m_nSceneEventId = 0x58; + constexpr std::ptrdiff_t m_bClientSide = 0x5c; + constexpr std::ptrdiff_t m_bStarted = 0x5d; +} + +namespace ParticleIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace AmmoIndex_t { + constexpr std::ptrdiff_t m_Value = 0x0; +} + +namespace CEntitySubclassVDataBase { +} + +namespace thinkfunc_t { + constexpr std::ptrdiff_t m_hFn = 0x8; + constexpr std::ptrdiff_t m_nContext = 0x10; + constexpr std::ptrdiff_t m_nNextThinkTick = 0x14; + constexpr std::ptrdiff_t m_nLastThinkTick = 0x18; +} + +namespace RagdollCreationParams_t { + constexpr std::ptrdiff_t m_vForce = 0x0; + constexpr std::ptrdiff_t m_nForceBone = 0xc; +} + +namespace hudtextparms_t { + constexpr std::ptrdiff_t color1 = 0x0; + constexpr std::ptrdiff_t color2 = 0x4; + constexpr std::ptrdiff_t effect = 0x8; + constexpr std::ptrdiff_t channel = 0x9; + constexpr std::ptrdiff_t x = 0xc; + constexpr std::ptrdiff_t y = 0x10; +} + +namespace CSimpleSimTimer { + constexpr std::ptrdiff_t m_next = 0x0; + constexpr std::ptrdiff_t m_nWorldGroupId = 0x4; +} + +namespace CSimTimer { + constexpr std::ptrdiff_t m_interval = 0x8; +} + +namespace CRandSimTimer { + constexpr std::ptrdiff_t m_minInterval = 0x8; + constexpr std::ptrdiff_t m_maxInterval = 0xc; +} + +namespace CStopwatchBase { + constexpr std::ptrdiff_t m_fIsRunning = 0x8; +} + +namespace CSimpleStopwatch { +} + +namespace CStopwatch { + constexpr std::ptrdiff_t m_interval = 0xc; +} + +namespace CRandStopwatch { + constexpr std::ptrdiff_t m_minInterval = 0xc; + constexpr std::ptrdiff_t m_maxInterval = 0x10; +} + +namespace CSingleplayRules { + constexpr std::ptrdiff_t m_bSinglePlayerGameEnding = 0x90; +} + +namespace CSoundOpvarSetPointBase { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_hSource = 0x4b4; + constexpr std::ptrdiff_t m_iszSourceEntityName = 0x4c0; + constexpr std::ptrdiff_t m_vLastPosition = 0x518; + constexpr std::ptrdiff_t m_iszStackName = 0x528; + constexpr std::ptrdiff_t m_iszOperatorName = 0x530; + constexpr std::ptrdiff_t m_iszOpvarName = 0x538; + constexpr std::ptrdiff_t m_iOpvarIndex = 0x540; + constexpr std::ptrdiff_t m_bUseAutoCompare = 0x544; +} + +namespace CSoundOpvarSetPointEntity { + constexpr std::ptrdiff_t m_OnEnter = 0x548; + constexpr std::ptrdiff_t m_OnExit = 0x570; + constexpr std::ptrdiff_t m_bAutoDisable = 0x598; + constexpr std::ptrdiff_t m_flDistanceMin = 0x5dc; + constexpr std::ptrdiff_t m_flDistanceMax = 0x5e0; + constexpr std::ptrdiff_t m_flDistanceMapMin = 0x5e4; + constexpr std::ptrdiff_t m_flDistanceMapMax = 0x5e8; + constexpr std::ptrdiff_t m_flOcclusionRadius = 0x5ec; + constexpr std::ptrdiff_t m_flOcclusionMin = 0x5f0; + constexpr std::ptrdiff_t m_flOcclusionMax = 0x5f4; + constexpr std::ptrdiff_t m_flValSetOnDisable = 0x5f8; + constexpr std::ptrdiff_t m_bSetValueOnDisable = 0x5fc; + constexpr std::ptrdiff_t m_nSimulationMode = 0x600; + constexpr std::ptrdiff_t m_nVisibilitySamples = 0x604; + constexpr std::ptrdiff_t m_vDynamicProxyPoint = 0x608; + constexpr std::ptrdiff_t m_flDynamicMaximumOcclusion = 0x614; + constexpr std::ptrdiff_t m_hDynamicEntity = 0x618; + constexpr std::ptrdiff_t m_iszDynamicEntityName = 0x620; + constexpr std::ptrdiff_t m_flPathingDistanceNormFactor = 0x628; + constexpr std::ptrdiff_t m_vPathingSourcePos = 0x62c; + constexpr std::ptrdiff_t m_vPathingListenerPos = 0x638; + constexpr std::ptrdiff_t m_nPathingSourceIndex = 0x644; +} + +namespace CSoundOpvarSetAABBEntity { + constexpr std::ptrdiff_t m_vDistanceInnerMins = 0x648; + constexpr std::ptrdiff_t m_vDistanceInnerMaxs = 0x654; + constexpr std::ptrdiff_t m_vDistanceOuterMins = 0x660; + constexpr std::ptrdiff_t m_vDistanceOuterMaxs = 0x66c; + constexpr std::ptrdiff_t m_nAABBDirection = 0x678; + constexpr std::ptrdiff_t m_vInnerMins = 0x67c; + constexpr std::ptrdiff_t m_vInnerMaxs = 0x688; + constexpr std::ptrdiff_t m_vOuterMins = 0x694; + constexpr std::ptrdiff_t m_vOuterMaxs = 0x6a0; +} + +namespace CSoundOpvarSetOBBEntity { +} + +namespace CSoundOpvarSetPathCornerEntity { + constexpr std::ptrdiff_t m_flDistMinSqr = 0x660; + constexpr std::ptrdiff_t m_flDistMaxSqr = 0x664; + constexpr std::ptrdiff_t m_iszPathCornerEntityName = 0x668; +} + +namespace CSoundOpvarSetOBBWindEntity { + constexpr std::ptrdiff_t m_vMins = 0x548; + constexpr std::ptrdiff_t m_vMaxs = 0x554; + constexpr std::ptrdiff_t m_vDistanceMins = 0x560; + constexpr std::ptrdiff_t m_vDistanceMaxs = 0x56c; + constexpr std::ptrdiff_t m_flWindMin = 0x578; + constexpr std::ptrdiff_t m_flWindMax = 0x57c; + constexpr std::ptrdiff_t m_flWindMapMin = 0x580; + constexpr std::ptrdiff_t m_flWindMapMax = 0x584; +} + +namespace CTakeDamageInfo { + constexpr std::ptrdiff_t m_vecDamageForce = 0x8; + constexpr std::ptrdiff_t m_vecDamagePosition = 0x14; + constexpr std::ptrdiff_t m_vecReportedPosition = 0x20; + constexpr std::ptrdiff_t m_vecDamageDirection = 0x2c; + constexpr std::ptrdiff_t m_hInflictor = 0x38; + constexpr std::ptrdiff_t m_hAttacker = 0x3c; + constexpr std::ptrdiff_t m_hAbility = 0x40; + constexpr std::ptrdiff_t m_flDamage = 0x44; + constexpr std::ptrdiff_t m_bitsDamageType = 0x48; + constexpr std::ptrdiff_t m_iDamageCustom = 0x4c; + constexpr std::ptrdiff_t m_iAmmoType = 0x50; + constexpr std::ptrdiff_t m_flOriginalDamage = 0x60; + constexpr std::ptrdiff_t m_bShouldBleed = 0x64; + constexpr std::ptrdiff_t m_bShouldSpark = 0x65; + constexpr std::ptrdiff_t m_nDamageFlags = 0x70; + constexpr std::ptrdiff_t m_nNumObjectsPenetrated = 0x74; + constexpr std::ptrdiff_t m_hScriptInstance = 0x78; + constexpr std::ptrdiff_t m_bInTakeDamageFlow = 0x98; +} + +namespace CTakeDamageResult { + constexpr std::ptrdiff_t m_nHealthLost = 0x0; + constexpr std::ptrdiff_t m_nDamageTaken = 0x4; +} + +namespace SummaryTakeDamageInfo_t { + constexpr std::ptrdiff_t nSummarisedCount = 0x0; + constexpr std::ptrdiff_t info = 0x8; + constexpr std::ptrdiff_t result = 0xa8; + constexpr std::ptrdiff_t hTarget = 0xb0; +} + +namespace CTakeDamageSummaryScopeGuard { + constexpr std::ptrdiff_t m_vecSummaries = 0x8; +} + +namespace CTeamplayRules { +} + +namespace CAttributeList { + constexpr std::ptrdiff_t m_Attributes = 0x8; + constexpr std::ptrdiff_t m_pManager = 0x58; +} + +namespace CEconItemAttribute { + constexpr std::ptrdiff_t m_iAttributeDefinitionIndex = 0x30; + constexpr std::ptrdiff_t m_flValue = 0x34; + constexpr std::ptrdiff_t m_flInitialValue = 0x38; + constexpr std::ptrdiff_t m_nRefundableCurrency = 0x3c; + constexpr std::ptrdiff_t m_bSetBonus = 0x40; +} + +namespace IEconItemInterface { +} + +namespace CAttributeManager { + constexpr std::ptrdiff_t m_Providers = 0x8; + constexpr std::ptrdiff_t m_iReapplyProvisionParity = 0x20; + constexpr std::ptrdiff_t m_hOuter = 0x24; + constexpr std::ptrdiff_t m_bPreventLoopback = 0x28; + constexpr std::ptrdiff_t m_ProviderType = 0x2c; + constexpr std::ptrdiff_t m_CachedResults = 0x30; +} + +namespace CAttributeManager::cached_attribute_float_t { + constexpr std::ptrdiff_t flIn = 0x0; + constexpr std::ptrdiff_t iAttribHook = 0x8; + constexpr std::ptrdiff_t flOut = 0x10; +} + +namespace CAttributeContainer { + constexpr std::ptrdiff_t m_Item = 0x50; +} + +namespace IHasAttributes { +} + +namespace GameAmmoTypeInfo_t { + constexpr std::ptrdiff_t m_nBuySize = 0x38; + constexpr std::ptrdiff_t m_nCost = 0x3c; +} + +namespace EntitySpottedState_t { + constexpr std::ptrdiff_t m_bSpotted = 0x8; + constexpr std::ptrdiff_t m_bSpottedByMask = 0xc; +} + +namespace SpawnPoint { + constexpr std::ptrdiff_t m_iPriority = 0x4b0; + constexpr std::ptrdiff_t m_bEnabled = 0x4b4; + constexpr std::ptrdiff_t m_nType = 0x4b8; +} + +namespace SpawnPointCoopEnemy { + constexpr std::ptrdiff_t m_szWeaponsToGive = 0x4c0; + constexpr std::ptrdiff_t m_szPlayerModelToUse = 0x4c8; + constexpr std::ptrdiff_t m_nArmorToSpawnWith = 0x4d0; + constexpr std::ptrdiff_t m_nDefaultBehavior = 0x4d4; + constexpr std::ptrdiff_t m_nBotDifficulty = 0x4d8; + constexpr std::ptrdiff_t m_bIsAgressive = 0x4dc; + constexpr std::ptrdiff_t m_bStartAsleep = 0x4dd; + constexpr std::ptrdiff_t m_flHideRadius = 0x4e0; + constexpr std::ptrdiff_t m_szBehaviorTreeFile = 0x4f0; +} + +namespace CCSGameRulesProxy { + constexpr std::ptrdiff_t m_pGameRules = 0x4b0; +} + +namespace CCSGameRules { + constexpr std::ptrdiff_t __m_pChainEntity = 0x98; + constexpr std::ptrdiff_t m_coopMissionManager = 0xc0; + constexpr std::ptrdiff_t m_bFreezePeriod = 0xc4; + constexpr std::ptrdiff_t m_bWarmupPeriod = 0xc5; + constexpr std::ptrdiff_t m_fWarmupPeriodEnd = 0xc8; + constexpr std::ptrdiff_t m_fWarmupPeriodStart = 0xcc; + constexpr std::ptrdiff_t m_nTotalPausedTicks = 0xd0; + constexpr std::ptrdiff_t m_nPauseStartTick = 0xd4; + constexpr std::ptrdiff_t m_bServerPaused = 0xd8; + constexpr std::ptrdiff_t m_bGamePaused = 0xd9; + constexpr std::ptrdiff_t m_bTerroristTimeOutActive = 0xda; + constexpr std::ptrdiff_t m_bCTTimeOutActive = 0xdb; + constexpr std::ptrdiff_t m_flTerroristTimeOutRemaining = 0xdc; + constexpr std::ptrdiff_t m_flCTTimeOutRemaining = 0xe0; + constexpr std::ptrdiff_t m_nTerroristTimeOuts = 0xe4; + constexpr std::ptrdiff_t m_nCTTimeOuts = 0xe8; + constexpr std::ptrdiff_t m_bTechnicalTimeOut = 0xec; + constexpr std::ptrdiff_t m_bMatchWaitingForResume = 0xed; + constexpr std::ptrdiff_t m_iRoundTime = 0xf0; + constexpr std::ptrdiff_t m_fMatchStartTime = 0xf4; + constexpr std::ptrdiff_t m_fRoundStartTime = 0xf8; + constexpr std::ptrdiff_t m_flRestartRoundTime = 0xfc; + constexpr std::ptrdiff_t m_bGameRestart = 0x100; + constexpr std::ptrdiff_t m_flGameStartTime = 0x104; + constexpr std::ptrdiff_t m_timeUntilNextPhaseStarts = 0x108; + constexpr std::ptrdiff_t m_gamePhase = 0x10c; + constexpr std::ptrdiff_t m_totalRoundsPlayed = 0x110; + constexpr std::ptrdiff_t m_nRoundsPlayedThisPhase = 0x114; + constexpr std::ptrdiff_t m_nOvertimePlaying = 0x118; + constexpr std::ptrdiff_t m_iHostagesRemaining = 0x11c; + constexpr std::ptrdiff_t m_bAnyHostageReached = 0x120; + constexpr std::ptrdiff_t m_bMapHasBombTarget = 0x121; + constexpr std::ptrdiff_t m_bMapHasRescueZone = 0x122; + constexpr std::ptrdiff_t m_bMapHasBuyZone = 0x123; + constexpr std::ptrdiff_t m_bIsQueuedMatchmaking = 0x124; + constexpr std::ptrdiff_t m_nQueuedMatchmakingMode = 0x128; + constexpr std::ptrdiff_t m_bIsValveDS = 0x12c; + constexpr std::ptrdiff_t m_bLogoMap = 0x12d; + constexpr std::ptrdiff_t m_bPlayAllStepSoundsOnServer = 0x12e; + constexpr std::ptrdiff_t m_iNumGunGameProgressiveWeaponsCT = 0x130; + constexpr std::ptrdiff_t m_iNumGunGameProgressiveWeaponsT = 0x134; + constexpr std::ptrdiff_t m_iSpectatorSlotCount = 0x138; + constexpr std::ptrdiff_t m_GGProgressiveWeaponOrderCT = 0x13c; + constexpr std::ptrdiff_t m_GGProgressiveWeaponOrderT = 0x22c; + constexpr std::ptrdiff_t m_GGProgressiveWeaponKillUpgradeOrderCT = 0x31c; + constexpr std::ptrdiff_t m_GGProgressiveWeaponKillUpgradeOrderT = 0x40c; + constexpr std::ptrdiff_t m_MatchDevice = 0x4fc; + constexpr std::ptrdiff_t m_bHasMatchStarted = 0x500; + constexpr std::ptrdiff_t m_nNextMapInMapgroup = 0x504; + constexpr std::ptrdiff_t m_szTournamentEventName = 0x508; + constexpr std::ptrdiff_t m_szTournamentEventStage = 0x708; + constexpr std::ptrdiff_t m_szMatchStatTxt = 0x908; + constexpr std::ptrdiff_t m_szTournamentPredictionsTxt = 0xb08; + constexpr std::ptrdiff_t m_nTournamentPredictionsPct = 0xd08; + constexpr std::ptrdiff_t m_flCMMItemDropRevealStartTime = 0xd0c; + constexpr std::ptrdiff_t m_flCMMItemDropRevealEndTime = 0xd10; + constexpr std::ptrdiff_t m_bIsDroppingItems = 0xd14; + constexpr std::ptrdiff_t m_bIsQuestEligible = 0xd15; + constexpr std::ptrdiff_t m_nGuardianModeWaveNumber = 0xd18; + constexpr std::ptrdiff_t m_nGuardianModeSpecialKillsRemaining = 0xd1c; + constexpr std::ptrdiff_t m_nGuardianModeSpecialWeaponNeeded = 0xd20; + constexpr std::ptrdiff_t m_nGuardianGrenadesToGiveBots = 0xd24; + constexpr std::ptrdiff_t m_nNumHeaviesToSpawn = 0xd28; + constexpr std::ptrdiff_t m_numGlobalGiftsGiven = 0xd2c; + constexpr std::ptrdiff_t m_numGlobalGifters = 0xd30; + constexpr std::ptrdiff_t m_numGlobalGiftsPeriodSeconds = 0xd34; + constexpr std::ptrdiff_t m_arrFeaturedGiftersAccounts = 0xd38; + constexpr std::ptrdiff_t m_arrFeaturedGiftersGifts = 0xd48; + constexpr std::ptrdiff_t m_arrProhibitedItemIndices = 0xd58; + constexpr std::ptrdiff_t m_arrTournamentActiveCasterAccounts = 0xe20; + constexpr std::ptrdiff_t m_numBestOfMaps = 0xe30; + constexpr std::ptrdiff_t m_nHalloweenMaskListSeed = 0xe34; + constexpr std::ptrdiff_t m_bBombDropped = 0xe38; + constexpr std::ptrdiff_t m_bBombPlanted = 0xe39; + constexpr std::ptrdiff_t m_iRoundWinStatus = 0xe3c; + constexpr std::ptrdiff_t m_eRoundWinReason = 0xe40; + constexpr std::ptrdiff_t m_bTCantBuy = 0xe44; + constexpr std::ptrdiff_t m_bCTCantBuy = 0xe45; + constexpr std::ptrdiff_t m_flGuardianBuyUntilTime = 0xe48; + constexpr std::ptrdiff_t m_iMatchStats_RoundResults = 0xe4c; + constexpr std::ptrdiff_t m_iMatchStats_PlayersAlive_CT = 0xec4; + constexpr std::ptrdiff_t m_iMatchStats_PlayersAlive_T = 0xf3c; + constexpr std::ptrdiff_t m_TeamRespawnWaveTimes = 0xfb4; + constexpr std::ptrdiff_t m_flNextRespawnWave = 0x1034; + constexpr std::ptrdiff_t m_nServerQuestID = 0x10b4; + constexpr std::ptrdiff_t m_vMinimapMins = 0x10b8; + constexpr std::ptrdiff_t m_vMinimapMaxs = 0x10c4; + constexpr std::ptrdiff_t m_MinimapVerticalSectionHeights = 0x10d0; + constexpr std::ptrdiff_t m_bDontIncrementCoopWave = 0x10f0; + constexpr std::ptrdiff_t m_bSpawnedTerrorHuntHeavy = 0x10f1; + constexpr std::ptrdiff_t m_nEndMatchMapGroupVoteTypes = 0x10f4; + constexpr std::ptrdiff_t m_nEndMatchMapGroupVoteOptions = 0x111c; + constexpr std::ptrdiff_t m_nEndMatchMapVoteWinner = 0x1144; + constexpr std::ptrdiff_t m_iNumConsecutiveCTLoses = 0x1148; + constexpr std::ptrdiff_t m_iNumConsecutiveTerroristLoses = 0x114c; + constexpr std::ptrdiff_t m_bHasHostageBeenTouched = 0x1168; + constexpr std::ptrdiff_t m_flIntermissionStartTime = 0x116c; + constexpr std::ptrdiff_t m_flIntermissionEndTime = 0x1170; + constexpr std::ptrdiff_t m_bLevelInitialized = 0x1174; + constexpr std::ptrdiff_t m_iTotalRoundsPlayed = 0x1178; + constexpr std::ptrdiff_t m_iUnBalancedRounds = 0x117c; + constexpr std::ptrdiff_t m_endMatchOnRoundReset = 0x1180; + constexpr std::ptrdiff_t m_endMatchOnThink = 0x1181; + constexpr std::ptrdiff_t m_iFreezeTime = 0x1184; + constexpr std::ptrdiff_t m_iNumTerrorist = 0x1188; + constexpr std::ptrdiff_t m_iNumCT = 0x118c; + constexpr std::ptrdiff_t m_iNumSpawnableTerrorist = 0x1190; + constexpr std::ptrdiff_t m_iNumSpawnableCT = 0x1194; + constexpr std::ptrdiff_t m_arrSelectedHostageSpawnIndices = 0x1198; + constexpr std::ptrdiff_t m_bFirstConnected = 0x11b0; + constexpr std::ptrdiff_t m_bCompleteReset = 0x11b1; + constexpr std::ptrdiff_t m_bPickNewTeamsOnReset = 0x11b2; + constexpr std::ptrdiff_t m_bScrambleTeamsOnRestart = 0x11b3; + constexpr std::ptrdiff_t m_bSwapTeamsOnRestart = 0x11b4; + constexpr std::ptrdiff_t m_nEndMatchTiedVotes = 0x11c0; + constexpr std::ptrdiff_t m_bNeedToAskPlayersForContinueVote = 0x11dc; + constexpr std::ptrdiff_t m_numQueuedMatchmakingAccounts = 0x11e0; + constexpr std::ptrdiff_t m_pQueuedMatchmakingReservationString = 0x11e8; + constexpr std::ptrdiff_t m_numTotalTournamentDrops = 0x11f0; + constexpr std::ptrdiff_t m_numSpectatorsCountMax = 0x11f4; + constexpr std::ptrdiff_t m_numSpectatorsCountMaxTV = 0x11f8; + constexpr std::ptrdiff_t m_numSpectatorsCountMaxLnk = 0x11fc; + constexpr std::ptrdiff_t m_bForceTeamChangeSilent = 0x1208; + constexpr std::ptrdiff_t m_bLoadingRoundBackupData = 0x1209; + constexpr std::ptrdiff_t m_nMatchInfoShowType = 0x1240; + constexpr std::ptrdiff_t m_flMatchInfoDecidedTime = 0x1244; + constexpr std::ptrdiff_t m_flCoopRespawnAndHealTime = 0x1260; + constexpr std::ptrdiff_t m_coopBonusCoinsFound = 0x1264; + constexpr std::ptrdiff_t m_coopBonusPistolsOnly = 0x1268; + constexpr std::ptrdiff_t m_coopPlayersInDeploymentZone = 0x1269; + constexpr std::ptrdiff_t m_coopMissionDeadPlayerRespawnEnabled = 0x126a; + constexpr std::ptrdiff_t mTeamDMLastWinningTeamNumber = 0x126c; + constexpr std::ptrdiff_t mTeamDMLastThinkTime = 0x1270; + constexpr std::ptrdiff_t m_flTeamDMLastAnnouncementTime = 0x1274; + constexpr std::ptrdiff_t m_iAccountTerrorist = 0x1278; + constexpr std::ptrdiff_t m_iAccountCT = 0x127c; + constexpr std::ptrdiff_t m_iSpawnPointCount_Terrorist = 0x1280; + constexpr std::ptrdiff_t m_iSpawnPointCount_CT = 0x1284; + constexpr std::ptrdiff_t m_iMaxNumTerrorists = 0x1288; + constexpr std::ptrdiff_t m_iMaxNumCTs = 0x128c; + constexpr std::ptrdiff_t m_iLoserBonus = 0x1290; + constexpr std::ptrdiff_t m_iLoserBonusMostRecentTeam = 0x1294; + constexpr std::ptrdiff_t m_tmNextPeriodicThink = 0x1298; + constexpr std::ptrdiff_t m_bVoiceWonMatchBragFired = 0x129c; + constexpr std::ptrdiff_t m_fWarmupNextChatNoticeTime = 0x12a0; + constexpr std::ptrdiff_t m_iHostagesRescued = 0x12a8; + constexpr std::ptrdiff_t m_iHostagesTouched = 0x12ac; + constexpr std::ptrdiff_t m_flNextHostageAnnouncement = 0x12b0; + constexpr std::ptrdiff_t m_bNoTerroristsKilled = 0x12b4; + constexpr std::ptrdiff_t m_bNoCTsKilled = 0x12b5; + constexpr std::ptrdiff_t m_bNoEnemiesKilled = 0x12b6; + constexpr std::ptrdiff_t m_bCanDonateWeapons = 0x12b7; + constexpr std::ptrdiff_t m_firstKillTime = 0x12bc; + constexpr std::ptrdiff_t m_firstBloodTime = 0x12c4; + constexpr std::ptrdiff_t m_hostageWasInjured = 0x12e0; + constexpr std::ptrdiff_t m_hostageWasKilled = 0x12e1; + constexpr std::ptrdiff_t m_bVoteCalled = 0x12f0; + constexpr std::ptrdiff_t m_bServerVoteOnReset = 0x12f1; + constexpr std::ptrdiff_t m_flVoteCheckThrottle = 0x12f4; + constexpr std::ptrdiff_t m_bBuyTimeEnded = 0x12f8; + constexpr std::ptrdiff_t m_nLastFreezeEndBeep = 0x12fc; + constexpr std::ptrdiff_t m_bTargetBombed = 0x1300; + constexpr std::ptrdiff_t m_bBombDefused = 0x1301; + constexpr std::ptrdiff_t m_bMapHasBombZone = 0x1302; + constexpr std::ptrdiff_t m_bGunGameRespawnWithBomb = 0x1303; + constexpr std::ptrdiff_t m_fGunGameBombRespawnTimer = 0x1304; + constexpr std::ptrdiff_t m_vecMainCTSpawnPos = 0x1324; + constexpr std::ptrdiff_t m_CTSpawnPointsMasterList = 0x1330; + constexpr std::ptrdiff_t m_TerroristSpawnPointsMasterList = 0x1348; + constexpr std::ptrdiff_t m_iNextCTSpawnPoint = 0x1360; + constexpr std::ptrdiff_t m_iNextTerroristSpawnPoint = 0x1364; + constexpr std::ptrdiff_t m_CTSpawnPoints = 0x1368; + constexpr std::ptrdiff_t m_TerroristSpawnPoints = 0x1380; + constexpr std::ptrdiff_t m_bIsUnreservedGameServer = 0x1398; + constexpr std::ptrdiff_t m_fAutobalanceDisplayTime = 0x139c; + constexpr std::ptrdiff_t m_bAllowWeaponSwitch = 0x1608; + constexpr std::ptrdiff_t m_bRoundTimeWarningTriggered = 0x1609; + constexpr std::ptrdiff_t m_phaseChangeAnnouncementTime = 0x160c; + constexpr std::ptrdiff_t m_fNextUpdateTeamClanNamesTime = 0x1610; + constexpr std::ptrdiff_t m_flLastThinkTime = 0x1614; + constexpr std::ptrdiff_t m_fAccumulatedRoundOffDamage = 0x1618; + constexpr std::ptrdiff_t m_nShorthandedBonusLastEvalRound = 0x161c; + constexpr std::ptrdiff_t m_bMatchAbortedDueToPlayerBan = 0x1898; + constexpr std::ptrdiff_t m_bHasTriggeredRoundStartMusic = 0x1899; + constexpr std::ptrdiff_t m_bHasTriggeredCoopSpawnReset = 0x189a; + constexpr std::ptrdiff_t m_bSwitchingTeamsAtRoundReset = 0x189b; + constexpr std::ptrdiff_t m_iMaxGunGameProgressiveWeaponIndex = 0x189c; + constexpr std::ptrdiff_t m_pGameModeRules = 0x18b8; + constexpr std::ptrdiff_t m_SurvivalRules = 0x18c0; + constexpr std::ptrdiff_t m_BtGlobalBlackboard = 0x3558; + constexpr std::ptrdiff_t m_hPlayerResource = 0x35c0; + constexpr std::ptrdiff_t m_RetakeRules = 0x35c8; + constexpr std::ptrdiff_t m_GuardianBotSkillLevelMax = 0x37ac; + constexpr std::ptrdiff_t m_GuardianBotSkillLevelMin = 0x37b0; + constexpr std::ptrdiff_t m_arrTeamUniqueKillWeaponsMatch = 0x37b8; + constexpr std::ptrdiff_t m_bTeamLastKillUsedUniqueWeaponMatch = 0x3818; + constexpr std::ptrdiff_t m_nMatchEndCount = 0x3840; + constexpr std::ptrdiff_t m_nTTeamIntroVariant = 0x3844; + constexpr std::ptrdiff_t m_nCTTeamIntroVariant = 0x3848; + constexpr std::ptrdiff_t m_bTeamIntroPeriod = 0x384c; + constexpr std::ptrdiff_t m_fTeamIntroPeriodEnd = 0x3850; + constexpr std::ptrdiff_t m_bPlayedTeamIntroVO = 0x3854; +} + +namespace CCSGameModeRules { + constexpr std::ptrdiff_t __m_pChainEntity = 0x8; +} + +namespace CCSGameModeRules_Noop { +} + +namespace CCSGameModeScript { +} + +namespace CCSGameModeRules_Scripted { +} + +namespace CCSGameModeRules_Deathmatch { + constexpr std::ptrdiff_t m_bFirstThink = 0x30; + constexpr std::ptrdiff_t m_bFirstThinkAfterConnected = 0x31; + constexpr std::ptrdiff_t m_flDMBonusStartTime = 0x34; + constexpr std::ptrdiff_t m_flDMBonusTimeLength = 0x38; + constexpr std::ptrdiff_t m_nDMBonusWeaponLoadoutSlot = 0x3c; +} + +namespace CRetakeGameRules { + constexpr std::ptrdiff_t m_nMatchSeed = 0xf8; + constexpr std::ptrdiff_t m_bBlockersPresent = 0xfc; + constexpr std::ptrdiff_t m_bRoundInProgress = 0xfd; + constexpr std::ptrdiff_t m_iFirstSecondHalfRound = 0x100; + constexpr std::ptrdiff_t m_iBombSite = 0x104; +} + +namespace QuestProgress { +} + +namespace CSPerRoundStats_t { + constexpr std::ptrdiff_t m_iKills = 0x30; + constexpr std::ptrdiff_t m_iDeaths = 0x34; + constexpr std::ptrdiff_t m_iAssists = 0x38; + constexpr std::ptrdiff_t m_iDamage = 0x3c; + constexpr std::ptrdiff_t m_iEquipmentValue = 0x40; + constexpr std::ptrdiff_t m_iMoneySaved = 0x44; + constexpr std::ptrdiff_t m_iKillReward = 0x48; + constexpr std::ptrdiff_t m_iLiveTime = 0x4c; + constexpr std::ptrdiff_t m_iHeadShotKills = 0x50; + constexpr std::ptrdiff_t m_iObjective = 0x54; + constexpr std::ptrdiff_t m_iCashEarned = 0x58; + constexpr std::ptrdiff_t m_iUtilityDamage = 0x5c; + constexpr std::ptrdiff_t m_iEnemiesFlashed = 0x60; +} + +namespace CSMatchStats_t { + constexpr std::ptrdiff_t m_iEnemy5Ks = 0x68; + constexpr std::ptrdiff_t m_iEnemy4Ks = 0x6c; + constexpr std::ptrdiff_t m_iEnemy3Ks = 0x70; + constexpr std::ptrdiff_t m_iEnemy2Ks = 0x74; + constexpr std::ptrdiff_t m_iUtility_Count = 0x78; + constexpr std::ptrdiff_t m_iUtility_Successes = 0x7c; + constexpr std::ptrdiff_t m_iUtility_Enemies = 0x80; + constexpr std::ptrdiff_t m_iFlash_Count = 0x84; + constexpr std::ptrdiff_t m_iFlash_Successes = 0x88; + constexpr std::ptrdiff_t m_nHealthPointsRemovedTotal = 0x8c; + constexpr std::ptrdiff_t m_nHealthPointsDealtTotal = 0x90; + constexpr std::ptrdiff_t m_nShotsFiredTotal = 0x94; + constexpr std::ptrdiff_t m_nShotsOnTargetTotal = 0x98; + constexpr std::ptrdiff_t m_i1v1Count = 0x9c; + constexpr std::ptrdiff_t m_i1v1Wins = 0xa0; + constexpr std::ptrdiff_t m_i1v2Count = 0xa4; + constexpr std::ptrdiff_t m_i1v2Wins = 0xa8; + constexpr std::ptrdiff_t m_iEntryCount = 0xac; + constexpr std::ptrdiff_t m_iEntryWins = 0xb0; +} + +namespace CCSGO_TeamPreviewCharacterPosition { + constexpr std::ptrdiff_t m_nVariant = 0x4b0; + constexpr std::ptrdiff_t m_nRandom = 0x4b4; + constexpr std::ptrdiff_t m_nOrdinal = 0x4b8; + constexpr std::ptrdiff_t m_sWeaponName = 0x4c0; + constexpr std::ptrdiff_t m_xuid = 0x4c8; + constexpr std::ptrdiff_t m_weaponItem = 0x4d0; +} + +namespace CCSGO_TeamSelectCharacterPosition { +} + +namespace CCSGO_TeamSelectTerroristPosition { +} + +namespace CCSGO_TeamSelectCounterTerroristPosition { +} + +namespace CCSGO_TeamIntroCharacterPosition { +} + +namespace CCSGO_TeamIntroTerroristPosition { +} + +namespace CCSGO_TeamIntroCounterTerroristPosition { +} + +namespace CCSGO_WingmanIntroCharacterPosition { +} + +namespace CCSGO_WingmanIntroTerroristPosition { +} + +namespace CCSGO_WingmanIntroCounterTerroristPosition { +} + +namespace CCSMinimapBoundary { +} + +namespace CCSGOPlayerAnimGraphState { +} + +namespace WeaponPurchaseCount_t { + constexpr std::ptrdiff_t m_nItemDefIndex = 0x30; + constexpr std::ptrdiff_t m_nCount = 0x32; +} + +namespace WeaponPurchaseTracker_t { + constexpr std::ptrdiff_t m_weaponPurchases = 0x8; +} + +namespace CCSPlayer_ActionTrackingServices { + constexpr std::ptrdiff_t m_hLastWeaponBeforeC4AutoSwitch = 0x230; + constexpr std::ptrdiff_t m_bIsRescuing = 0x264; + constexpr std::ptrdiff_t m_weaponPurchasesThisMatch = 0x268; + constexpr std::ptrdiff_t m_weaponPurchasesThisRound = 0x2c0; +} + +namespace CPlayerPing { + constexpr std::ptrdiff_t m_hPlayer = 0x4b8; + constexpr std::ptrdiff_t m_hPingedEntity = 0x4bc; + constexpr std::ptrdiff_t m_iType = 0x4c0; + constexpr std::ptrdiff_t m_bUrgent = 0x4c4; + constexpr std::ptrdiff_t m_szPlaceName = 0x4c5; +} + +namespace CCSPlayer_PingServices { + constexpr std::ptrdiff_t m_flPlayerPingTokens = 0x40; + constexpr std::ptrdiff_t m_hPlayerPing = 0x54; +} + +namespace CCSPlayerResource { + constexpr std::ptrdiff_t m_bHostageAlive = 0x4b0; + constexpr std::ptrdiff_t m_isHostageFollowingSomeone = 0x4bc; + constexpr std::ptrdiff_t m_iHostageEntityIDs = 0x4c8; + constexpr std::ptrdiff_t m_bombsiteCenterA = 0x4f8; + constexpr std::ptrdiff_t m_bombsiteCenterB = 0x504; + constexpr std::ptrdiff_t m_hostageRescueX = 0x510; + constexpr std::ptrdiff_t m_hostageRescueY = 0x520; + constexpr std::ptrdiff_t m_hostageRescueZ = 0x530; + constexpr std::ptrdiff_t m_bEndMatchNextMapAllVoted = 0x540; + constexpr std::ptrdiff_t m_foundGoalPositions = 0x541; +} + +namespace CCSPlayer_BulletServices { + constexpr std::ptrdiff_t m_totalHitsOnServer = 0x40; +} + +namespace SellbackPurchaseEntry_t { + constexpr std::ptrdiff_t m_unDefIdx = 0x30; + constexpr std::ptrdiff_t m_nCost = 0x34; + constexpr std::ptrdiff_t m_nPrevArmor = 0x38; + constexpr std::ptrdiff_t m_bPrevHelmet = 0x3c; + constexpr std::ptrdiff_t m_hItem = 0x40; +} + +namespace CCSPlayer_BuyServices { + constexpr std::ptrdiff_t m_vecSellbackPurchaseEntries = 0xc8; +} + +namespace CCSPlayer_CameraServices { + constexpr std::ptrdiff_t m_iFOV = 0x170; + constexpr std::ptrdiff_t m_iFOVStart = 0x174; + constexpr std::ptrdiff_t m_flFOVTime = 0x178; + constexpr std::ptrdiff_t m_flFOVRate = 0x17c; + constexpr std::ptrdiff_t m_hZoomOwner = 0x180; + constexpr std::ptrdiff_t m_hTriggerFogList = 0x188; + constexpr std::ptrdiff_t m_hLastFogTrigger = 0x1a0; +} + +namespace CCSPlayer_HostageServices { + constexpr std::ptrdiff_t m_hCarriedHostage = 0x40; + constexpr std::ptrdiff_t m_hCarriedHostageProp = 0x44; +} + +namespace CCSPlayer_ItemServices { + constexpr std::ptrdiff_t m_bHasDefuser = 0x40; + constexpr std::ptrdiff_t m_bHasHelmet = 0x41; + constexpr std::ptrdiff_t m_bHasHeavyArmor = 0x42; +} + +namespace CCSPlayer_MovementServices { + constexpr std::ptrdiff_t m_flMaxFallVelocity = 0x220; + constexpr std::ptrdiff_t m_vecLadderNormal = 0x224; + constexpr std::ptrdiff_t m_nLadderSurfacePropIndex = 0x230; + constexpr std::ptrdiff_t m_flDuckAmount = 0x234; + constexpr std::ptrdiff_t m_flDuckSpeed = 0x238; + constexpr std::ptrdiff_t m_bDuckOverride = 0x23c; + constexpr std::ptrdiff_t m_bDesiresDuck = 0x23d; + constexpr std::ptrdiff_t m_flDuckOffset = 0x240; + constexpr std::ptrdiff_t m_nDuckTimeMsecs = 0x244; + constexpr std::ptrdiff_t m_nDuckJumpTimeMsecs = 0x248; + constexpr std::ptrdiff_t m_nJumpTimeMsecs = 0x24c; + constexpr std::ptrdiff_t m_flLastDuckTime = 0x250; + constexpr std::ptrdiff_t m_vecLastPositionAtFullCrouchSpeed = 0x260; + constexpr std::ptrdiff_t m_duckUntilOnGround = 0x268; + constexpr std::ptrdiff_t m_bHasWalkMovedSinceLastJump = 0x269; + constexpr std::ptrdiff_t m_bInStuckTest = 0x26a; + constexpr std::ptrdiff_t m_flStuckCheckTime = 0x278; + constexpr std::ptrdiff_t m_nTraceCount = 0x478; + constexpr std::ptrdiff_t m_StuckLast = 0x47c; + constexpr std::ptrdiff_t m_bSpeedCropped = 0x480; + constexpr std::ptrdiff_t m_nOldWaterLevel = 0x484; + constexpr std::ptrdiff_t m_flWaterEntryTime = 0x488; + constexpr std::ptrdiff_t m_vecForward = 0x48c; + constexpr std::ptrdiff_t m_vecLeft = 0x498; + constexpr std::ptrdiff_t m_vecUp = 0x4a4; + constexpr std::ptrdiff_t m_vecPreviouslyPredictedOrigin = 0x4b0; + constexpr std::ptrdiff_t m_bMadeFootstepNoise = 0x4bc; + constexpr std::ptrdiff_t m_iFootsteps = 0x4c0; + constexpr std::ptrdiff_t m_nRoundFootstepsMade = 0x4c4; + constexpr std::ptrdiff_t m_bOldJumpPressed = 0x4c8; + constexpr std::ptrdiff_t m_flJumpPressedTime = 0x4cc; + constexpr std::ptrdiff_t m_flJumpUntil = 0x4d0; + constexpr std::ptrdiff_t m_flJumpVel = 0x4d4; + constexpr std::ptrdiff_t m_fStashGrenadeParameterWhen = 0x4d8; + constexpr std::ptrdiff_t m_nButtonDownMaskPrev = 0x4e0; + constexpr std::ptrdiff_t m_flOffsetTickCompleteTime = 0x4e8; + constexpr std::ptrdiff_t m_flOffsetTickStashedSpeed = 0x4ec; +} + +namespace CCSPlayer_ObserverServices { +} + +namespace CCSPlayer_UseServices { + constexpr std::ptrdiff_t m_hLastKnownUseEntity = 0x40; + constexpr std::ptrdiff_t m_flLastUseTimeStamp = 0x44; + constexpr std::ptrdiff_t m_flTimeStartedHoldingUse = 0x48; + constexpr std::ptrdiff_t m_flTimeLastUsedWindow = 0x4c; +} + +namespace CCSPlayer_ViewModelServices { + constexpr std::ptrdiff_t m_hViewModel = 0x40; +} + +namespace CCSPlayer_WaterServices { + constexpr std::ptrdiff_t m_NextDrownDamageTime = 0x40; + constexpr std::ptrdiff_t m_nDrownDmgRate = 0x44; + constexpr std::ptrdiff_t m_AirFinishedTime = 0x48; + constexpr std::ptrdiff_t m_flWaterJumpTime = 0x4c; + constexpr std::ptrdiff_t m_vecWaterJumpVel = 0x50; + constexpr std::ptrdiff_t m_flSwimSoundTime = 0x5c; +} + +namespace CCSPlayer_WeaponServices { + constexpr std::ptrdiff_t m_flNextAttack = 0xb0; + constexpr std::ptrdiff_t m_bIsLookingAtWeapon = 0xb4; + constexpr std::ptrdiff_t m_bIsHoldingLookAtWeapon = 0xb5; + constexpr std::ptrdiff_t m_hSavedWeapon = 0xb8; + constexpr std::ptrdiff_t m_nTimeToMelee = 0xbc; + constexpr std::ptrdiff_t m_nTimeToSecondary = 0xc0; + constexpr std::ptrdiff_t m_nTimeToPrimary = 0xc4; + constexpr std::ptrdiff_t m_nTimeToSniperRifle = 0xc8; + constexpr std::ptrdiff_t m_bIsBeingGivenItem = 0xcc; + constexpr std::ptrdiff_t m_bIsPickingUpItemWithUse = 0xcd; + constexpr std::ptrdiff_t m_bPickedUpWeapon = 0xce; +} + +namespace CSAdditionalPerRoundStats_t { + constexpr std::ptrdiff_t m_numChickensKilled = 0x0; + constexpr std::ptrdiff_t m_killsWhileBlind = 0x4; + constexpr std::ptrdiff_t m_bombCarrierkills = 0x8; + constexpr std::ptrdiff_t m_iBurnDamageInflicted = 0xc; + constexpr std::ptrdiff_t m_iDinks = 0x10; +} + +namespace CSAdditionalMatchStats_t { + constexpr std::ptrdiff_t m_numRoundsSurvived = 0x14; + constexpr std::ptrdiff_t m_maxNumRoundsSurvived = 0x18; + constexpr std::ptrdiff_t m_numRoundsSurvivedTotal = 0x1c; + constexpr std::ptrdiff_t m_iRoundsWonWithoutPurchase = 0x20; + constexpr std::ptrdiff_t m_iRoundsWonWithoutPurchaseTotal = 0x24; + constexpr std::ptrdiff_t m_numFirstKills = 0x28; + constexpr std::ptrdiff_t m_numClutchKills = 0x2c; + constexpr std::ptrdiff_t m_numPistolKills = 0x30; + constexpr std::ptrdiff_t m_numSniperKills = 0x34; +} + +namespace CCSPlayerController_ActionTrackingServices { + constexpr std::ptrdiff_t m_perRoundStats = 0x40; + constexpr std::ptrdiff_t m_matchStats = 0x90; + constexpr std::ptrdiff_t m_iNumRoundKills = 0x148; + constexpr std::ptrdiff_t m_iNumRoundKillsHeadshots = 0x14c; +} + +namespace CDamageRecord { + constexpr std::ptrdiff_t m_PlayerDamager = 0x28; + constexpr std::ptrdiff_t m_PlayerRecipient = 0x2c; + constexpr std::ptrdiff_t m_hPlayerControllerDamager = 0x30; + constexpr std::ptrdiff_t m_hPlayerControllerRecipient = 0x34; + constexpr std::ptrdiff_t m_szPlayerDamagerName = 0x38; + constexpr std::ptrdiff_t m_szPlayerRecipientName = 0x40; + constexpr std::ptrdiff_t m_DamagerXuid = 0x48; + constexpr std::ptrdiff_t m_RecipientXuid = 0x50; + constexpr std::ptrdiff_t m_iDamage = 0x58; + constexpr std::ptrdiff_t m_iActualHealthRemoved = 0x5c; + constexpr std::ptrdiff_t m_iNumHits = 0x60; + constexpr std::ptrdiff_t m_iLastBulletUpdate = 0x64; + constexpr std::ptrdiff_t m_bIsOtherEnemy = 0x68; + constexpr std::ptrdiff_t m_killType = 0x69; +} + +namespace CCSPlayerController_DamageServices { + constexpr std::ptrdiff_t m_nSendUpdate = 0x40; + constexpr std::ptrdiff_t m_DamageList = 0x48; +} + +namespace CCSPlayerController_InGameMoneyServices { + constexpr std::ptrdiff_t m_bReceivesMoneyNextRound = 0x40; + constexpr std::ptrdiff_t m_iAccountMoneyEarnedForNextRound = 0x44; + constexpr std::ptrdiff_t m_iAccount = 0x48; + constexpr std::ptrdiff_t m_iStartAccount = 0x4c; + constexpr std::ptrdiff_t m_iTotalCashSpent = 0x50; + constexpr std::ptrdiff_t m_iCashSpentThisRound = 0x54; +} + +namespace CCSPlayerController_InventoryServices { + constexpr std::ptrdiff_t m_unMusicID = 0x40; + constexpr std::ptrdiff_t m_rank = 0x44; + constexpr std::ptrdiff_t m_nPersonaDataPublicLevel = 0x5c; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsLeader = 0x60; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsTeacher = 0x64; + constexpr std::ptrdiff_t m_nPersonaDataPublicCommendsFriendly = 0x68; + constexpr std::ptrdiff_t m_unEquippedPlayerSprayIDs = 0xf48; + constexpr std::ptrdiff_t m_vecTerroristLoadoutCache = 0xf50; + constexpr std::ptrdiff_t m_vecCounterTerroristLoadoutCache = 0xfa0; +} + +namespace CSurvivalGameRules { + constexpr std::ptrdiff_t m_bBoundsInitialized = 0x8; + constexpr std::ptrdiff_t m_vecPlayAreaMins = 0xc; + constexpr std::ptrdiff_t m_vecPlayAreaMaxs = 0x18; + constexpr std::ptrdiff_t m_iPlayerSpawnHexIndices = 0x24; + constexpr std::ptrdiff_t m_SpawnTileState = 0x124; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeStartCurrentStage = 0x204; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeEndCurrentStage = 0x208; + constexpr std::ptrdiff_t m_flSpawnSelectionTimeEndLastStage = 0x20c; + constexpr std::ptrdiff_t m_spawnStage = 0x210; + constexpr std::ptrdiff_t m_flTabletHexOriginX = 0x214; + constexpr std::ptrdiff_t m_flTabletHexOriginY = 0x218; + constexpr std::ptrdiff_t m_flTabletHexSize = 0x21c; + constexpr std::ptrdiff_t m_roundData_playerXuids = 0x220; + constexpr std::ptrdiff_t m_roundData_playerPositions = 0x420; + constexpr std::ptrdiff_t m_roundData_playerTeams = 0x520; + constexpr std::ptrdiff_t m_SurvivalGameRuleDecisionTypes = 0x620; + constexpr std::ptrdiff_t m_SurvivalGameRuleDecisionValues = 0x660; + constexpr std::ptrdiff_t m_flSurvivalStartTime = 0x6a0; + constexpr std::ptrdiff_t m_flLastThinkTime = 0x6a4; + constexpr std::ptrdiff_t m_nBlockedTileIndices = 0x6a8; + constexpr std::ptrdiff_t m_vecPlayerSpawnLocations = 0x790; + constexpr std::ptrdiff_t m_bWaitingForMoreThanOnePlayer = 0x7a8; + constexpr std::ptrdiff_t m_bSurvivalEventFired_FadeEveryoneOutFromMapSelection = 0x7a9; + constexpr std::ptrdiff_t m_bSurvivalEventFired_TimeForSmokeBeacons = 0x7aa; + constexpr std::ptrdiff_t m_bSurvivalEventFired_FirstParadropIncoming = 0x7ab; + constexpr std::ptrdiff_t m_bSurvivalEventFired_WarnedEveryoneAboutRespawnEnding = 0x7ac; + constexpr std::ptrdiff_t m_flLastWinConditionDetectedTime = 0x7b0; + constexpr std::ptrdiff_t m_nWinConditionStageProgress = 0x7b4; + constexpr std::ptrdiff_t m_nEntIndexOfRunnerUpPlayer = 0x7b8; + constexpr std::ptrdiff_t m_nEntIndexOfKilledPlayerCheckingWinConditions = 0x7bc; + constexpr std::ptrdiff_t m_flTimeOfLastParadrop = 0x7c0; + constexpr std::ptrdiff_t m_bSurvivalEventFired_PlayedWinnerSurrenderAnim = 0x7f8; + constexpr std::ptrdiff_t m_hWinnerPlayer = 0x7fc; + constexpr std::ptrdiff_t m_vecLoadedOutPlayers = 0x800; + constexpr std::ptrdiff_t m_vecRespawnedPlayers = 0x818; + constexpr std::ptrdiff_t m_vecMetalCrates = 0x830; + constexpr std::ptrdiff_t m_flLastDroneSpawnTime = 0x848; + constexpr std::ptrdiff_t m_hSpawnChopper = 0x868; +} + +namespace CDangerZoneController { + constexpr std::ptrdiff_t m_bDangerZoneControllerEnabled = 0x4b0; + constexpr std::ptrdiff_t m_bMissionControlledExplosions = 0x4b1; + constexpr std::ptrdiff_t m_vecEndGameCircleStart = 0x4b4; + constexpr std::ptrdiff_t m_vecEndGameCircleEnd = 0x4c0; + constexpr std::ptrdiff_t m_flStartTime = 0x4cc; + constexpr std::ptrdiff_t m_flFinalExpansionTime = 0x4d0; + constexpr std::ptrdiff_t m_DangerZones = 0x4d4; + constexpr std::ptrdiff_t m_flWaveEndTimes = 0x57c; + constexpr std::ptrdiff_t m_hTheFinalZone = 0x590; + constexpr std::ptrdiff_t m_flLastDangerZoneStatusLogged = 0x594; + constexpr std::ptrdiff_t m_flLastDangerZoneDamageTime = 0x598; + constexpr std::ptrdiff_t m_bFirstBombWarning = 0x59c; + constexpr std::ptrdiff_t m_numWaveRewardsGranted = 0x5a0; + constexpr std::ptrdiff_t m_pGasCanLaunchers = 0x5a8; +} + +namespace CFiringModeFloat { + constexpr std::ptrdiff_t m_flValues = 0x0; +} + +namespace CFiringModeInt { + constexpr std::ptrdiff_t m_nValues = 0x0; +} + +namespace CIronSightController { + constexpr std::ptrdiff_t m_bIronSightAvailable = 0x8; + constexpr std::ptrdiff_t m_flIronSightAmount = 0xc; + constexpr std::ptrdiff_t m_flIronSightAmountGained = 0x10; + constexpr std::ptrdiff_t m_flIronSightAmountBiased = 0x14; +} + +namespace CPointDZParadropDenialRegion { + constexpr std::ptrdiff_t m_flRadius = 0x4b8; +} + +namespace CHintMessage { + constexpr std::ptrdiff_t m_hintString = 0x8; + constexpr std::ptrdiff_t m_args = 0x10; + constexpr std::ptrdiff_t m_duration = 0x28; +} + +namespace CHintMessageQueue { + constexpr std::ptrdiff_t m_tmMessageEnd = 0x8; + constexpr std::ptrdiff_t m_messages = 0x10; + constexpr std::ptrdiff_t m_pPlayerController = 0x28; +} + +namespace CCSPlayer_DamageReactServices { +} + +namespace CCSPlayer_ParachuteServices { +} + +namespace CCSPlayer_RadioServices { + constexpr std::ptrdiff_t m_flGotHostageTalkTimer = 0x40; + constexpr std::ptrdiff_t m_flDefusingTalkTimer = 0x44; + constexpr std::ptrdiff_t m_flC4PlantTalkTimer = 0x48; + constexpr std::ptrdiff_t m_flRadioTokenSlots = 0x4c; + constexpr std::ptrdiff_t m_bIgnoreRadio = 0x58; +} + +namespace CBaseIssue { + constexpr std::ptrdiff_t m_szTypeString = 0x20; + constexpr std::ptrdiff_t m_szDetailsString = 0x60; + constexpr std::ptrdiff_t m_iNumYesVotes = 0x164; + constexpr std::ptrdiff_t m_iNumNoVotes = 0x168; + constexpr std::ptrdiff_t m_iNumPotentialVotes = 0x16c; + constexpr std::ptrdiff_t m_pVoteController = 0x170; +} + +namespace CVoteController { + constexpr std::ptrdiff_t m_iActiveIssueIndex = 0x4b0; + constexpr std::ptrdiff_t m_iOnlyTeamToVote = 0x4b4; + constexpr std::ptrdiff_t m_nVoteOptionCount = 0x4b8; + constexpr std::ptrdiff_t m_nPotentialVotes = 0x4cc; + constexpr std::ptrdiff_t m_bIsYesNoVote = 0x4d0; + constexpr std::ptrdiff_t m_acceptingVotesTimer = 0x4d8; + constexpr std::ptrdiff_t m_executeCommandTimer = 0x4f0; + constexpr std::ptrdiff_t m_resetVoteTimer = 0x508; + constexpr std::ptrdiff_t m_arrVotedUsers = 0x520; + constexpr std::ptrdiff_t m_nVotesCast = 0x538; + constexpr std::ptrdiff_t m_playerHoldingVote = 0x638; + constexpr std::ptrdiff_t m_playerOverrideForVote = 0x63c; + constexpr std::ptrdiff_t m_nHighestCountIndex = 0x640; + constexpr std::ptrdiff_t m_potentialIssues = 0x648; + constexpr std::ptrdiff_t m_VoteOptions = 0x660; +} + +namespace CMapVetoPickController { + constexpr std::ptrdiff_t m_bPlayedIntroVcd = 0x4b0; + constexpr std::ptrdiff_t m_bNeedToPlayFiveSecondsRemaining = 0x4b1; + constexpr std::ptrdiff_t m_dblPreMatchDraftSequenceTime = 0x4d0; + constexpr std::ptrdiff_t m_bPreMatchDraftStateChanged = 0x4d8; + constexpr std::ptrdiff_t m_nDraftType = 0x4dc; + constexpr std::ptrdiff_t m_nTeamWinningCoinToss = 0x4e0; + constexpr std::ptrdiff_t m_nTeamWithFirstChoice = 0x4e4; + constexpr std::ptrdiff_t m_nVoteMapIdsList = 0x5e4; + constexpr std::ptrdiff_t m_nAccountIDs = 0x600; + constexpr std::ptrdiff_t m_nMapId0 = 0x700; + constexpr std::ptrdiff_t m_nMapId1 = 0x800; + constexpr std::ptrdiff_t m_nMapId2 = 0x900; + constexpr std::ptrdiff_t m_nMapId3 = 0xa00; + constexpr std::ptrdiff_t m_nMapId4 = 0xb00; + constexpr std::ptrdiff_t m_nMapId5 = 0xc00; + constexpr std::ptrdiff_t m_nStartingSide0 = 0xd00; + constexpr std::ptrdiff_t m_nCurrentPhase = 0xe00; + constexpr std::ptrdiff_t m_nPhaseStartTick = 0xe04; + constexpr std::ptrdiff_t m_nPhaseDurationTicks = 0xe08; + constexpr std::ptrdiff_t m_OnMapVetoed = 0xe10; + constexpr std::ptrdiff_t m_OnMapPicked = 0xe38; + constexpr std::ptrdiff_t m_OnSidesPicked = 0xe60; + constexpr std::ptrdiff_t m_OnNewPhaseStarted = 0xe88; + constexpr std::ptrdiff_t m_OnLevelTransition = 0xeb0; +} + +namespace CCSPulseServerFuncs_Globals { +} + +namespace CPointDZItemSpawn { +} + +namespace CPointDZWeaponSpawn { + constexpr std::ptrdiff_t m_nGroupID = 0x4c0; + constexpr std::ptrdiff_t m_flDefaultWeight = 0x4c4; + constexpr std::ptrdiff_t m_flCurrentWeight = 0x4c8; + constexpr std::ptrdiff_t m_hItem = 0x4cc; + constexpr std::ptrdiff_t m_iszDoorName = 0x4d0; + constexpr std::ptrdiff_t m_hDoor = 0x4d8; + constexpr std::ptrdiff_t m_nPrice = 0x4dc; +} + +namespace CPointDZItemSpawnGroup { + constexpr std::ptrdiff_t m_flRadius = 0x4b0; +} + +namespace CPointDZWeaponSpawnGroup { +} + +namespace CPointDZDroneGunSpawn { + constexpr std::ptrdiff_t m_bSpawnAutomatically = 0x4b8; +} + +namespace CPointDZParachuteSpawn { +} + +namespace CLogicEventListener { + constexpr std::ptrdiff_t m_iszEventName = 0x4c0; + constexpr std::ptrdiff_t m_bIsEnabled = 0x4c8; + constexpr std::ptrdiff_t m_nTeam = 0x4cc; + constexpr std::ptrdiff_t m_bFetchEventData = 0x4d0; + constexpr std::ptrdiff_t m_OnEventFired = 0x4d8; +} + +namespace CBot { + constexpr std::ptrdiff_t m_pPlayer = 0x10; + constexpr std::ptrdiff_t m_bHasSpawned = 0x18; + constexpr std::ptrdiff_t m_id = 0x1c; + constexpr std::ptrdiff_t m_isRunning = 0x90; + constexpr std::ptrdiff_t m_isCrouching = 0x91; + constexpr std::ptrdiff_t m_forwardSpeed = 0x94; + constexpr std::ptrdiff_t m_leftSpeed = 0x98; + constexpr std::ptrdiff_t m_verticalSpeed = 0x9c; + constexpr std::ptrdiff_t m_buttonFlags = 0xa0; + constexpr std::ptrdiff_t m_jumpTimestamp = 0xa8; + constexpr std::ptrdiff_t m_viewForward = 0xac; + constexpr std::ptrdiff_t m_postureStackIndex = 0xc8; +} + +namespace CBtNode { +} + +namespace CBtNodeDecorator { +} + +namespace CBtNodeComposite { +} + +namespace CBtActionAim { + constexpr std::ptrdiff_t m_szSensorInputKey = 0x68; + constexpr std::ptrdiff_t m_szAimReadyKey = 0x80; + constexpr std::ptrdiff_t m_flZoomCooldownTimestamp = 0x88; + constexpr std::ptrdiff_t m_bDoneAiming = 0x8c; + constexpr std::ptrdiff_t m_flLerpStartTime = 0x90; + constexpr std::ptrdiff_t m_flNextLookTargetLerpTime = 0x94; + constexpr std::ptrdiff_t m_flPenaltyReductionRatio = 0x98; + constexpr std::ptrdiff_t m_NextLookTarget = 0x9c; + constexpr std::ptrdiff_t m_AimTimer = 0xa8; + constexpr std::ptrdiff_t m_SniperHoldTimer = 0xc0; + constexpr std::ptrdiff_t m_FocusIntervalTimer = 0xd8; + constexpr std::ptrdiff_t m_bAcquired = 0xf0; +} + +namespace CBtActionCombatPositioning { + constexpr std::ptrdiff_t m_szSensorInputKey = 0x68; + constexpr std::ptrdiff_t m_szIsAttackingKey = 0x80; + constexpr std::ptrdiff_t m_ActionTimer = 0x88; + constexpr std::ptrdiff_t m_bCrouching = 0xa0; +} + +namespace CBtActionMoveTo { + constexpr std::ptrdiff_t m_szDestinationInputKey = 0x60; + constexpr std::ptrdiff_t m_szHidingSpotInputKey = 0x68; + constexpr std::ptrdiff_t m_szThreatInputKey = 0x70; + constexpr std::ptrdiff_t m_vecDestination = 0x78; + constexpr std::ptrdiff_t m_bAutoLookAdjust = 0x84; + constexpr std::ptrdiff_t m_bComputePath = 0x85; + constexpr std::ptrdiff_t m_flDamagingAreasPenaltyCost = 0x88; + constexpr std::ptrdiff_t m_CheckApproximateCornersTimer = 0x90; + constexpr std::ptrdiff_t m_CheckHighPriorityItem = 0xa8; + constexpr std::ptrdiff_t m_RepathTimer = 0xc0; + constexpr std::ptrdiff_t m_flArrivalEpsilon = 0xd8; + constexpr std::ptrdiff_t m_flAdditionalArrivalEpsilon2D = 0xdc; + constexpr std::ptrdiff_t m_flHidingSpotCheckDistanceThreshold = 0xe0; + constexpr std::ptrdiff_t m_flNearestAreaDistanceThreshold = 0xe4; +} + +namespace CBtActionParachutePositioning { + constexpr std::ptrdiff_t m_ActionTimer = 0x58; +} + +namespace CBtNodeCondition { + constexpr std::ptrdiff_t m_bNegated = 0x58; +} + +namespace CBtNodeConditionInactive { + constexpr std::ptrdiff_t m_flRoundStartThresholdSeconds = 0x78; + constexpr std::ptrdiff_t m_flSensorInactivityThresholdSeconds = 0x7c; + constexpr std::ptrdiff_t m_SensorInactivityTimer = 0x80; +} + +namespace CPointEntity { +} + +namespace CEnvCombinedLightProbeVolume { + constexpr std::ptrdiff_t m_Color = 0x1580; + constexpr std::ptrdiff_t m_flBrightness = 0x1584; + constexpr std::ptrdiff_t m_hCubemapTexture = 0x1588; + constexpr std::ptrdiff_t m_bCustomCubemapTexture = 0x1590; + constexpr std::ptrdiff_t m_hLightProbeTexture = 0x1598; + constexpr std::ptrdiff_t m_hLightProbeDirectLightIndicesTexture = 0x15a0; + constexpr std::ptrdiff_t m_hLightProbeDirectLightScalarsTexture = 0x15a8; + constexpr std::ptrdiff_t m_hLightProbeDirectLightShadowsTexture = 0x15b0; + constexpr std::ptrdiff_t m_vBoxMins = 0x15b8; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x15c4; + constexpr std::ptrdiff_t m_LightGroups = 0x15d0; + constexpr std::ptrdiff_t m_bMoveable = 0x15d8; + constexpr std::ptrdiff_t m_nHandshake = 0x15dc; + constexpr std::ptrdiff_t m_nEnvCubeMapArrayIndex = 0x15e0; + constexpr std::ptrdiff_t m_nPriority = 0x15e4; + constexpr std::ptrdiff_t m_bStartDisabled = 0x15e8; + constexpr std::ptrdiff_t m_flEdgeFadeDist = 0x15ec; + constexpr std::ptrdiff_t m_vEdgeFadeDists = 0x15f0; + constexpr std::ptrdiff_t m_nLightProbeSizeX = 0x15fc; + constexpr std::ptrdiff_t m_nLightProbeSizeY = 0x1600; + constexpr std::ptrdiff_t m_nLightProbeSizeZ = 0x1604; + constexpr std::ptrdiff_t m_nLightProbeAtlasX = 0x1608; + constexpr std::ptrdiff_t m_nLightProbeAtlasY = 0x160c; + constexpr std::ptrdiff_t m_nLightProbeAtlasZ = 0x1610; + constexpr std::ptrdiff_t m_bEnabled = 0x1629; +} + +namespace CEnvCubemap { + constexpr std::ptrdiff_t m_hCubemapTexture = 0x5a0; + constexpr std::ptrdiff_t m_bCustomCubemapTexture = 0x5a8; + constexpr std::ptrdiff_t m_flInfluenceRadius = 0x5ac; + constexpr std::ptrdiff_t m_vBoxProjectMins = 0x5b0; + constexpr std::ptrdiff_t m_vBoxProjectMaxs = 0x5bc; + constexpr std::ptrdiff_t m_LightGroups = 0x5c8; + constexpr std::ptrdiff_t m_bMoveable = 0x5d0; + constexpr std::ptrdiff_t m_nHandshake = 0x5d4; + constexpr std::ptrdiff_t m_nEnvCubeMapArrayIndex = 0x5d8; + constexpr std::ptrdiff_t m_nPriority = 0x5dc; + constexpr std::ptrdiff_t m_flEdgeFadeDist = 0x5e0; + constexpr std::ptrdiff_t m_vEdgeFadeDists = 0x5e4; + constexpr std::ptrdiff_t m_flDiffuseScale = 0x5f0; + constexpr std::ptrdiff_t m_bStartDisabled = 0x5f4; + constexpr std::ptrdiff_t m_bDefaultEnvMap = 0x5f5; + constexpr std::ptrdiff_t m_bDefaultSpecEnvMap = 0x5f6; + constexpr std::ptrdiff_t m_bIndoorCubeMap = 0x5f7; + constexpr std::ptrdiff_t m_bCopyDiffuseFromDefaultCubemap = 0x5f8; + constexpr std::ptrdiff_t m_bEnabled = 0x608; +} + +namespace CEnvCubemapBox { +} + +namespace CEnvCubemapFog { + constexpr std::ptrdiff_t m_flEndDistance = 0x4b0; + constexpr std::ptrdiff_t m_flStartDistance = 0x4b4; + constexpr std::ptrdiff_t m_flFogFalloffExponent = 0x4b8; + constexpr std::ptrdiff_t m_bHeightFogEnabled = 0x4bc; + constexpr std::ptrdiff_t m_flFogHeightWidth = 0x4c0; + constexpr std::ptrdiff_t m_flFogHeightEnd = 0x4c4; + constexpr std::ptrdiff_t m_flFogHeightStart = 0x4c8; + constexpr std::ptrdiff_t m_flFogHeightExponent = 0x4cc; + constexpr std::ptrdiff_t m_flLODBias = 0x4d0; + constexpr std::ptrdiff_t m_bActive = 0x4d4; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4d5; + constexpr std::ptrdiff_t m_flFogMaxOpacity = 0x4d8; + constexpr std::ptrdiff_t m_nCubemapSourceType = 0x4dc; + constexpr std::ptrdiff_t m_hSkyMaterial = 0x4e0; + constexpr std::ptrdiff_t m_iszSkyEntity = 0x4e8; + constexpr std::ptrdiff_t m_hFogCubemapTexture = 0x4f0; + constexpr std::ptrdiff_t m_bHasHeightFogEnd = 0x4f8; + constexpr std::ptrdiff_t m_bFirstTime = 0x4f9; +} + +namespace CGradientFog { + constexpr std::ptrdiff_t m_hGradientFogTexture = 0x4b0; + constexpr std::ptrdiff_t m_flFogStartDistance = 0x4b8; + constexpr std::ptrdiff_t m_flFogEndDistance = 0x4bc; + constexpr std::ptrdiff_t m_bHeightFogEnabled = 0x4c0; + constexpr std::ptrdiff_t m_flFogStartHeight = 0x4c4; + constexpr std::ptrdiff_t m_flFogEndHeight = 0x4c8; + constexpr std::ptrdiff_t m_flFarZ = 0x4cc; + constexpr std::ptrdiff_t m_flFogMaxOpacity = 0x4d0; + constexpr std::ptrdiff_t m_flFogFalloffExponent = 0x4d4; + constexpr std::ptrdiff_t m_flFogVerticalExponent = 0x4d8; + constexpr std::ptrdiff_t m_fogColor = 0x4dc; + constexpr std::ptrdiff_t m_flFogStrength = 0x4e0; + constexpr std::ptrdiff_t m_flFadeTime = 0x4e4; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4e8; + constexpr std::ptrdiff_t m_bIsEnabled = 0x4e9; + constexpr std::ptrdiff_t m_bGradientFogNeedsTextures = 0x4ea; +} + +namespace CEnvLightProbeVolume { + constexpr std::ptrdiff_t m_hLightProbeTexture = 0x1490; + constexpr std::ptrdiff_t m_hLightProbeDirectLightIndicesTexture = 0x1498; + constexpr std::ptrdiff_t m_hLightProbeDirectLightScalarsTexture = 0x14a0; + constexpr std::ptrdiff_t m_hLightProbeDirectLightShadowsTexture = 0x14a8; + constexpr std::ptrdiff_t m_vBoxMins = 0x14b0; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x14bc; + constexpr std::ptrdiff_t m_LightGroups = 0x14c8; + constexpr std::ptrdiff_t m_bMoveable = 0x14d0; + constexpr std::ptrdiff_t m_nHandshake = 0x14d4; + constexpr std::ptrdiff_t m_nPriority = 0x14d8; + constexpr std::ptrdiff_t m_bStartDisabled = 0x14dc; + constexpr std::ptrdiff_t m_nLightProbeSizeX = 0x14e0; + constexpr std::ptrdiff_t m_nLightProbeSizeY = 0x14e4; + constexpr std::ptrdiff_t m_nLightProbeSizeZ = 0x14e8; + constexpr std::ptrdiff_t m_nLightProbeAtlasX = 0x14ec; + constexpr std::ptrdiff_t m_nLightProbeAtlasY = 0x14f0; + constexpr std::ptrdiff_t m_nLightProbeAtlasZ = 0x14f4; + constexpr std::ptrdiff_t m_bEnabled = 0x1501; +} + +namespace CPlayerVisibility { + constexpr std::ptrdiff_t m_flVisibilityStrength = 0x4b0; + constexpr std::ptrdiff_t m_flFogDistanceMultiplier = 0x4b4; + constexpr std::ptrdiff_t m_flFogMaxDensityMultiplier = 0x4b8; + constexpr std::ptrdiff_t m_flFadeTime = 0x4bc; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4c0; + constexpr std::ptrdiff_t m_bIsEnabled = 0x4c1; +} + +namespace CTonemapController2 { + constexpr std::ptrdiff_t m_flAutoExposureMin = 0x4b0; + constexpr std::ptrdiff_t m_flAutoExposureMax = 0x4b4; + constexpr std::ptrdiff_t m_flTonemapPercentTarget = 0x4b8; + constexpr std::ptrdiff_t m_flTonemapPercentBrightPixels = 0x4bc; + constexpr std::ptrdiff_t m_flTonemapMinAvgLum = 0x4c0; + constexpr std::ptrdiff_t m_flExposureAdaptationSpeedUp = 0x4c4; + constexpr std::ptrdiff_t m_flExposureAdaptationSpeedDown = 0x4c8; + constexpr std::ptrdiff_t m_flTonemapEVSmoothingRange = 0x4cc; +} + +namespace CEnvVolumetricFogController { + constexpr std::ptrdiff_t m_flScattering = 0x4b0; + constexpr std::ptrdiff_t m_flAnisotropy = 0x4b4; + constexpr std::ptrdiff_t m_flFadeSpeed = 0x4b8; + constexpr std::ptrdiff_t m_flDrawDistance = 0x4bc; + constexpr std::ptrdiff_t m_flFadeInStart = 0x4c0; + constexpr std::ptrdiff_t m_flFadeInEnd = 0x4c4; + constexpr std::ptrdiff_t m_flIndirectStrength = 0x4c8; + constexpr std::ptrdiff_t m_nIndirectTextureDimX = 0x4cc; + constexpr std::ptrdiff_t m_nIndirectTextureDimY = 0x4d0; + constexpr std::ptrdiff_t m_nIndirectTextureDimZ = 0x4d4; + constexpr std::ptrdiff_t m_vBoxMins = 0x4d8; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x4e4; + constexpr std::ptrdiff_t m_bActive = 0x4f0; + constexpr std::ptrdiff_t m_flStartAnisoTime = 0x4f4; + constexpr std::ptrdiff_t m_flStartScatterTime = 0x4f8; + constexpr std::ptrdiff_t m_flStartDrawDistanceTime = 0x4fc; + constexpr std::ptrdiff_t m_flStartAnisotropy = 0x500; + constexpr std::ptrdiff_t m_flStartScattering = 0x504; + constexpr std::ptrdiff_t m_flStartDrawDistance = 0x508; + constexpr std::ptrdiff_t m_flDefaultAnisotropy = 0x50c; + constexpr std::ptrdiff_t m_flDefaultScattering = 0x510; + constexpr std::ptrdiff_t m_flDefaultDrawDistance = 0x514; + constexpr std::ptrdiff_t m_bStartDisabled = 0x518; + constexpr std::ptrdiff_t m_bEnableIndirect = 0x519; + constexpr std::ptrdiff_t m_bIsMaster = 0x51a; + constexpr std::ptrdiff_t m_hFogIndirectTexture = 0x520; + constexpr std::ptrdiff_t m_nForceRefreshCount = 0x528; + constexpr std::ptrdiff_t m_bFirstTime = 0x52c; +} + +namespace CEnvVolumetricFogVolume { + constexpr std::ptrdiff_t m_bActive = 0x4b0; + constexpr std::ptrdiff_t m_vBoxMins = 0x4b4; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x4c0; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4cc; + constexpr std::ptrdiff_t m_flStrength = 0x4d0; + constexpr std::ptrdiff_t m_nFalloffShape = 0x4d4; + constexpr std::ptrdiff_t m_flFalloffExponent = 0x4d8; +} + +namespace CFogController { + constexpr std::ptrdiff_t m_fog = 0x4b0; + constexpr std::ptrdiff_t m_bUseAngles = 0x518; + constexpr std::ptrdiff_t m_iChangedVariables = 0x51c; +} + +namespace CInfoTarget { +} + +namespace CInfoTargetServerOnly { +} + +namespace CInfoParticleTarget { +} + +namespace CInfoVisibilityBox { + constexpr std::ptrdiff_t m_nMode = 0x4b4; + constexpr std::ptrdiff_t m_vBoxSize = 0x4b8; + constexpr std::ptrdiff_t m_bEnabled = 0x4c4; +} + +namespace CInfoWorldLayer { + constexpr std::ptrdiff_t m_pOutputOnEntitiesSpawned = 0x4b0; + constexpr std::ptrdiff_t m_worldName = 0x4d8; + constexpr std::ptrdiff_t m_layerName = 0x4e0; + constexpr std::ptrdiff_t m_bWorldLayerVisible = 0x4e8; + constexpr std::ptrdiff_t m_bEntitiesSpawned = 0x4e9; + constexpr std::ptrdiff_t m_bCreateAsChildSpawnGroup = 0x4ea; + constexpr std::ptrdiff_t m_hLayerSpawnGroup = 0x4ec; +} + +namespace CMultiLightProxy { + constexpr std::ptrdiff_t m_iszLightNameFilter = 0x4b0; + constexpr std::ptrdiff_t m_iszLightClassFilter = 0x4b8; + constexpr std::ptrdiff_t m_flLightRadiusFilter = 0x4c0; + constexpr std::ptrdiff_t m_flBrightnessDelta = 0x4c4; + constexpr std::ptrdiff_t m_bPerformScreenFade = 0x4c8; + constexpr std::ptrdiff_t m_flTargetBrightnessMultiplier = 0x4cc; + constexpr std::ptrdiff_t m_flCurrentBrightnessMultiplier = 0x4d0; + constexpr std::ptrdiff_t m_vecLights = 0x4d8; +} + +namespace CPointCamera { + constexpr std::ptrdiff_t m_FOV = 0x4b0; + constexpr std::ptrdiff_t m_Resolution = 0x4b4; + constexpr std::ptrdiff_t m_bFogEnable = 0x4b8; + constexpr std::ptrdiff_t m_FogColor = 0x4b9; + constexpr std::ptrdiff_t m_flFogStart = 0x4c0; + constexpr std::ptrdiff_t m_flFogEnd = 0x4c4; + constexpr std::ptrdiff_t m_flFogMaxDensity = 0x4c8; + constexpr std::ptrdiff_t m_bActive = 0x4cc; + constexpr std::ptrdiff_t m_bUseScreenAspectRatio = 0x4cd; + constexpr std::ptrdiff_t m_flAspectRatio = 0x4d0; + constexpr std::ptrdiff_t m_bNoSky = 0x4d4; + constexpr std::ptrdiff_t m_fBrightness = 0x4d8; + constexpr std::ptrdiff_t m_flZFar = 0x4dc; + constexpr std::ptrdiff_t m_flZNear = 0x4e0; + constexpr std::ptrdiff_t m_bDofEnabled = 0x4e4; + constexpr std::ptrdiff_t m_flDofNearBlurry = 0x4e8; + constexpr std::ptrdiff_t m_flDofNearCrisp = 0x4ec; + constexpr std::ptrdiff_t m_flDofFarCrisp = 0x4f0; + constexpr std::ptrdiff_t m_flDofFarBlurry = 0x4f4; + constexpr std::ptrdiff_t m_flDofTiltToGround = 0x4f8; + constexpr std::ptrdiff_t m_TargetFOV = 0x4fc; + constexpr std::ptrdiff_t m_DegreesPerSecond = 0x500; + constexpr std::ptrdiff_t m_bIsOn = 0x504; + constexpr std::ptrdiff_t m_pNext = 0x508; +} + +namespace CPointCameraVFOV { + constexpr std::ptrdiff_t m_flVerticalFOV = 0x510; +} + +namespace CPointTemplate { + constexpr std::ptrdiff_t m_iszWorldName = 0x4b0; + constexpr std::ptrdiff_t m_iszSource2EntityLumpName = 0x4b8; + constexpr std::ptrdiff_t m_iszEntityFilterName = 0x4c0; + constexpr std::ptrdiff_t m_flTimeoutInterval = 0x4c8; + constexpr std::ptrdiff_t m_bAsynchronouslySpawnEntities = 0x4cc; + constexpr std::ptrdiff_t m_pOutputOnSpawned = 0x4d0; + constexpr std::ptrdiff_t m_clientOnlyEntityBehavior = 0x4f8; + constexpr std::ptrdiff_t m_ownerSpawnGroupType = 0x4fc; + constexpr std::ptrdiff_t m_createdSpawnGroupHandles = 0x500; + constexpr std::ptrdiff_t m_SpawnedEntityHandles = 0x518; + constexpr std::ptrdiff_t m_ScriptSpawnCallback = 0x530; + constexpr std::ptrdiff_t m_ScriptCallbackScope = 0x538; +} + +namespace CGameGibManager { + constexpr std::ptrdiff_t m_bAllowNewGibs = 0x4d0; + constexpr std::ptrdiff_t m_iCurrentMaxPieces = 0x4d4; + constexpr std::ptrdiff_t m_iMaxPieces = 0x4d8; + constexpr std::ptrdiff_t m_iLastFrame = 0x4dc; +} + +namespace CSoundAreaEntityBase { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_iszSoundAreaType = 0x4b8; + constexpr std::ptrdiff_t m_vPos = 0x4c0; +} + +namespace CSoundAreaEntitySphere { + constexpr std::ptrdiff_t m_flRadius = 0x4d0; +} + +namespace CSoundAreaEntityOrientedBox { + constexpr std::ptrdiff_t m_vMin = 0x4d0; + constexpr std::ptrdiff_t m_vMax = 0x4dc; +} + +namespace CTeam { + constexpr std::ptrdiff_t m_aPlayerControllers = 0x4b0; + constexpr std::ptrdiff_t m_aPlayers = 0x4c8; + constexpr std::ptrdiff_t m_iScore = 0x4e0; + constexpr std::ptrdiff_t m_szTeamname = 0x4e4; +} + +namespace CBasePlayerController { + constexpr std::ptrdiff_t m_nInButtonsWhichAreToggles = 0x4b8; + constexpr std::ptrdiff_t m_nTickBase = 0x4c0; + constexpr std::ptrdiff_t m_hPawn = 0x4f0; + constexpr std::ptrdiff_t m_nSplitScreenSlot = 0x4f4; + constexpr std::ptrdiff_t m_hSplitOwner = 0x4f8; + constexpr std::ptrdiff_t m_hSplitScreenPlayers = 0x500; + constexpr std::ptrdiff_t m_bIsHLTV = 0x518; + constexpr std::ptrdiff_t m_iConnected = 0x51c; + constexpr std::ptrdiff_t m_iszPlayerName = 0x520; + constexpr std::ptrdiff_t m_szNetworkIDString = 0x5a0; + constexpr std::ptrdiff_t m_fLerpTime = 0x5a8; + constexpr std::ptrdiff_t m_bLagCompensation = 0x5ac; + constexpr std::ptrdiff_t m_bPredict = 0x5ad; + constexpr std::ptrdiff_t m_bAutoKickDisabled = 0x5ae; + constexpr std::ptrdiff_t m_bIsLowViolence = 0x5af; + constexpr std::ptrdiff_t m_bGamePaused = 0x5b0; + constexpr std::ptrdiff_t m_nHighestCommandNumberReceived = 0x628; + constexpr std::ptrdiff_t m_nUsecTimestampLastUserCmdReceived = 0x630; + constexpr std::ptrdiff_t m_iIgnoreGlobalChat = 0x648; + constexpr std::ptrdiff_t m_flLastPlayerTalkTime = 0x64c; + constexpr std::ptrdiff_t m_flLastEntitySteadyState = 0x650; + constexpr std::ptrdiff_t m_nAvailableEntitySteadyState = 0x654; + constexpr std::ptrdiff_t m_bHasAnySteadyStateEnts = 0x658; + constexpr std::ptrdiff_t m_steamID = 0x668; + constexpr std::ptrdiff_t m_iDesiredFOV = 0x670; +} + +namespace CBasePlayerVData { + constexpr std::ptrdiff_t m_sModelName = 0x28; + constexpr std::ptrdiff_t m_flHeadDamageMultiplier = 0x108; + constexpr std::ptrdiff_t m_flChestDamageMultiplier = 0x118; + constexpr std::ptrdiff_t m_flStomachDamageMultiplier = 0x128; + constexpr std::ptrdiff_t m_flArmDamageMultiplier = 0x138; + constexpr std::ptrdiff_t m_flLegDamageMultiplier = 0x148; + constexpr std::ptrdiff_t m_flHoldBreathTime = 0x158; + constexpr std::ptrdiff_t m_flDrowningDamageInterval = 0x15c; + constexpr std::ptrdiff_t m_nDrowningDamageInitial = 0x160; + constexpr std::ptrdiff_t m_nDrowningDamageMax = 0x164; + constexpr std::ptrdiff_t m_nWaterSpeed = 0x168; + constexpr std::ptrdiff_t m_flUseRange = 0x16c; + constexpr std::ptrdiff_t m_flUseAngleTolerance = 0x170; + constexpr std::ptrdiff_t m_flCrouchTime = 0x174; +} + +namespace CBasePlayerWeaponVData { + constexpr std::ptrdiff_t m_szWorldModel = 0x28; + constexpr std::ptrdiff_t m_bBuiltRightHanded = 0x108; + constexpr std::ptrdiff_t m_bAllowFlipping = 0x109; + constexpr std::ptrdiff_t m_bIsFullAuto = 0x10a; + constexpr std::ptrdiff_t m_nNumBullets = 0x10c; + constexpr std::ptrdiff_t m_sMuzzleAttachment = 0x110; + constexpr std::ptrdiff_t m_szMuzzleFlashParticle = 0x118; + constexpr std::ptrdiff_t m_iFlags = 0x1f8; + constexpr std::ptrdiff_t m_nPrimaryAmmoType = 0x1f9; + constexpr std::ptrdiff_t m_nSecondaryAmmoType = 0x1fa; + constexpr std::ptrdiff_t m_iMaxClip1 = 0x1fc; + constexpr std::ptrdiff_t m_iMaxClip2 = 0x200; + constexpr std::ptrdiff_t m_iDefaultClip1 = 0x204; + constexpr std::ptrdiff_t m_iDefaultClip2 = 0x208; + constexpr std::ptrdiff_t m_iWeight = 0x20c; + constexpr std::ptrdiff_t m_bAutoSwitchTo = 0x210; + constexpr std::ptrdiff_t m_bAutoSwitchFrom = 0x211; + constexpr std::ptrdiff_t m_iRumbleEffect = 0x214; + constexpr std::ptrdiff_t m_aShootSounds = 0x218; + constexpr std::ptrdiff_t m_iSlot = 0x238; + constexpr std::ptrdiff_t m_iPosition = 0x23c; +} + +namespace CInfoGameEventProxy { + constexpr std::ptrdiff_t m_iszEventName = 0x4b0; + constexpr std::ptrdiff_t m_flRange = 0x4b8; +} + +namespace CProjectedDecal { + constexpr std::ptrdiff_t m_nTexture = 0x4b0; + constexpr std::ptrdiff_t m_flDistance = 0x4b4; +} + +namespace CBaseAnimGraphController { + constexpr std::ptrdiff_t m_baseLayer = 0x10; + constexpr std::ptrdiff_t m_animGraphNetworkedVars = 0x38; + constexpr std::ptrdiff_t m_bSequenceFinished = 0x210; + constexpr std::ptrdiff_t m_flLastEventCycle = 0x214; + constexpr std::ptrdiff_t m_flPlaybackRate = 0x218; + constexpr std::ptrdiff_t m_flPrevAnimTime = 0x220; + constexpr std::ptrdiff_t m_bClientSideAnimation = 0x224; + constexpr std::ptrdiff_t m_bNetworkedAnimationInputsChanged = 0x225; + constexpr std::ptrdiff_t m_nNewSequenceParity = 0x228; + constexpr std::ptrdiff_t m_nResetEventsParity = 0x22c; + constexpr std::ptrdiff_t m_nAnimLoopMode = 0x230; +} + +namespace CBaseModelEntity { + constexpr std::ptrdiff_t m_CRenderComponent = 0x4b0; + constexpr std::ptrdiff_t m_CHitboxComponent = 0x4b8; + constexpr std::ptrdiff_t m_flDissolveStartTime = 0x4e0; + constexpr std::ptrdiff_t m_OnIgnite = 0x4e8; + constexpr std::ptrdiff_t m_nRenderMode = 0x510; + constexpr std::ptrdiff_t m_nRenderFX = 0x511; + constexpr std::ptrdiff_t m_bAllowFadeInView = 0x512; + constexpr std::ptrdiff_t m_clrRender = 0x513; + constexpr std::ptrdiff_t m_vecRenderAttributes = 0x518; + constexpr std::ptrdiff_t m_LightGroup = 0x568; + constexpr std::ptrdiff_t m_bRenderToCubemaps = 0x56c; + constexpr std::ptrdiff_t m_Collision = 0x570; + constexpr std::ptrdiff_t m_Glow = 0x620; + constexpr std::ptrdiff_t m_flGlowBackfaceMult = 0x678; + constexpr std::ptrdiff_t m_fadeMinDist = 0x67c; + constexpr std::ptrdiff_t m_fadeMaxDist = 0x680; + constexpr std::ptrdiff_t m_flFadeScale = 0x684; + constexpr std::ptrdiff_t m_flShadowStrength = 0x688; + constexpr std::ptrdiff_t m_nObjectCulling = 0x68c; + constexpr std::ptrdiff_t m_nAddDecal = 0x690; + constexpr std::ptrdiff_t m_vDecalPosition = 0x694; + constexpr std::ptrdiff_t m_vDecalForwardAxis = 0x6a0; + constexpr std::ptrdiff_t m_flDecalHealBloodRate = 0x6ac; + constexpr std::ptrdiff_t m_flDecalHealHeightRate = 0x6b0; + constexpr std::ptrdiff_t m_ConfigEntitiesToPropagateMaterialDecalsTo = 0x6b8; + constexpr std::ptrdiff_t m_vecViewOffset = 0x6d0; +} + +namespace CServerOnlyModelEntity { +} + +namespace CModelPointEntity { +} + +namespace CLogicRelay { + constexpr std::ptrdiff_t m_OnTrigger = 0x4b0; + constexpr std::ptrdiff_t m_OnSpawn = 0x4d8; + constexpr std::ptrdiff_t m_bDisabled = 0x500; + constexpr std::ptrdiff_t m_bWaitForRefire = 0x501; + constexpr std::ptrdiff_t m_bTriggerOnce = 0x502; + constexpr std::ptrdiff_t m_bFastRetrigger = 0x503; + constexpr std::ptrdiff_t m_bPassthoughCaller = 0x504; +} + +namespace CParticleSystem { + constexpr std::ptrdiff_t m_szSnapshotFileName = 0x700; + constexpr std::ptrdiff_t m_bActive = 0x900; + constexpr std::ptrdiff_t m_bFrozen = 0x901; + constexpr std::ptrdiff_t m_flFreezeTransitionDuration = 0x904; + constexpr std::ptrdiff_t m_nStopType = 0x908; + constexpr std::ptrdiff_t m_bAnimateDuringGameplayPause = 0x90c; + constexpr std::ptrdiff_t m_iEffectIndex = 0x910; + constexpr std::ptrdiff_t m_flStartTime = 0x918; + constexpr std::ptrdiff_t m_flPreSimTime = 0x91c; + constexpr std::ptrdiff_t m_vServerControlPoints = 0x920; + constexpr std::ptrdiff_t m_iServerControlPointAssignments = 0x950; + constexpr std::ptrdiff_t m_hControlPointEnts = 0x954; + constexpr std::ptrdiff_t m_bNoSave = 0xa54; + constexpr std::ptrdiff_t m_bNoFreeze = 0xa55; + constexpr std::ptrdiff_t m_bNoRamp = 0xa56; + constexpr std::ptrdiff_t m_bStartActive = 0xa57; + constexpr std::ptrdiff_t m_iszEffectName = 0xa58; + constexpr std::ptrdiff_t m_iszControlPointNames = 0xa60; + constexpr std::ptrdiff_t m_nDataCP = 0xc60; + constexpr std::ptrdiff_t m_vecDataCPValue = 0xc64; + constexpr std::ptrdiff_t m_nTintCP = 0xc70; + constexpr std::ptrdiff_t m_clrTint = 0xc74; +} + +namespace CPathParticleRope { + constexpr std::ptrdiff_t m_bStartActive = 0x4b0; + constexpr std::ptrdiff_t m_flMaxSimulationTime = 0x4b4; + constexpr std::ptrdiff_t m_iszEffectName = 0x4b8; + constexpr std::ptrdiff_t m_PathNodes_Name = 0x4c0; + constexpr std::ptrdiff_t m_flParticleSpacing = 0x4d8; + constexpr std::ptrdiff_t m_flSlack = 0x4dc; + constexpr std::ptrdiff_t m_flRadius = 0x4e0; + constexpr std::ptrdiff_t m_ColorTint = 0x4e4; + constexpr std::ptrdiff_t m_nEffectState = 0x4e8; + constexpr std::ptrdiff_t m_iEffectIndex = 0x4f0; + constexpr std::ptrdiff_t m_PathNodes_Position = 0x4f8; + constexpr std::ptrdiff_t m_PathNodes_TangentIn = 0x510; + constexpr std::ptrdiff_t m_PathNodes_TangentOut = 0x528; + constexpr std::ptrdiff_t m_PathNodes_Color = 0x540; + constexpr std::ptrdiff_t m_PathNodes_PinEnabled = 0x558; + constexpr std::ptrdiff_t m_PathNodes_RadiusScale = 0x570; +} + +namespace CPathParticleRopeAlias_path_particle_rope_clientside { +} + +namespace CFuncWall { + constexpr std::ptrdiff_t m_nState = 0x700; +} + +namespace CFuncWallToggle { +} + +namespace CFuncVehicleClip { +} + +namespace CFuncIllusionary { +} + +namespace CFuncVPhysicsClip { + constexpr std::ptrdiff_t m_bDisabled = 0x700; +} + +namespace CFuncInteractionLayerClip { + constexpr std::ptrdiff_t m_bDisabled = 0x700; + constexpr std::ptrdiff_t m_iszInteractsAs = 0x708; + constexpr std::ptrdiff_t m_iszInteractsWith = 0x710; +} + +namespace CPointClientCommand { +} + +namespace CPointServerCommand { +} + +namespace CPointBroadcastClientCommand { +} + +namespace CCommentaryAuto { + constexpr std::ptrdiff_t m_OnCommentaryNewGame = 0x4b0; + constexpr std::ptrdiff_t m_OnCommentaryMidGame = 0x4d8; + constexpr std::ptrdiff_t m_OnCommentaryMultiplayerSpawn = 0x500; +} + +namespace CDynamicLight { + constexpr std::ptrdiff_t m_ActualFlags = 0x700; + constexpr std::ptrdiff_t m_Flags = 0x701; + constexpr std::ptrdiff_t m_LightStyle = 0x702; + constexpr std::ptrdiff_t m_On = 0x703; + constexpr std::ptrdiff_t m_Radius = 0x704; + constexpr std::ptrdiff_t m_Exponent = 0x708; + constexpr std::ptrdiff_t m_InnerAngle = 0x70c; + constexpr std::ptrdiff_t m_OuterAngle = 0x710; + constexpr std::ptrdiff_t m_SpotRadius = 0x714; +} + +namespace CBubbling { + constexpr std::ptrdiff_t m_density = 0x700; + constexpr std::ptrdiff_t m_frequency = 0x704; + constexpr std::ptrdiff_t m_state = 0x708; +} + +namespace CEnvTracer { + constexpr std::ptrdiff_t m_vecEnd = 0x4b0; + constexpr std::ptrdiff_t m_flDelay = 0x4bc; +} + +namespace CTestEffect { + constexpr std::ptrdiff_t m_iLoop = 0x4b0; + constexpr std::ptrdiff_t m_iBeam = 0x4b4; + constexpr std::ptrdiff_t m_pBeam = 0x4b8; + constexpr std::ptrdiff_t m_flBeamTime = 0x578; + constexpr std::ptrdiff_t m_flStartTime = 0x5d8; +} + +namespace CBlood { + constexpr std::ptrdiff_t m_vecSprayAngles = 0x4b0; + constexpr std::ptrdiff_t m_vecSprayDir = 0x4bc; + constexpr std::ptrdiff_t m_flAmount = 0x4c8; + constexpr std::ptrdiff_t m_Color = 0x4cc; +} + +namespace CEnvFunnel { +} + +namespace CEnvBeverage { + constexpr std::ptrdiff_t m_CanInDispenser = 0x4b0; + constexpr std::ptrdiff_t m_nBeverageType = 0x4b4; +} + +namespace CPrecipitationBlocker { +} + +namespace CEnvWind { + constexpr std::ptrdiff_t m_EnvWindShared = 0x4b0; +} + +namespace CPhysicsWire { + constexpr std::ptrdiff_t m_nDensity = 0x4b0; +} + +namespace CEnvMuzzleFlash { + constexpr std::ptrdiff_t m_flScale = 0x4b0; + constexpr std::ptrdiff_t m_iszParentAttachment = 0x4b8; +} + +namespace CEnvSplash { + constexpr std::ptrdiff_t m_flScale = 0x4b0; +} + +namespace CEnvViewPunch { + constexpr std::ptrdiff_t m_flRadius = 0x4b0; + constexpr std::ptrdiff_t m_angViewPunch = 0x4b4; +} + +namespace CEnvEntityIgniter { + constexpr std::ptrdiff_t m_flLifetime = 0x4b0; +} + +namespace CDebugHistory { + constexpr std::ptrdiff_t m_nNpcEvents = 0x44f0; +} + +namespace CEnvEntityMaker { + constexpr std::ptrdiff_t m_vecEntityMins = 0x4b0; + constexpr std::ptrdiff_t m_vecEntityMaxs = 0x4bc; + constexpr std::ptrdiff_t m_hCurrentInstance = 0x4c8; + constexpr std::ptrdiff_t m_hCurrentBlocker = 0x4cc; + constexpr std::ptrdiff_t m_vecBlockerOrigin = 0x4d0; + constexpr std::ptrdiff_t m_angPostSpawnDirection = 0x4dc; + constexpr std::ptrdiff_t m_flPostSpawnDirectionVariance = 0x4e8; + constexpr std::ptrdiff_t m_flPostSpawnSpeed = 0x4ec; + constexpr std::ptrdiff_t m_bPostSpawnUseAngles = 0x4f0; + constexpr std::ptrdiff_t m_iszTemplate = 0x4f8; + constexpr std::ptrdiff_t m_pOutputOnSpawned = 0x500; + constexpr std::ptrdiff_t m_pOutputOnFailedSpawn = 0x528; +} + +namespace CInfoInstructorHintTarget { +} + +namespace CEnvInstructorHint { + constexpr std::ptrdiff_t m_iszName = 0x4b0; + constexpr std::ptrdiff_t m_iszReplace_Key = 0x4b8; + constexpr std::ptrdiff_t m_iszHintTargetEntity = 0x4c0; + constexpr std::ptrdiff_t m_iTimeout = 0x4c8; + constexpr std::ptrdiff_t m_iDisplayLimit = 0x4cc; + constexpr std::ptrdiff_t m_iszIcon_Onscreen = 0x4d0; + constexpr std::ptrdiff_t m_iszIcon_Offscreen = 0x4d8; + constexpr std::ptrdiff_t m_iszCaption = 0x4e0; + constexpr std::ptrdiff_t m_iszActivatorCaption = 0x4e8; + constexpr std::ptrdiff_t m_Color = 0x4f0; + constexpr std::ptrdiff_t m_fIconOffset = 0x4f4; + constexpr std::ptrdiff_t m_fRange = 0x4f8; + constexpr std::ptrdiff_t m_iPulseOption = 0x4fc; + constexpr std::ptrdiff_t m_iAlphaOption = 0x4fd; + constexpr std::ptrdiff_t m_iShakeOption = 0x4fe; + constexpr std::ptrdiff_t m_bStatic = 0x4ff; + constexpr std::ptrdiff_t m_bNoOffscreen = 0x500; + constexpr std::ptrdiff_t m_bForceCaption = 0x501; + constexpr std::ptrdiff_t m_iInstanceType = 0x504; + constexpr std::ptrdiff_t m_bSuppressRest = 0x508; + constexpr std::ptrdiff_t m_iszBinding = 0x510; + constexpr std::ptrdiff_t m_bAllowNoDrawTarget = 0x518; + constexpr std::ptrdiff_t m_bAutoStart = 0x519; + constexpr std::ptrdiff_t m_bLocalPlayerOnly = 0x51a; +} + +namespace CEnvInstructorVRHint { + constexpr std::ptrdiff_t m_iszName = 0x4b0; + constexpr std::ptrdiff_t m_iszHintTargetEntity = 0x4b8; + constexpr std::ptrdiff_t m_iTimeout = 0x4c0; + constexpr std::ptrdiff_t m_iszCaption = 0x4c8; + constexpr std::ptrdiff_t m_iszStartSound = 0x4d0; + constexpr std::ptrdiff_t m_iLayoutFileType = 0x4d8; + constexpr std::ptrdiff_t m_iszCustomLayoutFile = 0x4e0; + constexpr std::ptrdiff_t m_iAttachType = 0x4e8; + constexpr std::ptrdiff_t m_flHeightOffset = 0x4ec; +} + +namespace CInstructorEventEntity { + constexpr std::ptrdiff_t m_iszName = 0x4b0; + constexpr std::ptrdiff_t m_iszHintTargetEntity = 0x4b8; + constexpr std::ptrdiff_t m_hTargetPlayer = 0x4c0; +} + +namespace CEnvScreenOverlay { + constexpr std::ptrdiff_t m_iszOverlayNames = 0x4b0; + constexpr std::ptrdiff_t m_flOverlayTimes = 0x500; + constexpr std::ptrdiff_t m_flStartTime = 0x528; + constexpr std::ptrdiff_t m_iDesiredOverlay = 0x52c; + constexpr std::ptrdiff_t m_bIsActive = 0x530; +} + +namespace CEnvFade { + constexpr std::ptrdiff_t m_fadeColor = 0x4b0; + constexpr std::ptrdiff_t m_Duration = 0x4b4; + constexpr std::ptrdiff_t m_HoldDuration = 0x4b8; + constexpr std::ptrdiff_t m_OnBeginFade = 0x4c0; +} + +namespace CCredits { + constexpr std::ptrdiff_t m_OnCreditsDone = 0x4b0; + constexpr std::ptrdiff_t m_bRolledOutroCredits = 0x4d8; + constexpr std::ptrdiff_t m_flLogoLength = 0x4dc; +} + +namespace CEnvShake { + constexpr std::ptrdiff_t m_limitToEntity = 0x4b0; + constexpr std::ptrdiff_t m_Amplitude = 0x4b8; + constexpr std::ptrdiff_t m_Frequency = 0x4bc; + constexpr std::ptrdiff_t m_Duration = 0x4c0; + constexpr std::ptrdiff_t m_Radius = 0x4c4; + constexpr std::ptrdiff_t m_stopTime = 0x4c8; + constexpr std::ptrdiff_t m_nextShake = 0x4cc; + constexpr std::ptrdiff_t m_currentAmp = 0x4d0; + constexpr std::ptrdiff_t m_maxForce = 0x4d4; + constexpr std::ptrdiff_t m_shakeCallback = 0x4e8; +} + +namespace CEnvTilt { + constexpr std::ptrdiff_t m_Duration = 0x4b0; + constexpr std::ptrdiff_t m_Radius = 0x4b4; + constexpr std::ptrdiff_t m_TiltTime = 0x4b8; + constexpr std::ptrdiff_t m_stopTime = 0x4bc; +} + +namespace CEnvSpark { + constexpr std::ptrdiff_t m_flDelay = 0x4b0; + constexpr std::ptrdiff_t m_nMagnitude = 0x4b4; + constexpr std::ptrdiff_t m_nTrailLength = 0x4b8; + constexpr std::ptrdiff_t m_nType = 0x4bc; + constexpr std::ptrdiff_t m_OnSpark = 0x4c0; +} + +namespace CShower { +} + +namespace CEnvExplosion { + constexpr std::ptrdiff_t m_iMagnitude = 0x700; + constexpr std::ptrdiff_t m_flPlayerDamage = 0x704; + constexpr std::ptrdiff_t m_iRadiusOverride = 0x708; + constexpr std::ptrdiff_t m_flInnerRadius = 0x70c; + constexpr std::ptrdiff_t m_spriteScale = 0x710; + constexpr std::ptrdiff_t m_flDamageForce = 0x714; + constexpr std::ptrdiff_t m_hInflictor = 0x718; + constexpr std::ptrdiff_t m_iCustomDamageType = 0x71c; + constexpr std::ptrdiff_t m_iszExplosionType = 0x728; + constexpr std::ptrdiff_t m_iszCustomEffectName = 0x730; + constexpr std::ptrdiff_t m_iszCustomSoundName = 0x738; + constexpr std::ptrdiff_t m_iClassIgnore = 0x740; + constexpr std::ptrdiff_t m_iClassIgnore2 = 0x744; + constexpr std::ptrdiff_t m_iszEntityIgnoreName = 0x748; + constexpr std::ptrdiff_t m_hEntityIgnore = 0x750; +} + +namespace CFilterName { + constexpr std::ptrdiff_t m_iFilterName = 0x508; +} + +namespace CFilterModel { + constexpr std::ptrdiff_t m_iFilterModel = 0x508; +} + +namespace CFilterContext { + constexpr std::ptrdiff_t m_iFilterContext = 0x508; +} + +namespace FilterTeam { + constexpr std::ptrdiff_t m_iFilterTeam = 0x508; +} + +namespace CFilterMassGreater { + constexpr std::ptrdiff_t m_fFilterMass = 0x508; +} + +namespace FilterDamageType { + constexpr std::ptrdiff_t m_iDamageType = 0x508; +} + +namespace FilterHealth { + constexpr std::ptrdiff_t m_bAdrenalineActive = 0x508; + constexpr std::ptrdiff_t m_iHealthMin = 0x50c; + constexpr std::ptrdiff_t m_iHealthMax = 0x510; +} + +namespace CFilterEnemy { + constexpr std::ptrdiff_t m_iszEnemyName = 0x508; + constexpr std::ptrdiff_t m_flRadius = 0x510; + constexpr std::ptrdiff_t m_flOuterRadius = 0x514; + constexpr std::ptrdiff_t m_nMaxSquadmatesPerEnemy = 0x518; + constexpr std::ptrdiff_t m_iszPlayerName = 0x520; +} + +namespace CFilterAttributeInt { + constexpr std::ptrdiff_t m_sAttributeName = 0x508; +} + +namespace CFire { + constexpr std::ptrdiff_t m_hEffect = 0x700; + constexpr std::ptrdiff_t m_hOwner = 0x704; + constexpr std::ptrdiff_t m_nFireType = 0x708; + constexpr std::ptrdiff_t m_flFuel = 0x70c; + constexpr std::ptrdiff_t m_flDamageTime = 0x710; + constexpr std::ptrdiff_t m_lastDamage = 0x714; + constexpr std::ptrdiff_t m_flFireSize = 0x718; + constexpr std::ptrdiff_t m_flLastNavUpdateTime = 0x71c; + constexpr std::ptrdiff_t m_flHeatLevel = 0x720; + constexpr std::ptrdiff_t m_flHeatAbsorb = 0x724; + constexpr std::ptrdiff_t m_flDamageScale = 0x728; + constexpr std::ptrdiff_t m_flMaxHeat = 0x72c; + constexpr std::ptrdiff_t m_flLastHeatLevel = 0x730; + constexpr std::ptrdiff_t m_flAttackTime = 0x734; + constexpr std::ptrdiff_t m_bEnabled = 0x738; + constexpr std::ptrdiff_t m_bStartDisabled = 0x739; + constexpr std::ptrdiff_t m_bDidActivate = 0x73a; + constexpr std::ptrdiff_t m_OnIgnited = 0x740; + constexpr std::ptrdiff_t m_OnExtinguished = 0x768; +} + +namespace CEnvFireSource { + constexpr std::ptrdiff_t m_bEnabled = 0x4b0; + constexpr std::ptrdiff_t m_radius = 0x4b4; + constexpr std::ptrdiff_t m_damage = 0x4b8; +} + +namespace CEnvFireSensor { + constexpr std::ptrdiff_t m_bEnabled = 0x4b0; + constexpr std::ptrdiff_t m_bHeatAtLevel = 0x4b1; + constexpr std::ptrdiff_t m_radius = 0x4b4; + constexpr std::ptrdiff_t m_targetLevel = 0x4b8; + constexpr std::ptrdiff_t m_targetTime = 0x4bc; + constexpr std::ptrdiff_t m_levelTime = 0x4c0; + constexpr std::ptrdiff_t m_OnHeatLevelStart = 0x4c8; + constexpr std::ptrdiff_t m_OnHeatLevelEnd = 0x4f0; +} + +namespace CFuncTimescale { + constexpr std::ptrdiff_t m_flDesiredTimescale = 0x4b0; + constexpr std::ptrdiff_t m_flAcceleration = 0x4b4; + constexpr std::ptrdiff_t m_flMinBlendRate = 0x4b8; + constexpr std::ptrdiff_t m_flBlendDeltaMultiplier = 0x4bc; + constexpr std::ptrdiff_t m_isStarted = 0x4c0; +} + +namespace CGameWeaponManager { + constexpr std::ptrdiff_t m_iszWeaponName = 0x4b0; + constexpr std::ptrdiff_t m_iMaxPieces = 0x4c0; + constexpr std::ptrdiff_t m_flAmmoMod = 0x4c4; + constexpr std::ptrdiff_t m_bExpectingWeapon = 0x4c8; + constexpr std::ptrdiff_t m_ManagedNonWeapons = 0x4d0; +} + +namespace CLightGlow { + constexpr std::ptrdiff_t m_nHorizontalSize = 0x700; + constexpr std::ptrdiff_t m_nVerticalSize = 0x704; + constexpr std::ptrdiff_t m_nMinDist = 0x708; + constexpr std::ptrdiff_t m_nMaxDist = 0x70c; + constexpr std::ptrdiff_t m_nOuterMaxDist = 0x710; + constexpr std::ptrdiff_t m_flGlowProxySize = 0x714; + constexpr std::ptrdiff_t m_flHDRColorScale = 0x718; +} + +namespace CLogicAchievement { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_iszAchievementEventID = 0x4b8; + constexpr std::ptrdiff_t m_OnFired = 0x4c0; +} + +namespace CLogicGameEventListener { + constexpr std::ptrdiff_t m_OnEventFired = 0x4c0; + constexpr std::ptrdiff_t m_iszGameEventName = 0x4e8; + constexpr std::ptrdiff_t m_iszGameEventItem = 0x4f0; + constexpr std::ptrdiff_t m_bEnabled = 0x4f8; + constexpr std::ptrdiff_t m_bStartDisabled = 0x4f9; +} + +namespace CLogicMeasureMovement { + constexpr std::ptrdiff_t m_strMeasureTarget = 0x4b0; + constexpr std::ptrdiff_t m_strMeasureReference = 0x4b8; + constexpr std::ptrdiff_t m_strTargetReference = 0x4c0; + constexpr std::ptrdiff_t m_hMeasureTarget = 0x4c8; + constexpr std::ptrdiff_t m_hMeasureReference = 0x4cc; + constexpr std::ptrdiff_t m_hTarget = 0x4d0; + constexpr std::ptrdiff_t m_hTargetReference = 0x4d4; + constexpr std::ptrdiff_t m_flScale = 0x4d8; + constexpr std::ptrdiff_t m_nMeasureType = 0x4dc; +} + +namespace CLogicNavigation { + constexpr std::ptrdiff_t m_isOn = 0x4b8; + constexpr std::ptrdiff_t m_navProperty = 0x4bc; +} + +namespace CLogicNPCCounter { + constexpr std::ptrdiff_t m_OnMinCountAll = 0x4b0; + constexpr std::ptrdiff_t m_OnMaxCountAll = 0x4d8; + constexpr std::ptrdiff_t m_OnFactorAll = 0x500; + constexpr std::ptrdiff_t m_OnMinPlayerDistAll = 0x528; + constexpr std::ptrdiff_t m_OnMinCount_1 = 0x550; + constexpr std::ptrdiff_t m_OnMaxCount_1 = 0x578; + constexpr std::ptrdiff_t m_OnFactor_1 = 0x5a0; + constexpr std::ptrdiff_t m_OnMinPlayerDist_1 = 0x5c8; + constexpr std::ptrdiff_t m_OnMinCount_2 = 0x5f0; + constexpr std::ptrdiff_t m_OnMaxCount_2 = 0x618; + constexpr std::ptrdiff_t m_OnFactor_2 = 0x640; + constexpr std::ptrdiff_t m_OnMinPlayerDist_2 = 0x668; + constexpr std::ptrdiff_t m_OnMinCount_3 = 0x690; + constexpr std::ptrdiff_t m_OnMaxCount_3 = 0x6b8; + constexpr std::ptrdiff_t m_OnFactor_3 = 0x6e0; + constexpr std::ptrdiff_t m_OnMinPlayerDist_3 = 0x708; + constexpr std::ptrdiff_t m_hSource = 0x730; + constexpr std::ptrdiff_t m_iszSourceEntityName = 0x738; + constexpr std::ptrdiff_t m_flDistanceMax = 0x740; + constexpr std::ptrdiff_t m_bDisabled = 0x744; + constexpr std::ptrdiff_t m_nMinCountAll = 0x748; + constexpr std::ptrdiff_t m_nMaxCountAll = 0x74c; + constexpr std::ptrdiff_t m_nMinFactorAll = 0x750; + constexpr std::ptrdiff_t m_nMaxFactorAll = 0x754; + constexpr std::ptrdiff_t m_iszNPCClassname_1 = 0x760; + constexpr std::ptrdiff_t m_nNPCState_1 = 0x768; + constexpr std::ptrdiff_t m_bInvertState_1 = 0x76c; + constexpr std::ptrdiff_t m_nMinCount_1 = 0x770; + constexpr std::ptrdiff_t m_nMaxCount_1 = 0x774; + constexpr std::ptrdiff_t m_nMinFactor_1 = 0x778; + constexpr std::ptrdiff_t m_nMaxFactor_1 = 0x77c; + constexpr std::ptrdiff_t m_flDefaultDist_1 = 0x784; + constexpr std::ptrdiff_t m_iszNPCClassname_2 = 0x788; + constexpr std::ptrdiff_t m_nNPCState_2 = 0x790; + constexpr std::ptrdiff_t m_bInvertState_2 = 0x794; + constexpr std::ptrdiff_t m_nMinCount_2 = 0x798; + constexpr std::ptrdiff_t m_nMaxCount_2 = 0x79c; + constexpr std::ptrdiff_t m_nMinFactor_2 = 0x7a0; + constexpr std::ptrdiff_t m_nMaxFactor_2 = 0x7a4; + constexpr std::ptrdiff_t m_flDefaultDist_2 = 0x7ac; + constexpr std::ptrdiff_t m_iszNPCClassname_3 = 0x7b0; + constexpr std::ptrdiff_t m_nNPCState_3 = 0x7b8; + constexpr std::ptrdiff_t m_bInvertState_3 = 0x7bc; + constexpr std::ptrdiff_t m_nMinCount_3 = 0x7c0; + constexpr std::ptrdiff_t m_nMaxCount_3 = 0x7c4; + constexpr std::ptrdiff_t m_nMinFactor_3 = 0x7c8; + constexpr std::ptrdiff_t m_nMaxFactor_3 = 0x7cc; + constexpr std::ptrdiff_t m_flDefaultDist_3 = 0x7d4; +} + +namespace CLogicNPCCounterAABB { + constexpr std::ptrdiff_t m_vDistanceOuterMins = 0x7f0; + constexpr std::ptrdiff_t m_vDistanceOuterMaxs = 0x7fc; + constexpr std::ptrdiff_t m_vOuterMins = 0x808; + constexpr std::ptrdiff_t m_vOuterMaxs = 0x814; +} + +namespace CLogicNPCCounterOBB { +} + +namespace CLogicPlayerProxy { + constexpr std::ptrdiff_t m_hPlayer = 0x4b0; + constexpr std::ptrdiff_t m_PlayerHasAmmo = 0x4b8; + constexpr std::ptrdiff_t m_PlayerHasNoAmmo = 0x4e0; + constexpr std::ptrdiff_t m_PlayerDied = 0x508; + constexpr std::ptrdiff_t m_RequestedPlayerHealth = 0x530; +} + +namespace CLogicAuto { + constexpr std::ptrdiff_t m_OnMapSpawn = 0x4b0; + constexpr std::ptrdiff_t m_OnDemoMapSpawn = 0x4d8; + constexpr std::ptrdiff_t m_OnNewGame = 0x500; + constexpr std::ptrdiff_t m_OnLoadGame = 0x528; + constexpr std::ptrdiff_t m_OnMapTransition = 0x550; + constexpr std::ptrdiff_t m_OnBackgroundMap = 0x578; + constexpr std::ptrdiff_t m_OnMultiNewMap = 0x5a0; + constexpr std::ptrdiff_t m_OnMultiNewRound = 0x5c8; + constexpr std::ptrdiff_t m_OnVREnabled = 0x5f0; + constexpr std::ptrdiff_t m_OnVRNotEnabled = 0x618; + constexpr std::ptrdiff_t m_globalstate = 0x640; +} + +namespace CLogicScript { +} + +namespace CTimerEntity { + constexpr std::ptrdiff_t m_OnTimer = 0x4b0; + constexpr std::ptrdiff_t m_OnTimerHigh = 0x4d8; + constexpr std::ptrdiff_t m_OnTimerLow = 0x500; + constexpr std::ptrdiff_t m_iDisabled = 0x528; + constexpr std::ptrdiff_t m_flInitialDelay = 0x52c; + constexpr std::ptrdiff_t m_flRefireTime = 0x530; + constexpr std::ptrdiff_t m_bUpDownState = 0x534; + constexpr std::ptrdiff_t m_iUseRandomTime = 0x538; + constexpr std::ptrdiff_t m_bPauseAfterFiring = 0x53c; + constexpr std::ptrdiff_t m_flLowerRandomBound = 0x540; + constexpr std::ptrdiff_t m_flUpperRandomBound = 0x544; + constexpr std::ptrdiff_t m_flRemainingTime = 0x548; + constexpr std::ptrdiff_t m_bPaused = 0x54c; +} + +namespace CLogicLineToEntity { + constexpr std::ptrdiff_t m_Line = 0x4b0; + constexpr std::ptrdiff_t m_SourceName = 0x4d8; + constexpr std::ptrdiff_t m_StartEntity = 0x4e0; + constexpr std::ptrdiff_t m_EndEntity = 0x4e4; +} + +namespace CMathRemap { + constexpr std::ptrdiff_t m_flInMin = 0x4b0; + constexpr std::ptrdiff_t m_flInMax = 0x4b4; + constexpr std::ptrdiff_t m_flOut1 = 0x4b8; + constexpr std::ptrdiff_t m_flOut2 = 0x4bc; + constexpr std::ptrdiff_t m_flOldInValue = 0x4c0; + constexpr std::ptrdiff_t m_bEnabled = 0x4c4; + constexpr std::ptrdiff_t m_OutValue = 0x4c8; + constexpr std::ptrdiff_t m_OnRoseAboveMin = 0x4f0; + constexpr std::ptrdiff_t m_OnRoseAboveMax = 0x518; + constexpr std::ptrdiff_t m_OnFellBelowMin = 0x540; + constexpr std::ptrdiff_t m_OnFellBelowMax = 0x568; +} + +namespace CMathColorBlend { + constexpr std::ptrdiff_t m_flInMin = 0x4b0; + constexpr std::ptrdiff_t m_flInMax = 0x4b4; + constexpr std::ptrdiff_t m_OutColor1 = 0x4b8; + constexpr std::ptrdiff_t m_OutColor2 = 0x4bc; + constexpr std::ptrdiff_t m_OutValue = 0x4c0; +} + +namespace CEnvGlobal { + constexpr std::ptrdiff_t m_outCounter = 0x4b0; + constexpr std::ptrdiff_t m_globalstate = 0x4d8; + constexpr std::ptrdiff_t m_triggermode = 0x4e0; + constexpr std::ptrdiff_t m_initialstate = 0x4e4; + constexpr std::ptrdiff_t m_counter = 0x4e8; +} + +namespace CMultiSource { + constexpr std::ptrdiff_t m_rgEntities = 0x4b0; + constexpr std::ptrdiff_t m_rgTriggered = 0x530; + constexpr std::ptrdiff_t m_OnTrigger = 0x5b0; + constexpr std::ptrdiff_t m_iTotal = 0x5d8; + constexpr std::ptrdiff_t m_globalstate = 0x5e0; +} + +namespace CMathCounter { + constexpr std::ptrdiff_t m_flMin = 0x4b0; + constexpr std::ptrdiff_t m_flMax = 0x4b4; + constexpr std::ptrdiff_t m_bHitMin = 0x4b8; + constexpr std::ptrdiff_t m_bHitMax = 0x4b9; + constexpr std::ptrdiff_t m_bDisabled = 0x4ba; + constexpr std::ptrdiff_t m_OutValue = 0x4c0; + constexpr std::ptrdiff_t m_OnGetValue = 0x4e8; + constexpr std::ptrdiff_t m_OnHitMin = 0x510; + constexpr std::ptrdiff_t m_OnHitMax = 0x538; + constexpr std::ptrdiff_t m_OnChangedFromMin = 0x560; + constexpr std::ptrdiff_t m_OnChangedFromMax = 0x588; +} + +namespace CLogicCase { + constexpr std::ptrdiff_t m_nCase = 0x4b0; + constexpr std::ptrdiff_t m_nShuffleCases = 0x5b0; + constexpr std::ptrdiff_t m_nLastShuffleCase = 0x5b4; + constexpr std::ptrdiff_t m_uchShuffleCaseMap = 0x5b8; + constexpr std::ptrdiff_t m_OnCase = 0x5d8; + constexpr std::ptrdiff_t m_OnDefault = 0xad8; +} + +namespace CLogicCompare { + constexpr std::ptrdiff_t m_flInValue = 0x4b0; + constexpr std::ptrdiff_t m_flCompareValue = 0x4b4; + constexpr std::ptrdiff_t m_OnLessThan = 0x4b8; + constexpr std::ptrdiff_t m_OnEqualTo = 0x4e0; + constexpr std::ptrdiff_t m_OnNotEqualTo = 0x508; + constexpr std::ptrdiff_t m_OnGreaterThan = 0x530; +} + +namespace CLogicAutosave { + constexpr std::ptrdiff_t m_bForceNewLevelUnit = 0x4b0; + constexpr std::ptrdiff_t m_minHitPoints = 0x4b4; + constexpr std::ptrdiff_t m_minHitPointsToCommit = 0x4b8; +} + +namespace CLogicActiveAutosave { + constexpr std::ptrdiff_t m_TriggerHitPoints = 0x4c0; + constexpr std::ptrdiff_t m_flTimeToTrigger = 0x4c4; + constexpr std::ptrdiff_t m_flStartTime = 0x4c8; + constexpr std::ptrdiff_t m_flDangerousTime = 0x4cc; +} + +namespace CLogicDistanceAutosave { + constexpr std::ptrdiff_t m_iszTargetEntity = 0x4b0; + constexpr std::ptrdiff_t m_flDistanceToPlayer = 0x4b8; + constexpr std::ptrdiff_t m_bForceNewLevelUnit = 0x4bc; + constexpr std::ptrdiff_t m_bCheckCough = 0x4bd; + constexpr std::ptrdiff_t m_bThinkDangerous = 0x4be; + constexpr std::ptrdiff_t m_flDangerousTime = 0x4c0; +} + +namespace CLogicCollisionPair { + constexpr std::ptrdiff_t m_nameAttach1 = 0x4b0; + constexpr std::ptrdiff_t m_nameAttach2 = 0x4b8; + constexpr std::ptrdiff_t m_disabled = 0x4c0; + constexpr std::ptrdiff_t m_succeeded = 0x4c1; +} + +namespace CLogicBranchList { + constexpr std::ptrdiff_t m_nLogicBranchNames = 0x4b0; + constexpr std::ptrdiff_t m_LogicBranchList = 0x530; + constexpr std::ptrdiff_t m_eLastState = 0x548; + constexpr std::ptrdiff_t m_OnAllTrue = 0x550; + constexpr std::ptrdiff_t m_OnAllFalse = 0x578; + constexpr std::ptrdiff_t m_OnMixed = 0x5a0; +} + +namespace CLogicGameEvent { + constexpr std::ptrdiff_t m_iszEventName = 0x4b0; +} + +namespace CMessageEntity { + constexpr std::ptrdiff_t m_radius = 0x4b0; + constexpr std::ptrdiff_t m_messageText = 0x4b8; + constexpr std::ptrdiff_t m_drawText = 0x4c0; + constexpr std::ptrdiff_t m_bDeveloperOnly = 0x4c1; + constexpr std::ptrdiff_t m_bEnabled = 0x4c2; +} + +namespace CTriggerBrush { + constexpr std::ptrdiff_t m_OnStartTouch = 0x700; + constexpr std::ptrdiff_t m_OnEndTouch = 0x728; + constexpr std::ptrdiff_t m_OnUse = 0x750; + constexpr std::ptrdiff_t m_iInputFilter = 0x778; + constexpr std::ptrdiff_t m_iDontMessageParent = 0x77c; +} + +namespace CPathKeyFrame { + constexpr std::ptrdiff_t m_Origin = 0x4b0; + constexpr std::ptrdiff_t m_Angles = 0x4bc; + constexpr std::ptrdiff_t m_qAngle = 0x4d0; + constexpr std::ptrdiff_t m_iNextKey = 0x4e0; + constexpr std::ptrdiff_t m_flNextTime = 0x4e8; + constexpr std::ptrdiff_t m_pNextKey = 0x4f0; + constexpr std::ptrdiff_t m_pPrevKey = 0x4f8; + constexpr std::ptrdiff_t m_flSpeed = 0x500; +} + +namespace CBaseMoveBehavior { + constexpr std::ptrdiff_t m_iPositionInterpolator = 0x510; + constexpr std::ptrdiff_t m_iRotationInterpolator = 0x514; + constexpr std::ptrdiff_t m_flAnimStartTime = 0x518; + constexpr std::ptrdiff_t m_flAnimEndTime = 0x51c; + constexpr std::ptrdiff_t m_flAverageSpeedAcrossFrame = 0x520; + constexpr std::ptrdiff_t m_pCurrentKeyFrame = 0x528; + constexpr std::ptrdiff_t m_pTargetKeyFrame = 0x530; + constexpr std::ptrdiff_t m_pPreKeyFrame = 0x538; + constexpr std::ptrdiff_t m_pPostKeyFrame = 0x540; + constexpr std::ptrdiff_t m_flTimeIntoFrame = 0x548; + constexpr std::ptrdiff_t m_iDirection = 0x54c; +} + +namespace CPathCorner { + constexpr std::ptrdiff_t m_flWait = 0x4b0; + constexpr std::ptrdiff_t m_flRadius = 0x4b4; + constexpr std::ptrdiff_t m_OnPass = 0x4b8; +} + +namespace CPhysForce { + constexpr std::ptrdiff_t m_nameAttach = 0x4b8; + constexpr std::ptrdiff_t m_force = 0x4c0; + constexpr std::ptrdiff_t m_forceTime = 0x4c4; + constexpr std::ptrdiff_t m_attachedObject = 0x4c8; + constexpr std::ptrdiff_t m_wasRestored = 0x4cc; + constexpr std::ptrdiff_t m_integrator = 0x4d0; +} + +namespace CPhysThruster { + constexpr std::ptrdiff_t m_localOrigin = 0x510; +} + +namespace CPhysTorque { + constexpr std::ptrdiff_t m_axis = 0x510; +} + +namespace CPhysMotor { + constexpr std::ptrdiff_t m_nameAttach = 0x4b0; + constexpr std::ptrdiff_t m_hAttachedObject = 0x4b8; + constexpr std::ptrdiff_t m_spinUp = 0x4bc; + constexpr std::ptrdiff_t m_additionalAcceleration = 0x4c0; + constexpr std::ptrdiff_t m_angularAcceleration = 0x4c4; + constexpr std::ptrdiff_t m_lastTime = 0x4c8; + constexpr std::ptrdiff_t m_motor = 0x4e0; +} + +namespace CKeepUpright { + constexpr std::ptrdiff_t m_worldGoalAxis = 0x4b8; + constexpr std::ptrdiff_t m_localTestAxis = 0x4c4; + constexpr std::ptrdiff_t m_nameAttach = 0x4d8; + constexpr std::ptrdiff_t m_attachedObject = 0x4e0; + constexpr std::ptrdiff_t m_angularLimit = 0x4e4; + constexpr std::ptrdiff_t m_bActive = 0x4e8; + constexpr std::ptrdiff_t m_bDampAllRotation = 0x4e9; +} + +namespace CPhysConstraint { + constexpr std::ptrdiff_t m_nameAttach1 = 0x4b8; + constexpr std::ptrdiff_t m_nameAttach2 = 0x4c0; + constexpr std::ptrdiff_t m_breakSound = 0x4c8; + constexpr std::ptrdiff_t m_forceLimit = 0x4d0; + constexpr std::ptrdiff_t m_torqueLimit = 0x4d4; + constexpr std::ptrdiff_t m_teleportTick = 0x4d8; + constexpr std::ptrdiff_t m_minTeleportDistance = 0x4dc; + constexpr std::ptrdiff_t m_OnBreak = 0x4e0; +} + +namespace CPhysHinge { + constexpr std::ptrdiff_t m_soundInfo = 0x510; + constexpr std::ptrdiff_t m_NotifyMinLimitReached = 0x598; + constexpr std::ptrdiff_t m_NotifyMaxLimitReached = 0x5c0; + constexpr std::ptrdiff_t m_bAtMinLimit = 0x5e8; + constexpr std::ptrdiff_t m_bAtMaxLimit = 0x5e9; + constexpr std::ptrdiff_t m_hinge = 0x5ec; + constexpr std::ptrdiff_t m_hingeFriction = 0x62c; + constexpr std::ptrdiff_t m_systemLoadScale = 0x630; + constexpr std::ptrdiff_t m_bIsAxisLocal = 0x634; + constexpr std::ptrdiff_t m_flMinRotation = 0x638; + constexpr std::ptrdiff_t m_flMaxRotation = 0x63c; + constexpr std::ptrdiff_t m_flInitialRotation = 0x640; + constexpr std::ptrdiff_t m_flMotorFrequency = 0x644; + constexpr std::ptrdiff_t m_flMotorDampingRatio = 0x648; + constexpr std::ptrdiff_t m_flAngleSpeed = 0x64c; + constexpr std::ptrdiff_t m_flAngleSpeedThreshold = 0x650; + constexpr std::ptrdiff_t m_OnStartMoving = 0x658; + constexpr std::ptrdiff_t m_OnStopMoving = 0x680; +} + +namespace CPhysHingeAlias_phys_hinge_local { +} + +namespace CPhysBallSocket { + constexpr std::ptrdiff_t m_flFriction = 0x508; + constexpr std::ptrdiff_t m_bEnableSwingLimit = 0x50c; + constexpr std::ptrdiff_t m_flSwingLimit = 0x510; + constexpr std::ptrdiff_t m_bEnableTwistLimit = 0x514; + constexpr std::ptrdiff_t m_flMinTwistAngle = 0x518; + constexpr std::ptrdiff_t m_flMaxTwistAngle = 0x51c; +} + +namespace CPhysSlideConstraint { + constexpr std::ptrdiff_t m_axisEnd = 0x510; + constexpr std::ptrdiff_t m_slideFriction = 0x51c; + constexpr std::ptrdiff_t m_systemLoadScale = 0x520; + constexpr std::ptrdiff_t m_initialOffset = 0x524; + constexpr std::ptrdiff_t m_bEnableLinearConstraint = 0x528; + constexpr std::ptrdiff_t m_bEnableAngularConstraint = 0x529; + constexpr std::ptrdiff_t m_flMotorFrequency = 0x52c; + constexpr std::ptrdiff_t m_flMotorDampingRatio = 0x530; + constexpr std::ptrdiff_t m_bUseEntityPivot = 0x534; + constexpr std::ptrdiff_t m_soundInfo = 0x538; +} + +namespace CPhysFixed { + constexpr std::ptrdiff_t m_flLinearFrequency = 0x508; + constexpr std::ptrdiff_t m_flLinearDampingRatio = 0x50c; + constexpr std::ptrdiff_t m_flAngularFrequency = 0x510; + constexpr std::ptrdiff_t m_flAngularDampingRatio = 0x514; + constexpr std::ptrdiff_t m_bEnableLinearConstraint = 0x518; + constexpr std::ptrdiff_t m_bEnableAngularConstraint = 0x519; +} + +namespace CPhysPulley { + constexpr std::ptrdiff_t m_position2 = 0x508; + constexpr std::ptrdiff_t m_offset = 0x514; + constexpr std::ptrdiff_t m_addLength = 0x52c; + constexpr std::ptrdiff_t m_gearRatio = 0x530; +} + +namespace CPhysLength { + constexpr std::ptrdiff_t m_offset = 0x508; + constexpr std::ptrdiff_t m_vecAttach = 0x520; + constexpr std::ptrdiff_t m_addLength = 0x52c; + constexpr std::ptrdiff_t m_minLength = 0x530; + constexpr std::ptrdiff_t m_totalLength = 0x534; + constexpr std::ptrdiff_t m_bEnableCollision = 0x538; +} + +namespace CRagdollConstraint { + constexpr std::ptrdiff_t m_xmin = 0x508; + constexpr std::ptrdiff_t m_xmax = 0x50c; + constexpr std::ptrdiff_t m_ymin = 0x510; + constexpr std::ptrdiff_t m_ymax = 0x514; + constexpr std::ptrdiff_t m_zmin = 0x518; + constexpr std::ptrdiff_t m_zmax = 0x51c; + constexpr std::ptrdiff_t m_xfriction = 0x520; + constexpr std::ptrdiff_t m_yfriction = 0x524; + constexpr std::ptrdiff_t m_zfriction = 0x528; +} + +namespace CGenericConstraint { + constexpr std::ptrdiff_t m_nLinearMotionX = 0x510; + constexpr std::ptrdiff_t m_nLinearMotionY = 0x514; + constexpr std::ptrdiff_t m_nLinearMotionZ = 0x518; + constexpr std::ptrdiff_t m_flLinearFrequencyX = 0x51c; + constexpr std::ptrdiff_t m_flLinearFrequencyY = 0x520; + constexpr std::ptrdiff_t m_flLinearFrequencyZ = 0x524; + constexpr std::ptrdiff_t m_flLinearDampingRatioX = 0x528; + constexpr std::ptrdiff_t m_flLinearDampingRatioY = 0x52c; + constexpr std::ptrdiff_t m_flLinearDampingRatioZ = 0x530; + constexpr std::ptrdiff_t m_flMaxLinearImpulseX = 0x534; + constexpr std::ptrdiff_t m_flMaxLinearImpulseY = 0x538; + constexpr std::ptrdiff_t m_flMaxLinearImpulseZ = 0x53c; + constexpr std::ptrdiff_t m_flBreakAfterTimeX = 0x540; + constexpr std::ptrdiff_t m_flBreakAfterTimeY = 0x544; + constexpr std::ptrdiff_t m_flBreakAfterTimeZ = 0x548; + constexpr std::ptrdiff_t m_flBreakAfterTimeStartTimeX = 0x54c; + constexpr std::ptrdiff_t m_flBreakAfterTimeStartTimeY = 0x550; + constexpr std::ptrdiff_t m_flBreakAfterTimeStartTimeZ = 0x554; + constexpr std::ptrdiff_t m_flBreakAfterTimeThresholdX = 0x558; + constexpr std::ptrdiff_t m_flBreakAfterTimeThresholdY = 0x55c; + constexpr std::ptrdiff_t m_flBreakAfterTimeThresholdZ = 0x560; + constexpr std::ptrdiff_t m_flNotifyForceX = 0x564; + constexpr std::ptrdiff_t m_flNotifyForceY = 0x568; + constexpr std::ptrdiff_t m_flNotifyForceZ = 0x56c; + constexpr std::ptrdiff_t m_flNotifyForceMinTimeX = 0x570; + constexpr std::ptrdiff_t m_flNotifyForceMinTimeY = 0x574; + constexpr std::ptrdiff_t m_flNotifyForceMinTimeZ = 0x578; + constexpr std::ptrdiff_t m_flNotifyForceLastTimeX = 0x57c; + constexpr std::ptrdiff_t m_flNotifyForceLastTimeY = 0x580; + constexpr std::ptrdiff_t m_flNotifyForceLastTimeZ = 0x584; + constexpr std::ptrdiff_t m_bAxisNotifiedX = 0x588; + constexpr std::ptrdiff_t m_bAxisNotifiedY = 0x589; + constexpr std::ptrdiff_t m_bAxisNotifiedZ = 0x58a; + constexpr std::ptrdiff_t m_nAngularMotionX = 0x58c; + constexpr std::ptrdiff_t m_nAngularMotionY = 0x590; + constexpr std::ptrdiff_t m_nAngularMotionZ = 0x594; + constexpr std::ptrdiff_t m_flAngularFrequencyX = 0x598; + constexpr std::ptrdiff_t m_flAngularFrequencyY = 0x59c; + constexpr std::ptrdiff_t m_flAngularFrequencyZ = 0x5a0; + constexpr std::ptrdiff_t m_flAngularDampingRatioX = 0x5a4; + constexpr std::ptrdiff_t m_flAngularDampingRatioY = 0x5a8; + constexpr std::ptrdiff_t m_flAngularDampingRatioZ = 0x5ac; + constexpr std::ptrdiff_t m_flMaxAngularImpulseX = 0x5b0; + constexpr std::ptrdiff_t m_flMaxAngularImpulseY = 0x5b4; + constexpr std::ptrdiff_t m_flMaxAngularImpulseZ = 0x5b8; + constexpr std::ptrdiff_t m_NotifyForceReachedX = 0x5c0; + constexpr std::ptrdiff_t m_NotifyForceReachedY = 0x5e8; + constexpr std::ptrdiff_t m_NotifyForceReachedZ = 0x610; +} + +namespace CSplineConstraint { +} + +namespace CPhysWheelConstraint { + constexpr std::ptrdiff_t m_flSuspensionFrequency = 0x508; + constexpr std::ptrdiff_t m_flSuspensionDampingRatio = 0x50c; + constexpr std::ptrdiff_t m_flSuspensionHeightOffset = 0x510; + constexpr std::ptrdiff_t m_bEnableSuspensionLimit = 0x514; + constexpr std::ptrdiff_t m_flMinSuspensionOffset = 0x518; + constexpr std::ptrdiff_t m_flMaxSuspensionOffset = 0x51c; + constexpr std::ptrdiff_t m_bEnableSteeringLimit = 0x520; + constexpr std::ptrdiff_t m_flMinSteeringAngle = 0x524; + constexpr std::ptrdiff_t m_flMaxSteeringAngle = 0x528; + constexpr std::ptrdiff_t m_flSteeringAxisFriction = 0x52c; + constexpr std::ptrdiff_t m_flSpinAxisFriction = 0x530; +} + +namespace CPhysicsEntitySolver { + constexpr std::ptrdiff_t m_hMovingEntity = 0x4b8; + constexpr std::ptrdiff_t m_hPhysicsBlocker = 0x4bc; + constexpr std::ptrdiff_t m_separationDuration = 0x4c0; + constexpr std::ptrdiff_t m_cancelTime = 0x4c4; +} + +namespace CPhysicsSpring { + constexpr std::ptrdiff_t m_flFrequency = 0x4b8; + constexpr std::ptrdiff_t m_flDampingRatio = 0x4bc; + constexpr std::ptrdiff_t m_flRestLength = 0x4c0; + constexpr std::ptrdiff_t m_nameAttachStart = 0x4c8; + constexpr std::ptrdiff_t m_nameAttachEnd = 0x4d0; + constexpr std::ptrdiff_t m_start = 0x4d8; + constexpr std::ptrdiff_t m_end = 0x4e4; + constexpr std::ptrdiff_t m_teleportTick = 0x4f0; +} + +namespace CPointPush { + constexpr std::ptrdiff_t m_bEnabled = 0x4b0; + constexpr std::ptrdiff_t m_flMagnitude = 0x4b4; + constexpr std::ptrdiff_t m_flRadius = 0x4b8; + constexpr std::ptrdiff_t m_flInnerRadius = 0x4bc; + constexpr std::ptrdiff_t m_flConeOfInfluence = 0x4c0; + constexpr std::ptrdiff_t m_iszFilterName = 0x4c8; + constexpr std::ptrdiff_t m_hFilter = 0x4d0; +} + +namespace CInfoPlayerStart { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; +} + +namespace CPointEntityFinder { + constexpr std::ptrdiff_t m_hEntity = 0x4b0; + constexpr std::ptrdiff_t m_iFilterName = 0x4b8; + constexpr std::ptrdiff_t m_hFilter = 0x4c0; + constexpr std::ptrdiff_t m_iRefName = 0x4c8; + constexpr std::ptrdiff_t m_hReference = 0x4d0; + constexpr std::ptrdiff_t m_FindMethod = 0x4d4; + constexpr std::ptrdiff_t m_OnFoundEntity = 0x4d8; +} + +namespace CPointValueRemapper { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_bUpdateOnClient = 0x4b1; + constexpr std::ptrdiff_t m_nInputType = 0x4b4; + constexpr std::ptrdiff_t m_iszRemapLineStartName = 0x4b8; + constexpr std::ptrdiff_t m_iszRemapLineEndName = 0x4c0; + constexpr std::ptrdiff_t m_hRemapLineStart = 0x4c8; + constexpr std::ptrdiff_t m_hRemapLineEnd = 0x4cc; + constexpr std::ptrdiff_t m_flMaximumChangePerSecond = 0x4d0; + constexpr std::ptrdiff_t m_flDisengageDistance = 0x4d4; + constexpr std::ptrdiff_t m_flEngageDistance = 0x4d8; + constexpr std::ptrdiff_t m_bRequiresUseKey = 0x4dc; + constexpr std::ptrdiff_t m_nOutputType = 0x4e0; + constexpr std::ptrdiff_t m_iszOutputEntityName = 0x4e8; + constexpr std::ptrdiff_t m_iszOutputEntity2Name = 0x4f0; + constexpr std::ptrdiff_t m_iszOutputEntity3Name = 0x4f8; + constexpr std::ptrdiff_t m_iszOutputEntity4Name = 0x500; + constexpr std::ptrdiff_t m_hOutputEntities = 0x508; + constexpr std::ptrdiff_t m_nHapticsType = 0x520; + constexpr std::ptrdiff_t m_nMomentumType = 0x524; + constexpr std::ptrdiff_t m_flMomentumModifier = 0x528; + constexpr std::ptrdiff_t m_flSnapValue = 0x52c; + constexpr std::ptrdiff_t m_flCurrentMomentum = 0x530; + constexpr std::ptrdiff_t m_nRatchetType = 0x534; + constexpr std::ptrdiff_t m_flRatchetOffset = 0x538; + constexpr std::ptrdiff_t m_flInputOffset = 0x53c; + constexpr std::ptrdiff_t m_bEngaged = 0x540; + constexpr std::ptrdiff_t m_bFirstUpdate = 0x541; + constexpr std::ptrdiff_t m_flPreviousValue = 0x544; + constexpr std::ptrdiff_t m_flPreviousUpdateTickTime = 0x548; + constexpr std::ptrdiff_t m_vecPreviousTestPoint = 0x54c; + constexpr std::ptrdiff_t m_hUsingPlayer = 0x558; + constexpr std::ptrdiff_t m_flCustomOutputValue = 0x55c; + constexpr std::ptrdiff_t m_iszSoundEngage = 0x560; + constexpr std::ptrdiff_t m_iszSoundDisengage = 0x568; + constexpr std::ptrdiff_t m_iszSoundReachedValueZero = 0x570; + constexpr std::ptrdiff_t m_iszSoundReachedValueOne = 0x578; + constexpr std::ptrdiff_t m_iszSoundMovingLoop = 0x580; + constexpr std::ptrdiff_t m_Position = 0x590; + constexpr std::ptrdiff_t m_PositionDelta = 0x5b8; + constexpr std::ptrdiff_t m_OnReachedValueZero = 0x5e0; + constexpr std::ptrdiff_t m_OnReachedValueOne = 0x608; + constexpr std::ptrdiff_t m_OnReachedValueCustom = 0x630; + constexpr std::ptrdiff_t m_OnEngage = 0x658; + constexpr std::ptrdiff_t m_OnDisengage = 0x680; +} + +namespace CPointWorldText { + constexpr std::ptrdiff_t m_messageText = 0x700; + constexpr std::ptrdiff_t m_FontName = 0x900; + constexpr std::ptrdiff_t m_bEnabled = 0x940; + constexpr std::ptrdiff_t m_bFullbright = 0x941; + constexpr std::ptrdiff_t m_flWorldUnitsPerPx = 0x944; + constexpr std::ptrdiff_t m_flFontSize = 0x948; + constexpr std::ptrdiff_t m_flDepthOffset = 0x94c; + constexpr std::ptrdiff_t m_Color = 0x950; + constexpr std::ptrdiff_t m_nJustifyHorizontal = 0x954; + constexpr std::ptrdiff_t m_nJustifyVertical = 0x958; + constexpr std::ptrdiff_t m_nReorientMode = 0x95c; +} + +namespace CPointAngleSensor { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_nLookAtName = 0x4b8; + constexpr std::ptrdiff_t m_hTargetEntity = 0x4c0; + constexpr std::ptrdiff_t m_hLookAtEntity = 0x4c4; + constexpr std::ptrdiff_t m_flDuration = 0x4c8; + constexpr std::ptrdiff_t m_flDotTolerance = 0x4cc; + constexpr std::ptrdiff_t m_flFacingTime = 0x4d0; + constexpr std::ptrdiff_t m_bFired = 0x4d4; + constexpr std::ptrdiff_t m_OnFacingLookat = 0x4d8; + constexpr std::ptrdiff_t m_OnNotFacingLookat = 0x500; + constexpr std::ptrdiff_t m_TargetDir = 0x528; + constexpr std::ptrdiff_t m_FacingPercentage = 0x550; +} + +namespace CPointProximitySensor { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_hTargetEntity = 0x4b4; + constexpr std::ptrdiff_t m_Distance = 0x4b8; +} + +namespace CPointAngularVelocitySensor { + constexpr std::ptrdiff_t m_hTargetEntity = 0x4b0; + constexpr std::ptrdiff_t m_flThreshold = 0x4b4; + constexpr std::ptrdiff_t m_nLastCompareResult = 0x4b8; + constexpr std::ptrdiff_t m_nLastFireResult = 0x4bc; + constexpr std::ptrdiff_t m_flFireTime = 0x4c0; + constexpr std::ptrdiff_t m_flFireInterval = 0x4c4; + constexpr std::ptrdiff_t m_flLastAngVelocity = 0x4c8; + constexpr std::ptrdiff_t m_lastOrientation = 0x4cc; + constexpr std::ptrdiff_t m_vecAxis = 0x4d8; + constexpr std::ptrdiff_t m_bUseHelper = 0x4e4; + constexpr std::ptrdiff_t m_AngularVelocity = 0x4e8; + constexpr std::ptrdiff_t m_OnLessThan = 0x510; + constexpr std::ptrdiff_t m_OnLessThanOrEqualTo = 0x538; + constexpr std::ptrdiff_t m_OnGreaterThan = 0x560; + constexpr std::ptrdiff_t m_OnGreaterThanOrEqualTo = 0x588; + constexpr std::ptrdiff_t m_OnEqualTo = 0x5b0; +} + +namespace CPointVelocitySensor { + constexpr std::ptrdiff_t m_hTargetEntity = 0x4b0; + constexpr std::ptrdiff_t m_vecAxis = 0x4b4; + constexpr std::ptrdiff_t m_bEnabled = 0x4c0; + constexpr std::ptrdiff_t m_fPrevVelocity = 0x4c4; + constexpr std::ptrdiff_t m_flAvgInterval = 0x4c8; + constexpr std::ptrdiff_t m_Velocity = 0x4d0; +} + +namespace CPointHurt { + constexpr std::ptrdiff_t m_nDamage = 0x4b0; + constexpr std::ptrdiff_t m_bitsDamageType = 0x4b4; + constexpr std::ptrdiff_t m_flRadius = 0x4b8; + constexpr std::ptrdiff_t m_flDelay = 0x4bc; + constexpr std::ptrdiff_t m_strTarget = 0x4c0; + constexpr std::ptrdiff_t m_pActivator = 0x4c8; +} + +namespace CPointTeleport { + constexpr std::ptrdiff_t m_vSaveOrigin = 0x4b0; + constexpr std::ptrdiff_t m_vSaveAngles = 0x4bc; + constexpr std::ptrdiff_t m_bTeleportParentedEntities = 0x4c8; + constexpr std::ptrdiff_t m_bTeleportUseCurrentAngle = 0x4c9; +} + +namespace CEnableMotionFixup { +} + +namespace CFuncPropRespawnZone { +} + +namespace CRagdollManager { + constexpr std::ptrdiff_t m_iCurrentMaxRagdollCount = 0x4b0; + constexpr std::ptrdiff_t m_iMaxRagdollCount = 0x4b4; + constexpr std::ptrdiff_t m_bSaveImportant = 0x4b8; +} + +namespace CRevertSaved { + constexpr std::ptrdiff_t m_loadTime = 0x700; + constexpr std::ptrdiff_t m_Duration = 0x704; + constexpr std::ptrdiff_t m_HoldTime = 0x708; +} + +namespace CSceneListManager { + constexpr std::ptrdiff_t m_hListManagers = 0x4b0; + constexpr std::ptrdiff_t m_iszScenes = 0x4c8; + constexpr std::ptrdiff_t m_hScenes = 0x548; +} + +namespace CSceneEntity { + constexpr std::ptrdiff_t m_iszSceneFile = 0x4b8; + constexpr std::ptrdiff_t m_iszResumeSceneFile = 0x4c0; + constexpr std::ptrdiff_t m_iszTarget1 = 0x4c8; + constexpr std::ptrdiff_t m_iszTarget2 = 0x4d0; + constexpr std::ptrdiff_t m_iszTarget3 = 0x4d8; + constexpr std::ptrdiff_t m_iszTarget4 = 0x4e0; + constexpr std::ptrdiff_t m_iszTarget5 = 0x4e8; + constexpr std::ptrdiff_t m_iszTarget6 = 0x4f0; + constexpr std::ptrdiff_t m_iszTarget7 = 0x4f8; + constexpr std::ptrdiff_t m_iszTarget8 = 0x500; + constexpr std::ptrdiff_t m_hTarget1 = 0x508; + constexpr std::ptrdiff_t m_hTarget2 = 0x50c; + constexpr std::ptrdiff_t m_hTarget3 = 0x510; + constexpr std::ptrdiff_t m_hTarget4 = 0x514; + constexpr std::ptrdiff_t m_hTarget5 = 0x518; + constexpr std::ptrdiff_t m_hTarget6 = 0x51c; + constexpr std::ptrdiff_t m_hTarget7 = 0x520; + constexpr std::ptrdiff_t m_hTarget8 = 0x524; + constexpr std::ptrdiff_t m_bIsPlayingBack = 0x528; + constexpr std::ptrdiff_t m_bPaused = 0x529; + constexpr std::ptrdiff_t m_bMultiplayer = 0x52a; + constexpr std::ptrdiff_t m_bAutogenerated = 0x52b; + constexpr std::ptrdiff_t m_flForceClientTime = 0x52c; + constexpr std::ptrdiff_t m_flCurrentTime = 0x530; + constexpr std::ptrdiff_t m_flFrameTime = 0x534; + constexpr std::ptrdiff_t m_bCancelAtNextInterrupt = 0x538; + constexpr std::ptrdiff_t m_fPitch = 0x53c; + constexpr std::ptrdiff_t m_bAutomated = 0x540; + constexpr std::ptrdiff_t m_nAutomatedAction = 0x544; + constexpr std::ptrdiff_t m_flAutomationDelay = 0x548; + constexpr std::ptrdiff_t m_flAutomationTime = 0x54c; + constexpr std::ptrdiff_t m_hWaitingForThisResumeScene = 0x550; + constexpr std::ptrdiff_t m_bWaitingForResumeScene = 0x554; + constexpr std::ptrdiff_t m_bPausedViaInput = 0x555; + constexpr std::ptrdiff_t m_bPauseAtNextInterrupt = 0x556; + constexpr std::ptrdiff_t m_bWaitingForActor = 0x557; + constexpr std::ptrdiff_t m_bWaitingForInterrupt = 0x558; + constexpr std::ptrdiff_t m_bInterruptedActorsScenes = 0x559; + constexpr std::ptrdiff_t m_bBreakOnNonIdle = 0x55a; + constexpr std::ptrdiff_t m_hActorList = 0x560; + constexpr std::ptrdiff_t m_hRemoveActorList = 0x578; + constexpr std::ptrdiff_t m_nSceneFlushCounter = 0x5a0; + constexpr std::ptrdiff_t m_nSceneStringIndex = 0x5a4; + constexpr std::ptrdiff_t m_OnStart = 0x5a8; + constexpr std::ptrdiff_t m_OnCompletion = 0x5d0; + constexpr std::ptrdiff_t m_OnCanceled = 0x5f8; + constexpr std::ptrdiff_t m_OnPaused = 0x620; + constexpr std::ptrdiff_t m_OnResumed = 0x648; + constexpr std::ptrdiff_t m_OnTrigger = 0x670; + constexpr std::ptrdiff_t m_hInterruptScene = 0x980; + constexpr std::ptrdiff_t m_nInterruptCount = 0x984; + constexpr std::ptrdiff_t m_bSceneMissing = 0x988; + constexpr std::ptrdiff_t m_bInterrupted = 0x989; + constexpr std::ptrdiff_t m_bCompletedEarly = 0x98a; + constexpr std::ptrdiff_t m_bInterruptSceneFinished = 0x98b; + constexpr std::ptrdiff_t m_bRestoring = 0x98c; + constexpr std::ptrdiff_t m_hNotifySceneCompletion = 0x990; + constexpr std::ptrdiff_t m_hListManagers = 0x9a8; + constexpr std::ptrdiff_t m_iszSoundName = 0x9e8; + constexpr std::ptrdiff_t m_hActor = 0x9f0; + constexpr std::ptrdiff_t m_hActivator = 0x9f4; + constexpr std::ptrdiff_t m_BusyActor = 0x9f8; + constexpr std::ptrdiff_t m_iPlayerDeathBehavior = 0x9fc; +} + +namespace CScriptedSequence { + constexpr std::ptrdiff_t m_iszEntry = 0x4b0; + constexpr std::ptrdiff_t m_iszPreIdle = 0x4b8; + constexpr std::ptrdiff_t m_iszPlay = 0x4c0; + constexpr std::ptrdiff_t m_iszPostIdle = 0x4c8; + constexpr std::ptrdiff_t m_iszModifierToAddOnPlay = 0x4d0; + constexpr std::ptrdiff_t m_iszNextScript = 0x4d8; + constexpr std::ptrdiff_t m_iszEntity = 0x4e0; + constexpr std::ptrdiff_t m_iszSyncGroup = 0x4e8; + constexpr std::ptrdiff_t m_nMoveTo = 0x4f0; + constexpr std::ptrdiff_t m_bIsPlayingPreIdle = 0x4f4; + constexpr std::ptrdiff_t m_bIsPlayingEntry = 0x4f5; + constexpr std::ptrdiff_t m_bIsPlayingAction = 0x4f6; + constexpr std::ptrdiff_t m_bIsPlayingPostIdle = 0x4f7; + constexpr std::ptrdiff_t m_bLoopPreIdleSequence = 0x4f8; + constexpr std::ptrdiff_t m_bLoopActionSequence = 0x4f9; + constexpr std::ptrdiff_t m_bLoopPostIdleSequence = 0x4fa; + constexpr std::ptrdiff_t m_bSynchPostIdles = 0x4fb; + constexpr std::ptrdiff_t m_bIgnoreGravity = 0x4fc; + constexpr std::ptrdiff_t m_bDisableNPCCollisions = 0x4fd; + constexpr std::ptrdiff_t m_bKeepAnimgraphLockedPost = 0x4fe; + constexpr std::ptrdiff_t m_bDontAddModifiers = 0x4ff; + constexpr std::ptrdiff_t m_flRadius = 0x500; + constexpr std::ptrdiff_t m_flRepeat = 0x504; + constexpr std::ptrdiff_t m_flPlayAnimFadeInTime = 0x508; + constexpr std::ptrdiff_t m_flMoveInterpTime = 0x50c; + constexpr std::ptrdiff_t m_flAngRate = 0x510; + constexpr std::ptrdiff_t m_iDelay = 0x514; + constexpr std::ptrdiff_t m_startTime = 0x518; + constexpr std::ptrdiff_t m_bWaitForBeginSequence = 0x51c; + constexpr std::ptrdiff_t m_saved_effects = 0x520; + constexpr std::ptrdiff_t m_savedFlags = 0x524; + constexpr std::ptrdiff_t m_savedCollisionGroup = 0x528; + constexpr std::ptrdiff_t m_interruptable = 0x52c; + constexpr std::ptrdiff_t m_sequenceStarted = 0x52d; + constexpr std::ptrdiff_t m_bPrevAnimatedEveryTick = 0x52e; + constexpr std::ptrdiff_t m_bForcedAnimatedEveryTick = 0x52f; + constexpr std::ptrdiff_t m_bPositionRelativeToOtherEntity = 0x530; + constexpr std::ptrdiff_t m_hTargetEnt = 0x534; + constexpr std::ptrdiff_t m_hNextCine = 0x538; + constexpr std::ptrdiff_t m_bThinking = 0x53c; + constexpr std::ptrdiff_t m_bInitiatedSelfDelete = 0x53d; + constexpr std::ptrdiff_t m_bIsTeleportingDueToMoveTo = 0x53e; + constexpr std::ptrdiff_t m_bAllowCustomInterruptConditions = 0x53f; + constexpr std::ptrdiff_t m_hLastFoundEntity = 0x540; + constexpr std::ptrdiff_t m_hForcedTarget = 0x544; + constexpr std::ptrdiff_t m_bDontCancelOtherSequences = 0x548; + constexpr std::ptrdiff_t m_bForceSynch = 0x549; + constexpr std::ptrdiff_t m_bTargetWasAsleep = 0x54a; + constexpr std::ptrdiff_t m_bPreventUpdateYawOnFinish = 0x54b; + constexpr std::ptrdiff_t m_bEnsureOnNavmeshOnFinish = 0x54c; + constexpr std::ptrdiff_t m_onDeathBehavior = 0x550; + constexpr std::ptrdiff_t m_ConflictResponse = 0x554; + constexpr std::ptrdiff_t m_OnBeginSequence = 0x558; + constexpr std::ptrdiff_t m_OnActionStartOrLoop = 0x580; + constexpr std::ptrdiff_t m_OnEndSequence = 0x5a8; + constexpr std::ptrdiff_t m_OnPostIdleEndSequence = 0x5d0; + constexpr std::ptrdiff_t m_OnCancelSequence = 0x5f8; + constexpr std::ptrdiff_t m_OnCancelFailedSequence = 0x620; + constexpr std::ptrdiff_t m_OnScriptEvent = 0x648; + constexpr std::ptrdiff_t m_matOtherToMain = 0x790; + constexpr std::ptrdiff_t m_hInteractionMainEntity = 0x7b0; + constexpr std::ptrdiff_t m_iPlayerDeathBehavior = 0x7b4; +} + +namespace CSoundOpvarSetEntity { + constexpr std::ptrdiff_t m_iszStackName = 0x4b8; + constexpr std::ptrdiff_t m_iszOperatorName = 0x4c0; + constexpr std::ptrdiff_t m_iszOpvarName = 0x4c8; + constexpr std::ptrdiff_t m_nOpvarType = 0x4d0; + constexpr std::ptrdiff_t m_nOpvarIndex = 0x4d4; + constexpr std::ptrdiff_t m_flOpvarValue = 0x4d8; + constexpr std::ptrdiff_t m_OpvarValueString = 0x4e0; + constexpr std::ptrdiff_t m_bSetOnSpawn = 0x4e8; +} + +namespace CAISound { + constexpr std::ptrdiff_t m_iSoundType = 0x4b0; + constexpr std::ptrdiff_t m_iSoundContext = 0x4b4; + constexpr std::ptrdiff_t m_iVolume = 0x4b8; + constexpr std::ptrdiff_t m_iSoundIndex = 0x4bc; + constexpr std::ptrdiff_t m_flDuration = 0x4c0; + constexpr std::ptrdiff_t m_iszProxyEntityName = 0x4c8; +} + +namespace CSoundStackSave { + constexpr std::ptrdiff_t m_iszStackName = 0x4b0; +} + +namespace CSoundEventEntity { + constexpr std::ptrdiff_t m_bStartOnSpawn = 0x4b0; + constexpr std::ptrdiff_t m_bToLocalPlayer = 0x4b1; + constexpr std::ptrdiff_t m_bStopOnNew = 0x4b2; + constexpr std::ptrdiff_t m_bSaveRestore = 0x4b3; + constexpr std::ptrdiff_t m_bSavedIsPlaying = 0x4b4; + constexpr std::ptrdiff_t m_flSavedElapsedTime = 0x4b8; + constexpr std::ptrdiff_t m_iszSourceEntityName = 0x4c0; + constexpr std::ptrdiff_t m_iszAttachmentName = 0x4c8; + constexpr std::ptrdiff_t m_onGUIDChanged = 0x4d0; + constexpr std::ptrdiff_t m_onSoundFinished = 0x4f8; + constexpr std::ptrdiff_t m_iszSoundName = 0x540; + constexpr std::ptrdiff_t m_hSource = 0x550; +} + +namespace CSoundEventEntityAlias_snd_event_point { +} + +namespace CSoundEventAABBEntity { + constexpr std::ptrdiff_t m_vMins = 0x558; + constexpr std::ptrdiff_t m_vMaxs = 0x564; +} + +namespace CSoundEventOBBEntity { + constexpr std::ptrdiff_t m_vMins = 0x558; + constexpr std::ptrdiff_t m_vMaxs = 0x564; +} + +namespace CSoundEventPathCornerEntity { + constexpr std::ptrdiff_t m_iszPathCorner = 0x558; + constexpr std::ptrdiff_t m_iCountMax = 0x560; + constexpr std::ptrdiff_t m_flDistanceMax = 0x564; + constexpr std::ptrdiff_t m_flDistMaxSqr = 0x568; + constexpr std::ptrdiff_t m_flDotProductMax = 0x56c; + constexpr std::ptrdiff_t bPlaying = 0x570; +} + +namespace CSoundEventParameter { + constexpr std::ptrdiff_t m_iszParamName = 0x4b8; + constexpr std::ptrdiff_t m_flFloatValue = 0x4c0; +} + +namespace CEnvSoundscapeProxyAlias_snd_soundscape_proxy { +} + +namespace CEnvSoundscapeAlias_snd_soundscape { +} + +namespace CEnvSoundscapeTriggerableAlias_snd_soundscape_triggerable { +} + +namespace CNullEntity { +} + +namespace CBaseDMStart { + constexpr std::ptrdiff_t m_Master = 0x4b0; +} + +namespace CInfoLandmark { +} + +namespace CSun { + constexpr std::ptrdiff_t m_vDirection = 0x700; + constexpr std::ptrdiff_t m_clrOverlay = 0x70c; + constexpr std::ptrdiff_t m_iszEffectName = 0x710; + constexpr std::ptrdiff_t m_iszSSEffectName = 0x718; + constexpr std::ptrdiff_t m_bOn = 0x720; + constexpr std::ptrdiff_t m_bmaxColor = 0x721; + constexpr std::ptrdiff_t m_flSize = 0x724; + constexpr std::ptrdiff_t m_flRotation = 0x728; + constexpr std::ptrdiff_t m_flHazeScale = 0x72c; + constexpr std::ptrdiff_t m_flAlphaHaze = 0x730; + constexpr std::ptrdiff_t m_flAlphaHdr = 0x734; + constexpr std::ptrdiff_t m_flAlphaScale = 0x738; + constexpr std::ptrdiff_t m_flHDRColorScale = 0x73c; + constexpr std::ptrdiff_t m_flFarZScale = 0x740; +} + +namespace CTankTargetChange { + constexpr std::ptrdiff_t m_newTarget = 0x4b0; + constexpr std::ptrdiff_t m_newTargetName = 0x4c0; +} + +namespace CTankTrainAI { + constexpr std::ptrdiff_t m_hTrain = 0x4b0; + constexpr std::ptrdiff_t m_hTargetEntity = 0x4b4; + constexpr std::ptrdiff_t m_soundPlaying = 0x4b8; + constexpr std::ptrdiff_t m_startSoundName = 0x4d0; + constexpr std::ptrdiff_t m_engineSoundName = 0x4d8; + constexpr std::ptrdiff_t m_movementSoundName = 0x4e0; + constexpr std::ptrdiff_t m_targetEntityName = 0x4e8; +} + +namespace CHandleTest { + constexpr std::ptrdiff_t m_Handle = 0x4b0; + constexpr std::ptrdiff_t m_bSendHandle = 0x4b4; +} + +namespace CHandleDummy { +} + +namespace CPlatTrigger { + constexpr std::ptrdiff_t m_pPlatform = 0x700; +} + +namespace CFuncTrainControls { +} + +namespace CTriggerVolume { + constexpr std::ptrdiff_t m_iFilterName = 0x700; + constexpr std::ptrdiff_t m_hFilter = 0x708; +} + +namespace CInfoTeleportDestination { +} + +namespace CAI_ChangeTarget { + constexpr std::ptrdiff_t m_iszNewTarget = 0x4b0; +} + +namespace CAI_ChangeHintGroup { + constexpr std::ptrdiff_t m_iSearchType = 0x4b0; + constexpr std::ptrdiff_t m_strSearchName = 0x4b8; + constexpr std::ptrdiff_t m_strNewHintGroup = 0x4c0; + constexpr std::ptrdiff_t m_flRadius = 0x4c8; +} + +namespace CLogicProximity { +} + +namespace CInfoSpawnGroupLandmark { +} + +namespace CInfoSpawnGroupLoadUnload { + constexpr std::ptrdiff_t m_OnSpawnGroupLoadStarted = 0x4b0; + constexpr std::ptrdiff_t m_OnSpawnGroupLoadFinished = 0x4d8; + constexpr std::ptrdiff_t m_OnSpawnGroupUnloadStarted = 0x500; + constexpr std::ptrdiff_t m_OnSpawnGroupUnloadFinished = 0x528; + constexpr std::ptrdiff_t m_iszSpawnGroupName = 0x550; + constexpr std::ptrdiff_t m_iszSpawnGroupFilterName = 0x558; + constexpr std::ptrdiff_t m_iszLandmarkName = 0x560; + constexpr std::ptrdiff_t m_sFixedSpawnGroupName = 0x568; + constexpr std::ptrdiff_t m_flTimeoutInterval = 0x570; + constexpr std::ptrdiff_t m_bStreamingStarted = 0x574; + constexpr std::ptrdiff_t m_bUnloadingStarted = 0x575; +} + +namespace CPointPulse { +} + +namespace CPointScript { +} + +namespace CFuncNavObstruction { + constexpr std::ptrdiff_t m_bDisabled = 0x708; +} + +namespace CAmbientGeneric { + constexpr std::ptrdiff_t m_radius = 0x4b0; + constexpr std::ptrdiff_t m_flMaxRadius = 0x4b4; + constexpr std::ptrdiff_t m_iSoundLevel = 0x4b8; + constexpr std::ptrdiff_t m_dpv = 0x4bc; + constexpr std::ptrdiff_t m_fActive = 0x520; + constexpr std::ptrdiff_t m_fLooping = 0x521; + constexpr std::ptrdiff_t m_iszSound = 0x528; + constexpr std::ptrdiff_t m_sSourceEntName = 0x530; + constexpr std::ptrdiff_t m_hSoundSource = 0x538; + constexpr std::ptrdiff_t m_nSoundSourceEntIndex = 0x53c; +} + +namespace RelationshipOverride_t { + constexpr std::ptrdiff_t entity = 0x8; + constexpr std::ptrdiff_t classType = 0xc; +} + +namespace CBaseToggle { + constexpr std::ptrdiff_t m_toggle_state = 0x700; + constexpr std::ptrdiff_t m_flMoveDistance = 0x704; + constexpr std::ptrdiff_t m_flWait = 0x708; + constexpr std::ptrdiff_t m_flLip = 0x70c; + constexpr std::ptrdiff_t m_bAlwaysFireBlockedOutputs = 0x710; + constexpr std::ptrdiff_t m_vecPosition1 = 0x714; + constexpr std::ptrdiff_t m_vecPosition2 = 0x720; + constexpr std::ptrdiff_t m_vecMoveAng = 0x72c; + constexpr std::ptrdiff_t m_vecAngle1 = 0x738; + constexpr std::ptrdiff_t m_vecAngle2 = 0x744; + constexpr std::ptrdiff_t m_flHeight = 0x750; + constexpr std::ptrdiff_t m_hActivator = 0x754; + constexpr std::ptrdiff_t m_vecFinalDest = 0x758; + constexpr std::ptrdiff_t m_vecFinalAngle = 0x764; + constexpr std::ptrdiff_t m_movementType = 0x770; + constexpr std::ptrdiff_t m_sMaster = 0x778; +} + +namespace CBaseButton { + constexpr std::ptrdiff_t m_angMoveEntitySpace = 0x780; + constexpr std::ptrdiff_t m_fStayPushed = 0x78c; + constexpr std::ptrdiff_t m_fRotating = 0x78d; + constexpr std::ptrdiff_t m_ls = 0x790; + constexpr std::ptrdiff_t m_sUseSound = 0x7b0; + constexpr std::ptrdiff_t m_sLockedSound = 0x7b8; + constexpr std::ptrdiff_t m_sUnlockedSound = 0x7c0; + constexpr std::ptrdiff_t m_bLocked = 0x7c8; + constexpr std::ptrdiff_t m_bDisabled = 0x7c9; + constexpr std::ptrdiff_t m_flUseLockedTime = 0x7cc; + constexpr std::ptrdiff_t m_bSolidBsp = 0x7d0; + constexpr std::ptrdiff_t m_OnDamaged = 0x7d8; + constexpr std::ptrdiff_t m_OnPressed = 0x800; + constexpr std::ptrdiff_t m_OnUseLocked = 0x828; + constexpr std::ptrdiff_t m_OnIn = 0x850; + constexpr std::ptrdiff_t m_OnOut = 0x878; + constexpr std::ptrdiff_t m_nState = 0x8a0; + constexpr std::ptrdiff_t m_hConstraint = 0x8a4; + constexpr std::ptrdiff_t m_hConstraintParent = 0x8a8; + constexpr std::ptrdiff_t m_bForceNpcExclude = 0x8ac; + constexpr std::ptrdiff_t m_sGlowEntity = 0x8b0; + constexpr std::ptrdiff_t m_glowEntity = 0x8b8; + constexpr std::ptrdiff_t m_usable = 0x8bc; + constexpr std::ptrdiff_t m_szDisplayText = 0x8c0; +} + +namespace CPhysicalButton { +} + +namespace CRotButton { +} + +namespace CMomentaryRotButton { + constexpr std::ptrdiff_t m_Position = 0x8c8; + constexpr std::ptrdiff_t m_OnUnpressed = 0x8f0; + constexpr std::ptrdiff_t m_OnFullyOpen = 0x918; + constexpr std::ptrdiff_t m_OnFullyClosed = 0x940; + constexpr std::ptrdiff_t m_OnReachedPosition = 0x968; + constexpr std::ptrdiff_t m_lastUsed = 0x990; + constexpr std::ptrdiff_t m_start = 0x994; + constexpr std::ptrdiff_t m_end = 0x9a0; + constexpr std::ptrdiff_t m_IdealYaw = 0x9ac; + constexpr std::ptrdiff_t m_sNoise = 0x9b0; + constexpr std::ptrdiff_t m_bUpdateTarget = 0x9b8; + constexpr std::ptrdiff_t m_direction = 0x9bc; + constexpr std::ptrdiff_t m_returnSpeed = 0x9c0; + constexpr std::ptrdiff_t m_flStartPosition = 0x9c4; +} + +namespace CRagdollMagnet { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_radius = 0x4b4; + constexpr std::ptrdiff_t m_force = 0x4b8; + constexpr std::ptrdiff_t m_axis = 0x4bc; +} + +namespace CBaseDoor { + constexpr std::ptrdiff_t m_angMoveEntitySpace = 0x790; + constexpr std::ptrdiff_t m_vecMoveDirParentSpace = 0x79c; + constexpr std::ptrdiff_t m_ls = 0x7a8; + constexpr std::ptrdiff_t m_bForceClosed = 0x7c8; + constexpr std::ptrdiff_t m_bDoorGroup = 0x7c9; + constexpr std::ptrdiff_t m_bLocked = 0x7ca; + constexpr std::ptrdiff_t m_bIgnoreDebris = 0x7cb; + constexpr std::ptrdiff_t m_eSpawnPosition = 0x7cc; + constexpr std::ptrdiff_t m_flBlockDamage = 0x7d0; + constexpr std::ptrdiff_t m_NoiseMoving = 0x7d8; + constexpr std::ptrdiff_t m_NoiseArrived = 0x7e0; + constexpr std::ptrdiff_t m_NoiseMovingClosed = 0x7e8; + constexpr std::ptrdiff_t m_NoiseArrivedClosed = 0x7f0; + constexpr std::ptrdiff_t m_ChainTarget = 0x7f8; + constexpr std::ptrdiff_t m_OnBlockedClosing = 0x800; + constexpr std::ptrdiff_t m_OnBlockedOpening = 0x828; + constexpr std::ptrdiff_t m_OnUnblockedClosing = 0x850; + constexpr std::ptrdiff_t m_OnUnblockedOpening = 0x878; + constexpr std::ptrdiff_t m_OnFullyClosed = 0x8a0; + constexpr std::ptrdiff_t m_OnFullyOpen = 0x8c8; + constexpr std::ptrdiff_t m_OnClose = 0x8f0; + constexpr std::ptrdiff_t m_OnOpen = 0x918; + constexpr std::ptrdiff_t m_OnLockedUse = 0x940; + constexpr std::ptrdiff_t m_bLoopMoveSound = 0x968; + constexpr std::ptrdiff_t m_bCreateNavObstacle = 0x980; + constexpr std::ptrdiff_t m_isChaining = 0x981; + constexpr std::ptrdiff_t m_bIsUsable = 0x982; +} + +namespace CEntityBlocker { +} + +namespace CEntityDissolve { + constexpr std::ptrdiff_t m_flFadeInStart = 0x700; + constexpr std::ptrdiff_t m_flFadeInLength = 0x704; + constexpr std::ptrdiff_t m_flFadeOutModelStart = 0x708; + constexpr std::ptrdiff_t m_flFadeOutModelLength = 0x70c; + constexpr std::ptrdiff_t m_flFadeOutStart = 0x710; + constexpr std::ptrdiff_t m_flFadeOutLength = 0x714; + constexpr std::ptrdiff_t m_flStartTime = 0x718; + constexpr std::ptrdiff_t m_nDissolveType = 0x71c; + constexpr std::ptrdiff_t m_vDissolverOrigin = 0x720; + constexpr std::ptrdiff_t m_nMagnitude = 0x72c; +} + +namespace CEnvProjectedTexture { + constexpr std::ptrdiff_t m_hTargetEntity = 0x700; + constexpr std::ptrdiff_t m_bState = 0x704; + constexpr std::ptrdiff_t m_bAlwaysUpdate = 0x705; + constexpr std::ptrdiff_t m_flLightFOV = 0x708; + constexpr std::ptrdiff_t m_bEnableShadows = 0x70c; + constexpr std::ptrdiff_t m_bSimpleProjection = 0x70d; + constexpr std::ptrdiff_t m_bLightOnlyTarget = 0x70e; + constexpr std::ptrdiff_t m_bLightWorld = 0x70f; + constexpr std::ptrdiff_t m_bCameraSpace = 0x710; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x714; + constexpr std::ptrdiff_t m_LightColor = 0x718; + constexpr std::ptrdiff_t m_flIntensity = 0x71c; + constexpr std::ptrdiff_t m_flLinearAttenuation = 0x720; + constexpr std::ptrdiff_t m_flQuadraticAttenuation = 0x724; + constexpr std::ptrdiff_t m_bVolumetric = 0x728; + constexpr std::ptrdiff_t m_flNoiseStrength = 0x72c; + constexpr std::ptrdiff_t m_flFlashlightTime = 0x730; + constexpr std::ptrdiff_t m_nNumPlanes = 0x734; + constexpr std::ptrdiff_t m_flPlaneOffset = 0x738; + constexpr std::ptrdiff_t m_flVolumetricIntensity = 0x73c; + constexpr std::ptrdiff_t m_flColorTransitionTime = 0x740; + constexpr std::ptrdiff_t m_flAmbient = 0x744; + constexpr std::ptrdiff_t m_SpotlightTextureName = 0x748; + constexpr std::ptrdiff_t m_nSpotlightTextureFrame = 0x948; + constexpr std::ptrdiff_t m_nShadowQuality = 0x94c; + constexpr std::ptrdiff_t m_flNearZ = 0x950; + constexpr std::ptrdiff_t m_flFarZ = 0x954; + constexpr std::ptrdiff_t m_flProjectionSize = 0x958; + constexpr std::ptrdiff_t m_flRotation = 0x95c; + constexpr std::ptrdiff_t m_bFlipHorizontal = 0x960; +} + +namespace CEnvDecal { + constexpr std::ptrdiff_t m_hDecalMaterial = 0x700; + constexpr std::ptrdiff_t m_flWidth = 0x708; + constexpr std::ptrdiff_t m_flHeight = 0x70c; + constexpr std::ptrdiff_t m_flDepth = 0x710; + constexpr std::ptrdiff_t m_nRenderOrder = 0x714; + constexpr std::ptrdiff_t m_bProjectOnWorld = 0x718; + constexpr std::ptrdiff_t m_bProjectOnCharacters = 0x719; + constexpr std::ptrdiff_t m_bProjectOnWater = 0x71a; + constexpr std::ptrdiff_t m_flDepthSortBias = 0x71c; +} + +namespace CMessage { + constexpr std::ptrdiff_t m_iszMessage = 0x4b0; + constexpr std::ptrdiff_t m_MessageVolume = 0x4b8; + constexpr std::ptrdiff_t m_MessageAttenuation = 0x4bc; + constexpr std::ptrdiff_t m_Radius = 0x4c0; + constexpr std::ptrdiff_t m_sNoise = 0x4c8; + constexpr std::ptrdiff_t m_OnShowMessage = 0x4d0; +} + +namespace CEnvMicrophone { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_hMeasureTarget = 0x4b4; + constexpr std::ptrdiff_t m_nSoundMask = 0x4b8; + constexpr std::ptrdiff_t m_flSensitivity = 0x4bc; + constexpr std::ptrdiff_t m_flSmoothFactor = 0x4c0; + constexpr std::ptrdiff_t m_flMaxRange = 0x4c4; + constexpr std::ptrdiff_t m_iszSpeakerName = 0x4c8; + constexpr std::ptrdiff_t m_hSpeaker = 0x4d0; + constexpr std::ptrdiff_t m_bAvoidFeedback = 0x4d4; + constexpr std::ptrdiff_t m_iSpeakerDSPPreset = 0x4d8; + constexpr std::ptrdiff_t m_iszListenFilter = 0x4e0; + constexpr std::ptrdiff_t m_hListenFilter = 0x4e8; + constexpr std::ptrdiff_t m_SoundLevel = 0x4f0; + constexpr std::ptrdiff_t m_OnRoutedSound = 0x518; + constexpr std::ptrdiff_t m_OnHeardSound = 0x540; + constexpr std::ptrdiff_t m_szLastSound = 0x568; + constexpr std::ptrdiff_t m_iLastRoutedFrame = 0x668; +} + +namespace CBreakable { + constexpr std::ptrdiff_t m_Material = 0x710; + constexpr std::ptrdiff_t m_hBreaker = 0x714; + constexpr std::ptrdiff_t m_Explosion = 0x718; + constexpr std::ptrdiff_t m_iszSpawnObject = 0x720; + constexpr std::ptrdiff_t m_flPressureDelay = 0x728; + constexpr std::ptrdiff_t m_iMinHealthDmg = 0x72c; + constexpr std::ptrdiff_t m_iszPropData = 0x730; + constexpr std::ptrdiff_t m_impactEnergyScale = 0x738; + constexpr std::ptrdiff_t m_nOverrideBlockLOS = 0x73c; + constexpr std::ptrdiff_t m_OnBreak = 0x740; + constexpr std::ptrdiff_t m_OnHealthChanged = 0x768; + constexpr std::ptrdiff_t m_flDmgModBullet = 0x790; + constexpr std::ptrdiff_t m_flDmgModClub = 0x794; + constexpr std::ptrdiff_t m_flDmgModExplosive = 0x798; + constexpr std::ptrdiff_t m_flDmgModFire = 0x79c; + constexpr std::ptrdiff_t m_iszPhysicsDamageTableName = 0x7a0; + constexpr std::ptrdiff_t m_iszBasePropData = 0x7a8; + constexpr std::ptrdiff_t m_iInteractions = 0x7b0; + constexpr std::ptrdiff_t m_PerformanceMode = 0x7b4; + constexpr std::ptrdiff_t m_hPhysicsAttacker = 0x7b8; + constexpr std::ptrdiff_t m_flLastPhysicsInfluenceTime = 0x7bc; +} + +namespace CFuncMoveLinear { + constexpr std::ptrdiff_t m_authoredPosition = 0x780; + constexpr std::ptrdiff_t m_angMoveEntitySpace = 0x784; + constexpr std::ptrdiff_t m_vecMoveDirParentSpace = 0x790; + constexpr std::ptrdiff_t m_soundStart = 0x7a0; + constexpr std::ptrdiff_t m_soundStop = 0x7a8; + constexpr std::ptrdiff_t m_currentSound = 0x7b0; + constexpr std::ptrdiff_t m_flBlockDamage = 0x7b8; + constexpr std::ptrdiff_t m_flStartPosition = 0x7bc; + constexpr std::ptrdiff_t m_flMoveDistance = 0x7c0; + constexpr std::ptrdiff_t m_OnFullyOpen = 0x7d0; + constexpr std::ptrdiff_t m_OnFullyClosed = 0x7f8; + constexpr std::ptrdiff_t m_bCreateMovableNavMesh = 0x820; + constexpr std::ptrdiff_t m_bCreateNavObstacle = 0x821; +} + +namespace CFuncRotating { + constexpr std::ptrdiff_t m_vecMoveAng = 0x700; + constexpr std::ptrdiff_t m_flFanFriction = 0x70c; + constexpr std::ptrdiff_t m_flAttenuation = 0x710; + constexpr std::ptrdiff_t m_flVolume = 0x714; + constexpr std::ptrdiff_t m_flTargetSpeed = 0x718; + constexpr std::ptrdiff_t m_flMaxSpeed = 0x71c; + constexpr std::ptrdiff_t m_flBlockDamage = 0x720; + constexpr std::ptrdiff_t m_flTimeScale = 0x724; + constexpr std::ptrdiff_t m_NoiseRunning = 0x728; + constexpr std::ptrdiff_t m_bReversed = 0x730; + constexpr std::ptrdiff_t m_angStart = 0x73c; + constexpr std::ptrdiff_t m_bStopAtStartPos = 0x748; + constexpr std::ptrdiff_t m_vecClientOrigin = 0x74c; + constexpr std::ptrdiff_t m_vecClientAngles = 0x758; +} + +namespace CItemGenericTriggerHelper { + constexpr std::ptrdiff_t m_hParentItem = 0x700; +} + +namespace CRuleEntity { + constexpr std::ptrdiff_t m_iszMaster = 0x700; +} + +namespace CRulePointEntity { + constexpr std::ptrdiff_t m_Score = 0x708; +} + +namespace CGamePlayerEquip { + constexpr std::ptrdiff_t m_weaponNames = 0x710; + constexpr std::ptrdiff_t m_weaponCount = 0x810; +} + +namespace CMarkupVolume { + constexpr std::ptrdiff_t m_bEnabled = 0x700; +} + +namespace CMarkupVolumeTagged { + constexpr std::ptrdiff_t m_bIsGroup = 0x738; + constexpr std::ptrdiff_t m_bGroupByPrefab = 0x739; + constexpr std::ptrdiff_t m_bGroupByVolume = 0x73a; + constexpr std::ptrdiff_t m_bGroupOtherGroups = 0x73b; + constexpr std::ptrdiff_t m_bIsInGroup = 0x73c; +} + +namespace CMarkupVolumeWithRef { + constexpr std::ptrdiff_t m_bUseRef = 0x740; + constexpr std::ptrdiff_t m_vRefPos = 0x744; + constexpr std::ptrdiff_t m_flRefDot = 0x750; +} + +namespace CFuncBrush { + constexpr std::ptrdiff_t m_iSolidity = 0x700; + constexpr std::ptrdiff_t m_iDisabled = 0x704; + constexpr std::ptrdiff_t m_bSolidBsp = 0x708; + constexpr std::ptrdiff_t m_iszExcludedClass = 0x710; + constexpr std::ptrdiff_t m_bInvertExclusion = 0x718; + constexpr std::ptrdiff_t m_bScriptedMovement = 0x719; +} + +namespace CPathTrack { + constexpr std::ptrdiff_t m_pnext = 0x4b0; + constexpr std::ptrdiff_t m_pprevious = 0x4b8; + constexpr std::ptrdiff_t m_paltpath = 0x4c0; + constexpr std::ptrdiff_t m_flRadius = 0x4c8; + constexpr std::ptrdiff_t m_length = 0x4cc; + constexpr std::ptrdiff_t m_altName = 0x4d0; + constexpr std::ptrdiff_t m_nIterVal = 0x4d8; + constexpr std::ptrdiff_t m_eOrientationType = 0x4dc; + constexpr std::ptrdiff_t m_OnPass = 0x4e0; +} + +namespace CPhysBox { + constexpr std::ptrdiff_t m_damageType = 0x7c0; + constexpr std::ptrdiff_t m_massScale = 0x7c4; + constexpr std::ptrdiff_t m_damageToEnableMotion = 0x7c8; + constexpr std::ptrdiff_t m_flForceToEnableMotion = 0x7cc; + constexpr std::ptrdiff_t m_angPreferredCarryAngles = 0x7d0; + constexpr std::ptrdiff_t m_bNotSolidToWorld = 0x7dc; + constexpr std::ptrdiff_t m_bEnableUseOutput = 0x7dd; + constexpr std::ptrdiff_t m_iExploitableByPlayer = 0x7e0; + constexpr std::ptrdiff_t m_flTouchOutputPerEntityDelay = 0x7e4; + constexpr std::ptrdiff_t m_OnDamaged = 0x7e8; + constexpr std::ptrdiff_t m_OnAwakened = 0x810; + constexpr std::ptrdiff_t m_OnMotionEnabled = 0x838; + constexpr std::ptrdiff_t m_OnPlayerUse = 0x860; + constexpr std::ptrdiff_t m_OnStartTouch = 0x888; + constexpr std::ptrdiff_t m_hCarryingPlayer = 0x8b0; +} + +namespace CPhysExplosion { + constexpr std::ptrdiff_t m_bExplodeOnSpawn = 0x4b0; + constexpr std::ptrdiff_t m_flMagnitude = 0x4b4; + constexpr std::ptrdiff_t m_flDamage = 0x4b8; + constexpr std::ptrdiff_t m_radius = 0x4bc; + constexpr std::ptrdiff_t m_targetEntityName = 0x4c0; + constexpr std::ptrdiff_t m_flInnerRadius = 0x4c8; + constexpr std::ptrdiff_t m_flPushScale = 0x4cc; + constexpr std::ptrdiff_t m_bConvertToDebrisWhenPossible = 0x4d0; + constexpr std::ptrdiff_t m_OnPushedPlayer = 0x4d8; +} + +namespace CPhysImpact { + constexpr std::ptrdiff_t m_damage = 0x4b0; + constexpr std::ptrdiff_t m_distance = 0x4b4; + constexpr std::ptrdiff_t m_directionEntityName = 0x4b8; +} + +namespace CRopeKeyframe { + constexpr std::ptrdiff_t m_RopeFlags = 0x708; + constexpr std::ptrdiff_t m_iNextLinkName = 0x710; + constexpr std::ptrdiff_t m_Slack = 0x718; + constexpr std::ptrdiff_t m_Width = 0x71c; + constexpr std::ptrdiff_t m_TextureScale = 0x720; + constexpr std::ptrdiff_t m_nSegments = 0x724; + constexpr std::ptrdiff_t m_bConstrainBetweenEndpoints = 0x725; + constexpr std::ptrdiff_t m_strRopeMaterialModel = 0x728; + constexpr std::ptrdiff_t m_iRopeMaterialModelIndex = 0x730; + constexpr std::ptrdiff_t m_Subdiv = 0x738; + constexpr std::ptrdiff_t m_nChangeCount = 0x739; + constexpr std::ptrdiff_t m_RopeLength = 0x73a; + constexpr std::ptrdiff_t m_fLockedPoints = 0x73c; + constexpr std::ptrdiff_t m_bCreatedFromMapFile = 0x73d; + constexpr std::ptrdiff_t m_flScrollSpeed = 0x740; + constexpr std::ptrdiff_t m_bStartPointValid = 0x744; + constexpr std::ptrdiff_t m_bEndPointValid = 0x745; + constexpr std::ptrdiff_t m_hStartPoint = 0x748; + constexpr std::ptrdiff_t m_hEndPoint = 0x74c; + constexpr std::ptrdiff_t m_iStartAttachment = 0x750; + constexpr std::ptrdiff_t m_iEndAttachment = 0x751; +} + +namespace CSoundEnt { + constexpr std::ptrdiff_t m_iFreeSound = 0x4b0; + constexpr std::ptrdiff_t m_iActiveSound = 0x4b4; + constexpr std::ptrdiff_t m_cLastActiveSounds = 0x4b8; + constexpr std::ptrdiff_t m_SoundPool = 0x4bc; +} + +namespace CSpotlightEnd { + constexpr std::ptrdiff_t m_flLightScale = 0x700; + constexpr std::ptrdiff_t m_Radius = 0x704; + constexpr std::ptrdiff_t m_vSpotlightDir = 0x708; + constexpr std::ptrdiff_t m_vSpotlightOrg = 0x714; +} + +namespace CFuncTrackTrain { + constexpr std::ptrdiff_t m_ppath = 0x700; + constexpr std::ptrdiff_t m_length = 0x704; + constexpr std::ptrdiff_t m_vPosPrev = 0x708; + constexpr std::ptrdiff_t m_angPrev = 0x714; + constexpr std::ptrdiff_t m_controlMins = 0x720; + constexpr std::ptrdiff_t m_controlMaxs = 0x72c; + constexpr std::ptrdiff_t m_lastBlockPos = 0x738; + constexpr std::ptrdiff_t m_lastBlockTick = 0x744; + constexpr std::ptrdiff_t m_flVolume = 0x748; + constexpr std::ptrdiff_t m_flBank = 0x74c; + constexpr std::ptrdiff_t m_oldSpeed = 0x750; + constexpr std::ptrdiff_t m_flBlockDamage = 0x754; + constexpr std::ptrdiff_t m_height = 0x758; + constexpr std::ptrdiff_t m_maxSpeed = 0x75c; + constexpr std::ptrdiff_t m_dir = 0x760; + constexpr std::ptrdiff_t m_iszSoundMove = 0x768; + constexpr std::ptrdiff_t m_iszSoundMovePing = 0x770; + constexpr std::ptrdiff_t m_iszSoundStart = 0x778; + constexpr std::ptrdiff_t m_iszSoundStop = 0x780; + constexpr std::ptrdiff_t m_strPathTarget = 0x788; + constexpr std::ptrdiff_t m_flMoveSoundMinDuration = 0x790; + constexpr std::ptrdiff_t m_flMoveSoundMaxDuration = 0x794; + constexpr std::ptrdiff_t m_flNextMoveSoundTime = 0x798; + constexpr std::ptrdiff_t m_flMoveSoundMinPitch = 0x79c; + constexpr std::ptrdiff_t m_flMoveSoundMaxPitch = 0x7a0; + constexpr std::ptrdiff_t m_eOrientationType = 0x7a4; + constexpr std::ptrdiff_t m_eVelocityType = 0x7a8; + constexpr std::ptrdiff_t m_OnStart = 0x7b8; + constexpr std::ptrdiff_t m_OnNext = 0x7e0; + constexpr std::ptrdiff_t m_OnArrivedAtDestinationNode = 0x808; + constexpr std::ptrdiff_t m_bManualSpeedChanges = 0x830; + constexpr std::ptrdiff_t m_flDesiredSpeed = 0x834; + constexpr std::ptrdiff_t m_flSpeedChangeTime = 0x838; + constexpr std::ptrdiff_t m_flAccelSpeed = 0x83c; + constexpr std::ptrdiff_t m_flDecelSpeed = 0x840; + constexpr std::ptrdiff_t m_bAccelToSpeed = 0x844; + constexpr std::ptrdiff_t m_flTimeScale = 0x848; + constexpr std::ptrdiff_t m_flNextMPSoundTime = 0x84c; +} + +namespace CBaseTrigger { + constexpr std::ptrdiff_t m_bDisabled = 0x780; + constexpr std::ptrdiff_t m_iFilterName = 0x788; + constexpr std::ptrdiff_t m_hFilter = 0x790; + constexpr std::ptrdiff_t m_OnStartTouch = 0x798; + constexpr std::ptrdiff_t m_OnStartTouchAll = 0x7c0; + constexpr std::ptrdiff_t m_OnEndTouch = 0x7e8; + constexpr std::ptrdiff_t m_OnEndTouchAll = 0x810; + constexpr std::ptrdiff_t m_OnTouching = 0x838; + constexpr std::ptrdiff_t m_OnNotTouching = 0x860; + constexpr std::ptrdiff_t m_hTouchingEntities = 0x888; + constexpr std::ptrdiff_t m_bClientSidePredicted = 0x8a0; +} + +namespace CTriggerMultiple { + constexpr std::ptrdiff_t m_OnTrigger = 0x8a8; +} + +namespace CTriggerSndSosOpvar { + constexpr std::ptrdiff_t m_hTouchingPlayers = 0x8a8; + constexpr std::ptrdiff_t m_flPosition = 0x8c0; + constexpr std::ptrdiff_t m_flCenterSize = 0x8cc; + constexpr std::ptrdiff_t m_flMinVal = 0x8d0; + constexpr std::ptrdiff_t m_flMaxVal = 0x8d4; + constexpr std::ptrdiff_t m_flWait = 0x8d8; + constexpr std::ptrdiff_t m_opvarName = 0x8e0; + constexpr std::ptrdiff_t m_stackName = 0x8e8; + constexpr std::ptrdiff_t m_operatorName = 0x8f0; + constexpr std::ptrdiff_t m_bVolIs2D = 0x8f8; + constexpr std::ptrdiff_t m_opvarNameChar = 0x8f9; + constexpr std::ptrdiff_t m_stackNameChar = 0x9f9; + constexpr std::ptrdiff_t m_operatorNameChar = 0xaf9; + constexpr std::ptrdiff_t m_VecNormPos = 0xbfc; + constexpr std::ptrdiff_t m_flNormCenterSize = 0xc08; +} + +namespace CTriggerHurt { + constexpr std::ptrdiff_t m_flOriginalDamage = 0x8a8; + constexpr std::ptrdiff_t m_flDamage = 0x8ac; + constexpr std::ptrdiff_t m_flDamageCap = 0x8b0; + constexpr std::ptrdiff_t m_flLastDmgTime = 0x8b4; + constexpr std::ptrdiff_t m_flForgivenessDelay = 0x8b8; + constexpr std::ptrdiff_t m_bitsDamageInflict = 0x8bc; + constexpr std::ptrdiff_t m_damageModel = 0x8c0; + constexpr std::ptrdiff_t m_bNoDmgForce = 0x8c4; + constexpr std::ptrdiff_t m_vDamageForce = 0x8c8; + constexpr std::ptrdiff_t m_thinkAlways = 0x8d4; + constexpr std::ptrdiff_t m_hurtThinkPeriod = 0x8d8; + constexpr std::ptrdiff_t m_OnHurt = 0x8e0; + constexpr std::ptrdiff_t m_OnHurtPlayer = 0x908; + constexpr std::ptrdiff_t m_hurtEntities = 0x930; +} + +namespace CTriggerHurtGhost { +} + +namespace CTriggerCallback { +} + +namespace CTriggerLerpObject { + constexpr std::ptrdiff_t m_iszLerpTarget = 0x8a8; + constexpr std::ptrdiff_t m_hLerpTarget = 0x8b0; + constexpr std::ptrdiff_t m_iszLerpTargetAttachment = 0x8b8; + constexpr std::ptrdiff_t m_hLerpTargetAttachment = 0x8c0; + constexpr std::ptrdiff_t m_flLerpDuration = 0x8c4; + constexpr std::ptrdiff_t m_bLerpRestoreMoveType = 0x8c8; + constexpr std::ptrdiff_t m_bSingleLerpObject = 0x8c9; + constexpr std::ptrdiff_t m_vecLerpingObjects = 0x8d0; + constexpr std::ptrdiff_t m_iszLerpEffect = 0x8e8; + constexpr std::ptrdiff_t m_iszLerpSound = 0x8f0; + constexpr std::ptrdiff_t m_OnLerpStarted = 0x8f8; + constexpr std::ptrdiff_t m_OnLerpFinished = 0x920; +} + +namespace CChangeLevel { + constexpr std::ptrdiff_t m_sMapName = 0x8a8; + constexpr std::ptrdiff_t m_sLandmarkName = 0x8b0; + constexpr std::ptrdiff_t m_OnChangeLevel = 0x8b8; + constexpr std::ptrdiff_t m_bTouched = 0x8e0; + constexpr std::ptrdiff_t m_bNoTouch = 0x8e1; + constexpr std::ptrdiff_t m_bNewChapter = 0x8e2; + constexpr std::ptrdiff_t m_bOnChangeLevelFired = 0x8e3; +} + +namespace CTriggerTeleport { + constexpr std::ptrdiff_t m_iLandmark = 0x8a8; + constexpr std::ptrdiff_t m_bUseLandmarkAngles = 0x8b0; + constexpr std::ptrdiff_t m_bMirrorPlayer = 0x8b1; +} + +namespace CTriggerFan { + constexpr std::ptrdiff_t m_vFanOrigin = 0x8a8; + constexpr std::ptrdiff_t m_vFanEnd = 0x8b4; + constexpr std::ptrdiff_t m_vNoise = 0x8c0; + constexpr std::ptrdiff_t m_flForce = 0x8cc; + constexpr std::ptrdiff_t m_flPlayerForce = 0x8d0; + constexpr std::ptrdiff_t m_flRampTime = 0x8d4; + constexpr std::ptrdiff_t m_bFalloff = 0x8d8; + constexpr std::ptrdiff_t m_bPushPlayer = 0x8d9; + constexpr std::ptrdiff_t m_bRampDown = 0x8da; + constexpr std::ptrdiff_t m_bAddNoise = 0x8db; + constexpr std::ptrdiff_t m_RampTimer = 0x8e0; +} + +namespace CNavWalkable { +} + +namespace CFuncNavBlocker { + constexpr std::ptrdiff_t m_bDisabled = 0x700; + constexpr std::ptrdiff_t m_nBlockedTeamNumber = 0x704; +} + +namespace CNavLinkAreaEntity { + constexpr std::ptrdiff_t m_flWidth = 0x4b0; + constexpr std::ptrdiff_t m_vLocatorOffset = 0x4b4; + constexpr std::ptrdiff_t m_qLocatorAnglesOffset = 0x4c0; + constexpr std::ptrdiff_t m_strMovementForward = 0x4d0; + constexpr std::ptrdiff_t m_strMovementReverse = 0x4d8; + constexpr std::ptrdiff_t m_nNavLinkIdForward = 0x4e0; + constexpr std::ptrdiff_t m_nNavLinkIdReverse = 0x4e4; + constexpr std::ptrdiff_t m_bEnabled = 0x4e8; + constexpr std::ptrdiff_t m_strFilterName = 0x4f0; + constexpr std::ptrdiff_t m_hFilter = 0x4f8; + constexpr std::ptrdiff_t m_OnNavLinkStart = 0x500; + constexpr std::ptrdiff_t m_OnNavLinkFinish = 0x528; + constexpr std::ptrdiff_t m_bIsTerminus = 0x550; +} + +namespace CNavSpaceInfo { + constexpr std::ptrdiff_t m_bCreateFlightSpace = 0x4b0; +} + +namespace CBeam { + constexpr std::ptrdiff_t m_flFrameRate = 0x700; + constexpr std::ptrdiff_t m_flHDRColorScale = 0x704; + constexpr std::ptrdiff_t m_flFireTime = 0x708; + constexpr std::ptrdiff_t m_flDamage = 0x70c; + constexpr std::ptrdiff_t m_nNumBeamEnts = 0x710; + constexpr std::ptrdiff_t m_hBaseMaterial = 0x718; + constexpr std::ptrdiff_t m_nHaloIndex = 0x720; + constexpr std::ptrdiff_t m_nBeamType = 0x728; + constexpr std::ptrdiff_t m_nBeamFlags = 0x72c; + constexpr std::ptrdiff_t m_hAttachEntity = 0x730; + constexpr std::ptrdiff_t m_nAttachIndex = 0x758; + constexpr std::ptrdiff_t m_fWidth = 0x764; + constexpr std::ptrdiff_t m_fEndWidth = 0x768; + constexpr std::ptrdiff_t m_fFadeLength = 0x76c; + constexpr std::ptrdiff_t m_fHaloScale = 0x770; + constexpr std::ptrdiff_t m_fAmplitude = 0x774; + constexpr std::ptrdiff_t m_fStartFrame = 0x778; + constexpr std::ptrdiff_t m_fSpeed = 0x77c; + constexpr std::ptrdiff_t m_flFrame = 0x780; + constexpr std::ptrdiff_t m_nClipStyle = 0x784; + constexpr std::ptrdiff_t m_bTurnedOff = 0x788; + constexpr std::ptrdiff_t m_vecEndPos = 0x78c; + constexpr std::ptrdiff_t m_hEndEntity = 0x798; + constexpr std::ptrdiff_t m_nDissolveType = 0x79c; +} + +namespace CFuncLadder { + constexpr std::ptrdiff_t m_vecLadderDir = 0x700; + constexpr std::ptrdiff_t m_Dismounts = 0x710; + constexpr std::ptrdiff_t m_vecLocalTop = 0x728; + constexpr std::ptrdiff_t m_vecPlayerMountPositionTop = 0x734; + constexpr std::ptrdiff_t m_vecPlayerMountPositionBottom = 0x740; + constexpr std::ptrdiff_t m_flAutoRideSpeed = 0x74c; + constexpr std::ptrdiff_t m_bDisabled = 0x750; + constexpr std::ptrdiff_t m_bFakeLadder = 0x751; + constexpr std::ptrdiff_t m_bHasSlack = 0x752; + constexpr std::ptrdiff_t m_surfacePropName = 0x758; + constexpr std::ptrdiff_t m_OnPlayerGotOnLadder = 0x760; + constexpr std::ptrdiff_t m_OnPlayerGotOffLadder = 0x788; +} + +namespace CFuncShatterglass { + constexpr std::ptrdiff_t m_hGlassMaterialDamaged = 0x700; + constexpr std::ptrdiff_t m_hGlassMaterialUndamaged = 0x708; + constexpr std::ptrdiff_t m_hConcreteMaterialEdgeFace = 0x710; + constexpr std::ptrdiff_t m_hConcreteMaterialEdgeCaps = 0x718; + constexpr std::ptrdiff_t m_hConcreteMaterialEdgeFins = 0x720; + constexpr std::ptrdiff_t m_matPanelTransform = 0x728; + constexpr std::ptrdiff_t m_matPanelTransformWsTemp = 0x758; + constexpr std::ptrdiff_t m_vecShatterGlassShards = 0x788; + constexpr std::ptrdiff_t m_PanelSize = 0x7a0; + constexpr std::ptrdiff_t m_vecPanelNormalWs = 0x7a8; + constexpr std::ptrdiff_t m_nNumShardsEverCreated = 0x7b4; + constexpr std::ptrdiff_t m_flLastShatterSoundEmitTime = 0x7b8; + constexpr std::ptrdiff_t m_flLastCleanupTime = 0x7bc; + constexpr std::ptrdiff_t m_flInitAtTime = 0x7c0; + constexpr std::ptrdiff_t m_flGlassThickness = 0x7c4; + constexpr std::ptrdiff_t m_flSpawnInvulnerability = 0x7c8; + constexpr std::ptrdiff_t m_bBreakSilent = 0x7cc; + constexpr std::ptrdiff_t m_bBreakShardless = 0x7cd; + constexpr std::ptrdiff_t m_bBroken = 0x7ce; + constexpr std::ptrdiff_t m_bHasRateLimitedShards = 0x7cf; + constexpr std::ptrdiff_t m_bGlassNavIgnore = 0x7d0; + constexpr std::ptrdiff_t m_bGlassInFrame = 0x7d1; + constexpr std::ptrdiff_t m_bStartBroken = 0x7d2; + constexpr std::ptrdiff_t m_iInitialDamageType = 0x7d3; + constexpr std::ptrdiff_t m_szDamagePositioningEntityName01 = 0x7d8; + constexpr std::ptrdiff_t m_szDamagePositioningEntityName02 = 0x7e0; + constexpr std::ptrdiff_t m_szDamagePositioningEntityName03 = 0x7e8; + constexpr std::ptrdiff_t m_szDamagePositioningEntityName04 = 0x7f0; + constexpr std::ptrdiff_t m_vInitialDamagePositions = 0x7f8; + constexpr std::ptrdiff_t m_vExtraDamagePositions = 0x810; + constexpr std::ptrdiff_t m_OnBroken = 0x828; + constexpr std::ptrdiff_t m_iSurfaceType = 0x851; +} + +namespace CPrecipitationVData { + constexpr std::ptrdiff_t m_szParticlePrecipitationEffect = 0x28; + constexpr std::ptrdiff_t m_flInnerDistance = 0x108; + constexpr std::ptrdiff_t m_nAttachType = 0x10c; + constexpr std::ptrdiff_t m_bBatchSameVolumeType = 0x110; + constexpr std::ptrdiff_t m_nRTEnvCP = 0x114; + constexpr std::ptrdiff_t m_nRTEnvCPComponent = 0x118; + constexpr std::ptrdiff_t m_szModifier = 0x120; +} + +namespace CSprite { + constexpr std::ptrdiff_t m_hSpriteMaterial = 0x700; + constexpr std::ptrdiff_t m_hAttachedToEntity = 0x708; + constexpr std::ptrdiff_t m_nAttachment = 0x70c; + constexpr std::ptrdiff_t m_flSpriteFramerate = 0x710; + constexpr std::ptrdiff_t m_flFrame = 0x714; + constexpr std::ptrdiff_t m_flDieTime = 0x718; + constexpr std::ptrdiff_t m_nBrightness = 0x728; + constexpr std::ptrdiff_t m_flBrightnessDuration = 0x72c; + constexpr std::ptrdiff_t m_flSpriteScale = 0x730; + constexpr std::ptrdiff_t m_flScaleDuration = 0x734; + constexpr std::ptrdiff_t m_bWorldSpaceScale = 0x738; + constexpr std::ptrdiff_t m_flGlowProxySize = 0x73c; + constexpr std::ptrdiff_t m_flHDRColorScale = 0x740; + constexpr std::ptrdiff_t m_flLastTime = 0x744; + constexpr std::ptrdiff_t m_flMaxFrame = 0x748; + constexpr std::ptrdiff_t m_flStartScale = 0x74c; + constexpr std::ptrdiff_t m_flDestScale = 0x750; + constexpr std::ptrdiff_t m_flScaleTimeStart = 0x754; + constexpr std::ptrdiff_t m_nStartBrightness = 0x758; + constexpr std::ptrdiff_t m_nDestBrightness = 0x75c; + constexpr std::ptrdiff_t m_flBrightnessTimeStart = 0x760; + constexpr std::ptrdiff_t m_nSpriteWidth = 0x764; + constexpr std::ptrdiff_t m_nSpriteHeight = 0x768; +} + +namespace CBaseClientUIEntity { + constexpr std::ptrdiff_t m_bEnabled = 0x700; + constexpr std::ptrdiff_t m_DialogXMLName = 0x708; + constexpr std::ptrdiff_t m_PanelClassName = 0x710; + constexpr std::ptrdiff_t m_PanelID = 0x718; + constexpr std::ptrdiff_t m_CustomOutput0 = 0x720; + constexpr std::ptrdiff_t m_CustomOutput1 = 0x748; + constexpr std::ptrdiff_t m_CustomOutput2 = 0x770; + constexpr std::ptrdiff_t m_CustomOutput3 = 0x798; + constexpr std::ptrdiff_t m_CustomOutput4 = 0x7c0; + constexpr std::ptrdiff_t m_CustomOutput5 = 0x7e8; + constexpr std::ptrdiff_t m_CustomOutput6 = 0x810; + constexpr std::ptrdiff_t m_CustomOutput7 = 0x838; + constexpr std::ptrdiff_t m_CustomOutput8 = 0x860; + constexpr std::ptrdiff_t m_CustomOutput9 = 0x888; +} + +namespace CPointClientUIDialog { + constexpr std::ptrdiff_t m_hActivator = 0x8b0; + constexpr std::ptrdiff_t m_bStartEnabled = 0x8b4; +} + +namespace CPointClientUIWorldPanel { + constexpr std::ptrdiff_t m_bIgnoreInput = 0x8b0; + constexpr std::ptrdiff_t m_bLit = 0x8b1; + constexpr std::ptrdiff_t m_bFollowPlayerAcrossTeleport = 0x8b2; + constexpr std::ptrdiff_t m_flWidth = 0x8b4; + constexpr std::ptrdiff_t m_flHeight = 0x8b8; + constexpr std::ptrdiff_t m_flDPI = 0x8bc; + constexpr std::ptrdiff_t m_flInteractDistance = 0x8c0; + constexpr std::ptrdiff_t m_flDepthOffset = 0x8c4; + constexpr std::ptrdiff_t m_unOwnerContext = 0x8c8; + constexpr std::ptrdiff_t m_unHorizontalAlign = 0x8cc; + constexpr std::ptrdiff_t m_unVerticalAlign = 0x8d0; + constexpr std::ptrdiff_t m_unOrientation = 0x8d4; + constexpr std::ptrdiff_t m_bAllowInteractionFromAllSceneWorlds = 0x8d8; + constexpr std::ptrdiff_t m_vecCSSClasses = 0x8e0; + constexpr std::ptrdiff_t m_bOpaque = 0x8f8; + constexpr std::ptrdiff_t m_bNoDepth = 0x8f9; + constexpr std::ptrdiff_t m_bRenderBackface = 0x8fa; + constexpr std::ptrdiff_t m_bUseOffScreenIndicator = 0x8fb; + constexpr std::ptrdiff_t m_bExcludeFromSaveGames = 0x8fc; + constexpr std::ptrdiff_t m_bGrabbable = 0x8fd; + constexpr std::ptrdiff_t m_bOnlyRenderToTexture = 0x8fe; + constexpr std::ptrdiff_t m_bDisableMipGen = 0x8ff; + constexpr std::ptrdiff_t m_nExplicitImageLayout = 0x900; +} + +namespace CPointClientUIWorldTextPanel { + constexpr std::ptrdiff_t m_messageText = 0x908; +} + +namespace CInfoOffscreenPanoramaTexture { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_nResolutionX = 0x4b4; + constexpr std::ptrdiff_t m_nResolutionY = 0x4b8; + constexpr std::ptrdiff_t m_szLayoutFileName = 0x4c0; + constexpr std::ptrdiff_t m_RenderAttrName = 0x4c8; + constexpr std::ptrdiff_t m_TargetEntities = 0x4d0; + constexpr std::ptrdiff_t m_nTargetChangeCount = 0x4e8; + constexpr std::ptrdiff_t m_vecCSSClasses = 0x4f0; + constexpr std::ptrdiff_t m_szTargetsName = 0x508; + constexpr std::ptrdiff_t m_AdditionalTargetEntities = 0x510; +} + +namespace CEconItemView { + constexpr std::ptrdiff_t m_iItemDefinitionIndex = 0x38; + constexpr std::ptrdiff_t m_iEntityQuality = 0x3c; + constexpr std::ptrdiff_t m_iEntityLevel = 0x40; + constexpr std::ptrdiff_t m_iItemID = 0x48; + constexpr std::ptrdiff_t m_iItemIDHigh = 0x50; + constexpr std::ptrdiff_t m_iItemIDLow = 0x54; + constexpr std::ptrdiff_t m_iAccountID = 0x58; + constexpr std::ptrdiff_t m_iInventoryPosition = 0x5c; + constexpr std::ptrdiff_t m_bInitialized = 0x68; + constexpr std::ptrdiff_t m_AttributeList = 0x70; + constexpr std::ptrdiff_t m_NetworkedDynamicAttributes = 0xd0; + constexpr std::ptrdiff_t m_szCustomName = 0x130; + constexpr std::ptrdiff_t m_szCustomNameOverride = 0x1d1; +} + +namespace CInfoPlayerTerrorist { +} + +namespace CInfoPlayerCounterterrorist { +} + +namespace CInfoDeathmatchSpawn { +} + +namespace CInfoArmsRaceCounterterrorist { +} + +namespace CInfoArmsRaceTerrorist { +} + +namespace CInfoEnemyTerroristSpawn { +} + +namespace CPointGiveAmmo { + constexpr std::ptrdiff_t m_pActivator = 0x4b0; +} + +namespace CBombTarget { + constexpr std::ptrdiff_t m_OnBombExplode = 0x8a8; + constexpr std::ptrdiff_t m_OnBombPlanted = 0x8d0; + constexpr std::ptrdiff_t m_OnBombDefused = 0x8f8; + constexpr std::ptrdiff_t m_bIsBombSiteB = 0x920; + constexpr std::ptrdiff_t m_bIsHeistBombTarget = 0x921; + constexpr std::ptrdiff_t m_bBombPlantedHere = 0x922; + constexpr std::ptrdiff_t m_szMountTarget = 0x928; + constexpr std::ptrdiff_t m_hInstructorHint = 0x930; + constexpr std::ptrdiff_t m_nBombSiteDesignation = 0x934; +} + +namespace CInfoInstructorHintBombTargetA { +} + +namespace CInfoInstructorHintBombTargetB { +} + +namespace CHostageRescueZoneShim { +} + +namespace CHostageRescueZone { +} + +namespace CInfoInstructorHintHostageRescueZone { +} + +namespace CTriggerBuoyancy { + constexpr std::ptrdiff_t m_BuoyancyHelper = 0x8a8; + constexpr std::ptrdiff_t m_flFluidDensity = 0x8d0; +} + +namespace CFuncWater { + constexpr std::ptrdiff_t m_BuoyancyHelper = 0x700; +} + +namespace CCSPlayerController { + constexpr std::ptrdiff_t m_pInGameMoneyServices = 0x6a0; + constexpr std::ptrdiff_t m_pInventoryServices = 0x6a8; + constexpr std::ptrdiff_t m_pActionTrackingServices = 0x6b0; + constexpr std::ptrdiff_t m_pDamageServices = 0x6b8; + constexpr std::ptrdiff_t m_iPing = 0x6c0; + constexpr std::ptrdiff_t m_bHasCommunicationAbuseMute = 0x6c4; + constexpr std::ptrdiff_t m_szCrosshairCodes = 0x6c8; + constexpr std::ptrdiff_t m_iPendingTeamNum = 0x6d0; + constexpr std::ptrdiff_t m_flForceTeamTime = 0x6d4; + constexpr std::ptrdiff_t m_iCompTeammateColor = 0x6d8; + constexpr std::ptrdiff_t m_bEverPlayedOnTeam = 0x6dc; + constexpr std::ptrdiff_t m_bAttemptedToGetColor = 0x6dd; + constexpr std::ptrdiff_t m_iTeammatePreferredColor = 0x6e0; + constexpr std::ptrdiff_t m_bTeamChanged = 0x6e4; + constexpr std::ptrdiff_t m_bInSwitchTeam = 0x6e5; + constexpr std::ptrdiff_t m_bHasSeenJoinGame = 0x6e6; + constexpr std::ptrdiff_t m_bJustBecameSpectator = 0x6e7; + constexpr std::ptrdiff_t m_bSwitchTeamsOnNextRoundReset = 0x6e8; + constexpr std::ptrdiff_t m_bRemoveAllItemsOnNextRoundReset = 0x6e9; + constexpr std::ptrdiff_t m_szClan = 0x6f0; + constexpr std::ptrdiff_t m_szClanName = 0x6f8; + constexpr std::ptrdiff_t m_iCoachingTeam = 0x718; + constexpr std::ptrdiff_t m_nPlayerDominated = 0x720; + constexpr std::ptrdiff_t m_nPlayerDominatingMe = 0x728; + constexpr std::ptrdiff_t m_iCompetitiveRanking = 0x730; + constexpr std::ptrdiff_t m_iCompetitiveWins = 0x734; + constexpr std::ptrdiff_t m_iCompetitiveRankType = 0x738; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Win = 0x73c; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Loss = 0x740; + constexpr std::ptrdiff_t m_iCompetitiveRankingPredicted_Tie = 0x744; + constexpr std::ptrdiff_t m_nEndMatchNextMapVote = 0x748; + constexpr std::ptrdiff_t m_unActiveQuestId = 0x74c; + constexpr std::ptrdiff_t m_nQuestProgressReason = 0x750; + constexpr std::ptrdiff_t m_unPlayerTvControlFlags = 0x754; + constexpr std::ptrdiff_t m_iDraftIndex = 0x7c0; + constexpr std::ptrdiff_t m_msQueuedModeDisconnectionTimestamp = 0x7c4; + constexpr std::ptrdiff_t m_uiAbandonRecordedReason = 0x7c8; + constexpr std::ptrdiff_t m_bEverFullyConnected = 0x7cc; + constexpr std::ptrdiff_t m_bAbandonAllowsSurrender = 0x7cd; + constexpr std::ptrdiff_t m_bAbandonOffersInstantSurrender = 0x7ce; + constexpr std::ptrdiff_t m_bDisconnection1MinWarningPrinted = 0x7cf; + constexpr std::ptrdiff_t m_bScoreReported = 0x7d0; + constexpr std::ptrdiff_t m_nDisconnectionTick = 0x7d4; + constexpr std::ptrdiff_t m_bControllingBot = 0x7e0; + constexpr std::ptrdiff_t m_bHasControlledBotThisRound = 0x7e1; + constexpr std::ptrdiff_t m_bHasBeenControlledByPlayerThisRound = 0x7e2; + constexpr std::ptrdiff_t m_nBotsControlledThisRound = 0x7e4; + constexpr std::ptrdiff_t m_bCanControlObservedBot = 0x7e8; + constexpr std::ptrdiff_t m_hPlayerPawn = 0x7ec; + constexpr std::ptrdiff_t m_hObserverPawn = 0x7f0; + constexpr std::ptrdiff_t m_DesiredObserverMode = 0x7f4; + constexpr std::ptrdiff_t m_hDesiredObserverTarget = 0x7f8; + constexpr std::ptrdiff_t m_bPawnIsAlive = 0x7fc; + constexpr std::ptrdiff_t m_iPawnHealth = 0x800; + constexpr std::ptrdiff_t m_iPawnArmor = 0x804; + constexpr std::ptrdiff_t m_bPawnHasDefuser = 0x808; + constexpr std::ptrdiff_t m_bPawnHasHelmet = 0x809; + constexpr std::ptrdiff_t m_nPawnCharacterDefIndex = 0x80a; + constexpr std::ptrdiff_t m_iPawnLifetimeStart = 0x80c; + constexpr std::ptrdiff_t m_iPawnLifetimeEnd = 0x810; + constexpr std::ptrdiff_t m_iPawnGunGameLevel = 0x814; + constexpr std::ptrdiff_t m_iPawnBotDifficulty = 0x818; + constexpr std::ptrdiff_t m_hOriginalControllerOfCurrentPawn = 0x81c; + constexpr std::ptrdiff_t m_iScore = 0x820; + constexpr std::ptrdiff_t m_iRoundScore = 0x824; + constexpr std::ptrdiff_t m_vecKills = 0x828; + constexpr std::ptrdiff_t m_iMVPs = 0x840; + constexpr std::ptrdiff_t m_nUpdateCounter = 0x844; + constexpr std::ptrdiff_t m_lastHeldVoteTimer = 0xf8e8; + constexpr std::ptrdiff_t m_bShowHints = 0xf900; + constexpr std::ptrdiff_t m_iNextTimeCheck = 0xf904; +} + +namespace CFootstepControl { + constexpr std::ptrdiff_t m_source = 0x8a8; + constexpr std::ptrdiff_t m_destination = 0x8b0; +} + +namespace CTriggerSafeMoneyGather { + constexpr std::ptrdiff_t m_vecCashBundles = 0x8a8; +} + +namespace CCSEnvGunfire { + constexpr std::ptrdiff_t m_iMinBurstSize = 0x4b0; + constexpr std::ptrdiff_t m_iMaxBurstSize = 0x4b4; + constexpr std::ptrdiff_t m_flMinBurstDelay = 0x4b8; + constexpr std::ptrdiff_t m_flMaxBurstDelay = 0x4bc; + constexpr std::ptrdiff_t m_flRateOfFire = 0x4c0; + constexpr std::ptrdiff_t m_iszShootSound = 0x4c8; + constexpr std::ptrdiff_t m_iszTracerType = 0x4d0; + constexpr std::ptrdiff_t m_iszWeaponName = 0x4d8; + constexpr std::ptrdiff_t m_bDisabled = 0x4e0; + constexpr std::ptrdiff_t m_iShotsRemaining = 0x4e4; + constexpr std::ptrdiff_t m_iSpread = 0x4e8; + constexpr std::ptrdiff_t m_vecSpread = 0x4ec; + constexpr std::ptrdiff_t m_vecTargetPosition = 0x4f4; + constexpr std::ptrdiff_t m_flTargetDist = 0x500; + constexpr std::ptrdiff_t m_flBias = 0x504; + constexpr std::ptrdiff_t m_bCollide = 0x508; + constexpr std::ptrdiff_t m_hTarget = 0x50c; + constexpr std::ptrdiff_t m_bAllowNullTarget = 0x510; + constexpr std::ptrdiff_t m_bAlwaysWallbangTracer = 0x511; + constexpr std::ptrdiff_t m_flDamageScaleValue = 0x514; + constexpr std::ptrdiff_t m_flAdditionalSpread = 0x518; +} + +namespace CInfoGasCanisterLaunchPoint { +} + +namespace CDangerZone { + constexpr std::ptrdiff_t m_vecDangerZoneOriginStartedAt = 0x4b0; + constexpr std::ptrdiff_t m_flBombLaunchTime = 0x4bc; + constexpr std::ptrdiff_t m_flExtraRadius = 0x4c0; + constexpr std::ptrdiff_t m_flExtraRadiusStartTime = 0x4c4; + constexpr std::ptrdiff_t m_flExtraRadiusTotalLerpTime = 0x4c8; + constexpr std::ptrdiff_t m_nDropOrder = 0x4cc; + constexpr std::ptrdiff_t m_iWave = 0x4d0; + constexpr std::ptrdiff_t m_nMyZoneIndex = 0x4d4; + constexpr std::ptrdiff_t m_nZoneNeighbors = 0x4d8; +} + +namespace CGrassBurn { + constexpr std::ptrdiff_t m_flGrassBurnClearTime = 0x4b0; +} + +namespace CWeaponCSBaseVData { + constexpr std::ptrdiff_t m_WeaponType = 0x240; + constexpr std::ptrdiff_t m_WeaponCategory = 0x244; + constexpr std::ptrdiff_t m_szViewModel = 0x248; + constexpr std::ptrdiff_t m_szPlayerModel = 0x328; + constexpr std::ptrdiff_t m_szWorldDroppedModel = 0x408; + constexpr std::ptrdiff_t m_szAimsightLensMaskModel = 0x4e8; + constexpr std::ptrdiff_t m_szMagazineModel = 0x5c8; + constexpr std::ptrdiff_t m_szHeatEffect = 0x6a8; + constexpr std::ptrdiff_t m_szEjectBrassEffect = 0x788; + constexpr std::ptrdiff_t m_szMuzzleFlashParticleAlt = 0x868; + constexpr std::ptrdiff_t m_szMuzzleFlashThirdPersonParticle = 0x948; + constexpr std::ptrdiff_t m_szMuzzleFlashThirdPersonParticleAlt = 0xa28; + constexpr std::ptrdiff_t m_szTracerParticle = 0xb08; + constexpr std::ptrdiff_t m_GearSlot = 0xbe8; + constexpr std::ptrdiff_t m_GearSlotPosition = 0xbec; + constexpr std::ptrdiff_t m_DefaultLoadoutSlot = 0xbf0; + constexpr std::ptrdiff_t m_sWrongTeamMsg = 0xbf8; + constexpr std::ptrdiff_t m_nPrice = 0xc00; + constexpr std::ptrdiff_t m_nKillAward = 0xc04; + constexpr std::ptrdiff_t m_nPrimaryReserveAmmoMax = 0xc08; + constexpr std::ptrdiff_t m_nSecondaryReserveAmmoMax = 0xc0c; + constexpr std::ptrdiff_t m_bMeleeWeapon = 0xc10; + constexpr std::ptrdiff_t m_bHasBurstMode = 0xc11; + constexpr std::ptrdiff_t m_bIsRevolver = 0xc12; + constexpr std::ptrdiff_t m_bCannotShootUnderwater = 0xc13; + constexpr std::ptrdiff_t m_szName = 0xc18; + constexpr std::ptrdiff_t m_szAnimExtension = 0xc20; + constexpr std::ptrdiff_t m_eSilencerType = 0xc28; + constexpr std::ptrdiff_t m_nCrosshairMinDistance = 0xc2c; + constexpr std::ptrdiff_t m_nCrosshairDeltaDistance = 0xc30; + constexpr std::ptrdiff_t m_flCycleTime = 0xc34; + constexpr std::ptrdiff_t m_flMaxSpeed = 0xc3c; + constexpr std::ptrdiff_t m_flSpread = 0xc44; + constexpr std::ptrdiff_t m_flInaccuracyCrouch = 0xc4c; + constexpr std::ptrdiff_t m_flInaccuracyStand = 0xc54; + constexpr std::ptrdiff_t m_flInaccuracyJump = 0xc5c; + constexpr std::ptrdiff_t m_flInaccuracyLand = 0xc64; + constexpr std::ptrdiff_t m_flInaccuracyLadder = 0xc6c; + constexpr std::ptrdiff_t m_flInaccuracyFire = 0xc74; + constexpr std::ptrdiff_t m_flInaccuracyMove = 0xc7c; + constexpr std::ptrdiff_t m_flRecoilAngle = 0xc84; + constexpr std::ptrdiff_t m_flRecoilAngleVariance = 0xc8c; + constexpr std::ptrdiff_t m_flRecoilMagnitude = 0xc94; + constexpr std::ptrdiff_t m_flRecoilMagnitudeVariance = 0xc9c; + constexpr std::ptrdiff_t m_nTracerFrequency = 0xca4; + constexpr std::ptrdiff_t m_flInaccuracyJumpInitial = 0xcac; + constexpr std::ptrdiff_t m_flInaccuracyJumpApex = 0xcb0; + constexpr std::ptrdiff_t m_flInaccuracyReload = 0xcb4; + constexpr std::ptrdiff_t m_nRecoilSeed = 0xcb8; + constexpr std::ptrdiff_t m_nSpreadSeed = 0xcbc; + constexpr std::ptrdiff_t m_flTimeToIdleAfterFire = 0xcc0; + constexpr std::ptrdiff_t m_flIdleInterval = 0xcc4; + constexpr std::ptrdiff_t m_flAttackMovespeedFactor = 0xcc8; + constexpr std::ptrdiff_t m_flHeatPerShot = 0xccc; + constexpr std::ptrdiff_t m_flInaccuracyPitchShift = 0xcd0; + constexpr std::ptrdiff_t m_flInaccuracyAltSoundThreshold = 0xcd4; + constexpr std::ptrdiff_t m_flBotAudibleRange = 0xcd8; + constexpr std::ptrdiff_t m_szUseRadioSubtitle = 0xce0; + constexpr std::ptrdiff_t m_bUnzoomsAfterShot = 0xce8; + constexpr std::ptrdiff_t m_bHideViewModelWhenZoomed = 0xce9; + constexpr std::ptrdiff_t m_nZoomLevels = 0xcec; + constexpr std::ptrdiff_t m_nZoomFOV1 = 0xcf0; + constexpr std::ptrdiff_t m_nZoomFOV2 = 0xcf4; + constexpr std::ptrdiff_t m_flZoomTime0 = 0xcf8; + constexpr std::ptrdiff_t m_flZoomTime1 = 0xcfc; + constexpr std::ptrdiff_t m_flZoomTime2 = 0xd00; + constexpr std::ptrdiff_t m_flIronSightPullUpSpeed = 0xd04; + constexpr std::ptrdiff_t m_flIronSightPutDownSpeed = 0xd08; + constexpr std::ptrdiff_t m_flIronSightFOV = 0xd0c; + constexpr std::ptrdiff_t m_flIronSightPivotForward = 0xd10; + constexpr std::ptrdiff_t m_flIronSightLooseness = 0xd14; + constexpr std::ptrdiff_t m_angPivotAngle = 0xd18; + constexpr std::ptrdiff_t m_vecIronSightEyePos = 0xd24; + constexpr std::ptrdiff_t m_nDamage = 0xd30; + constexpr std::ptrdiff_t m_flHeadshotMultiplier = 0xd34; + constexpr std::ptrdiff_t m_flArmorRatio = 0xd38; + constexpr std::ptrdiff_t m_flPenetration = 0xd3c; + constexpr std::ptrdiff_t m_flRange = 0xd40; + constexpr std::ptrdiff_t m_flRangeModifier = 0xd44; + constexpr std::ptrdiff_t m_flFlinchVelocityModifierLarge = 0xd48; + constexpr std::ptrdiff_t m_flFlinchVelocityModifierSmall = 0xd4c; + constexpr std::ptrdiff_t m_flRecoveryTimeCrouch = 0xd50; + constexpr std::ptrdiff_t m_flRecoveryTimeStand = 0xd54; + constexpr std::ptrdiff_t m_flRecoveryTimeCrouchFinal = 0xd58; + constexpr std::ptrdiff_t m_flRecoveryTimeStandFinal = 0xd5c; + constexpr std::ptrdiff_t m_nRecoveryTransitionStartBullet = 0xd60; + constexpr std::ptrdiff_t m_nRecoveryTransitionEndBullet = 0xd64; + constexpr std::ptrdiff_t m_flThrowVelocity = 0xd68; + constexpr std::ptrdiff_t m_vSmokeColor = 0xd6c; + constexpr std::ptrdiff_t m_szAnimClass = 0xd78; +} + +namespace CTabletBlockerShim { +} + +namespace CTabletBlocker { +} + +namespace CTriggerTripWire { +} + +namespace CCSSprite { +} + +namespace CPointGamestatsCounter { + constexpr std::ptrdiff_t m_strStatisticName = 0x4b0; + constexpr std::ptrdiff_t m_bDisabled = 0x4b8; +} + +namespace CEnvHudHint { + constexpr std::ptrdiff_t m_iszMessage = 0x4b0; +} + +namespace CBuyZone { + constexpr std::ptrdiff_t m_LegacyTeamNum = 0x8a8; +} + +namespace CFuncConveyor { + constexpr std::ptrdiff_t m_szConveyorModels = 0x700; + constexpr std::ptrdiff_t m_flTransitionDurationSeconds = 0x708; + constexpr std::ptrdiff_t m_angMoveEntitySpace = 0x70c; + constexpr std::ptrdiff_t m_vecMoveDirEntitySpace = 0x718; + constexpr std::ptrdiff_t m_flTargetSpeed = 0x724; + constexpr std::ptrdiff_t m_nTransitionStartTick = 0x728; + constexpr std::ptrdiff_t m_nTransitionDurationTicks = 0x72c; + constexpr std::ptrdiff_t m_flTransitionStartSpeed = 0x730; + constexpr std::ptrdiff_t m_hConveyorModels = 0x738; +} + +namespace CTriggerBombReset { +} + +namespace CCSPlace { + constexpr std::ptrdiff_t m_name = 0x708; +} + +namespace CPlayerSprayDecal { + constexpr std::ptrdiff_t m_nUniqueID = 0x700; + constexpr std::ptrdiff_t m_unAccountID = 0x704; + constexpr std::ptrdiff_t m_unTraceID = 0x708; + constexpr std::ptrdiff_t m_rtGcTime = 0x70c; + constexpr std::ptrdiff_t m_vecEndPos = 0x710; + constexpr std::ptrdiff_t m_vecStart = 0x71c; + constexpr std::ptrdiff_t m_vecLeft = 0x728; + constexpr std::ptrdiff_t m_vecNormal = 0x734; + constexpr std::ptrdiff_t m_nPlayer = 0x740; + constexpr std::ptrdiff_t m_nEntity = 0x744; + constexpr std::ptrdiff_t m_nHitbox = 0x748; + constexpr std::ptrdiff_t m_flCreationTime = 0x74c; + constexpr std::ptrdiff_t m_nTintID = 0x750; + constexpr std::ptrdiff_t m_nVersion = 0x754; + constexpr std::ptrdiff_t m_ubSignature = 0x755; +} + +namespace CTriggerCustomBounds { +} + +namespace CTriggerSurvivalPlayArea { +} + +namespace CInfoMapRegion { + constexpr std::ptrdiff_t m_flRadius = 0x4b0; + constexpr std::ptrdiff_t m_strLocToken = 0x4b8; + constexpr std::ptrdiff_t m_szLocToken = 0x4c0; +} + +namespace CInferno { + constexpr std::ptrdiff_t m_fireXDelta = 0x710; + constexpr std::ptrdiff_t m_fireYDelta = 0x810; + constexpr std::ptrdiff_t m_fireZDelta = 0x910; + constexpr std::ptrdiff_t m_fireParentXDelta = 0xa10; + constexpr std::ptrdiff_t m_fireParentYDelta = 0xb10; + constexpr std::ptrdiff_t m_fireParentZDelta = 0xc10; + constexpr std::ptrdiff_t m_bFireIsBurning = 0xd10; + constexpr std::ptrdiff_t m_BurnNormal = 0xd50; + constexpr std::ptrdiff_t m_fireCount = 0x1050; + constexpr std::ptrdiff_t m_nInfernoType = 0x1054; + constexpr std::ptrdiff_t m_nFireEffectTickBegin = 0x1058; + constexpr std::ptrdiff_t m_nFireLifetime = 0x105c; + constexpr std::ptrdiff_t m_bInPostEffectTime = 0x1060; + constexpr std::ptrdiff_t m_nFiresExtinguishCount = 0x1064; + constexpr std::ptrdiff_t m_bWasCreatedInSmoke = 0x1068; + constexpr std::ptrdiff_t m_extent = 0x1270; + constexpr std::ptrdiff_t m_damageTimer = 0x1288; + constexpr std::ptrdiff_t m_damageRampTimer = 0x12a0; + constexpr std::ptrdiff_t m_splashVelocity = 0x12b8; + constexpr std::ptrdiff_t m_InitialSplashVelocity = 0x12c4; + constexpr std::ptrdiff_t m_startPos = 0x12d0; + constexpr std::ptrdiff_t m_vecOriginalSpawnLocation = 0x12dc; + constexpr std::ptrdiff_t m_activeTimer = 0x12e8; + constexpr std::ptrdiff_t m_fireSpawnOffset = 0x12f8; + constexpr std::ptrdiff_t m_nMaxFlames = 0x12fc; + constexpr std::ptrdiff_t m_BookkeepingTimer = 0x1300; + constexpr std::ptrdiff_t m_NextSpreadTimer = 0x1318; + constexpr std::ptrdiff_t m_nSourceItemDefIndex = 0x1330; +} + +namespace CFireCrackerBlast { +} + +namespace CBarnLight { + constexpr std::ptrdiff_t m_bEnabled = 0x700; + constexpr std::ptrdiff_t m_nColorMode = 0x704; + constexpr std::ptrdiff_t m_Color = 0x708; + constexpr std::ptrdiff_t m_flColorTemperature = 0x70c; + constexpr std::ptrdiff_t m_flBrightness = 0x710; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x714; + constexpr std::ptrdiff_t m_nDirectLight = 0x718; + constexpr std::ptrdiff_t m_nBakedShadowIndex = 0x71c; + constexpr std::ptrdiff_t m_nLuminaireShape = 0x720; + constexpr std::ptrdiff_t m_flLuminaireSize = 0x724; + constexpr std::ptrdiff_t m_flLuminaireAnisotropy = 0x728; + constexpr std::ptrdiff_t m_LightStyleString = 0x730; + constexpr std::ptrdiff_t m_flLightStyleStartTime = 0x738; + constexpr std::ptrdiff_t m_QueuedLightStyleStrings = 0x740; + constexpr std::ptrdiff_t m_LightStyleEvents = 0x758; + constexpr std::ptrdiff_t m_LightStyleTargets = 0x770; + constexpr std::ptrdiff_t m_StyleEvent = 0x788; + constexpr std::ptrdiff_t m_StyleRadianceVar = 0x828; + constexpr std::ptrdiff_t m_StyleVar = 0x830; + constexpr std::ptrdiff_t m_hLightCookie = 0x858; + constexpr std::ptrdiff_t m_flShape = 0x860; + constexpr std::ptrdiff_t m_flSoftX = 0x864; + constexpr std::ptrdiff_t m_flSoftY = 0x868; + constexpr std::ptrdiff_t m_flSkirt = 0x86c; + constexpr std::ptrdiff_t m_flSkirtNear = 0x870; + constexpr std::ptrdiff_t m_vSizeParams = 0x874; + constexpr std::ptrdiff_t m_flRange = 0x880; + constexpr std::ptrdiff_t m_vShear = 0x884; + constexpr std::ptrdiff_t m_nBakeSpecularToCubemaps = 0x890; + constexpr std::ptrdiff_t m_vBakeSpecularToCubemapsSize = 0x894; + constexpr std::ptrdiff_t m_nCastShadows = 0x8a0; + constexpr std::ptrdiff_t m_nShadowMapSize = 0x8a4; + constexpr std::ptrdiff_t m_nShadowPriority = 0x8a8; + constexpr std::ptrdiff_t m_bContactShadow = 0x8ac; + constexpr std::ptrdiff_t m_nBounceLight = 0x8b0; + constexpr std::ptrdiff_t m_flBounceScale = 0x8b4; + constexpr std::ptrdiff_t m_flMinRoughness = 0x8b8; + constexpr std::ptrdiff_t m_vAlternateColor = 0x8bc; + constexpr std::ptrdiff_t m_fAlternateColorBrightness = 0x8c8; + constexpr std::ptrdiff_t m_nFog = 0x8cc; + constexpr std::ptrdiff_t m_flFogStrength = 0x8d0; + constexpr std::ptrdiff_t m_nFogShadows = 0x8d4; + constexpr std::ptrdiff_t m_flFogScale = 0x8d8; + constexpr std::ptrdiff_t m_flFadeSizeStart = 0x8dc; + constexpr std::ptrdiff_t m_flFadeSizeEnd = 0x8e0; + constexpr std::ptrdiff_t m_flShadowFadeSizeStart = 0x8e4; + constexpr std::ptrdiff_t m_flShadowFadeSizeEnd = 0x8e8; + constexpr std::ptrdiff_t m_bPrecomputedFieldsValid = 0x8ec; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMins = 0x8f0; + constexpr std::ptrdiff_t m_vPrecomputedBoundsMaxs = 0x8fc; + constexpr std::ptrdiff_t m_vPrecomputedOBBOrigin = 0x908; + constexpr std::ptrdiff_t m_vPrecomputedOBBAngles = 0x914; + constexpr std::ptrdiff_t m_vPrecomputedOBBExtent = 0x920; + constexpr std::ptrdiff_t m_bPvsModifyEntity = 0x92c; +} + +namespace CRectLight { + constexpr std::ptrdiff_t m_bShowLight = 0x938; +} + +namespace COmniLight { + constexpr std::ptrdiff_t m_flInnerAngle = 0x938; + constexpr std::ptrdiff_t m_flOuterAngle = 0x93c; + constexpr std::ptrdiff_t m_bShowLight = 0x940; +} + +namespace CCSTeam { + constexpr std::ptrdiff_t m_nLastRecievedShorthandedRoundBonus = 0x568; + constexpr std::ptrdiff_t m_nShorthandedRoundBonusStartRound = 0x56c; + constexpr std::ptrdiff_t m_bSurrendered = 0x570; + constexpr std::ptrdiff_t m_szTeamMatchStat = 0x571; + constexpr std::ptrdiff_t m_numMapVictories = 0x774; + constexpr std::ptrdiff_t m_scoreFirstHalf = 0x778; + constexpr std::ptrdiff_t m_scoreSecondHalf = 0x77c; + constexpr std::ptrdiff_t m_scoreOvertime = 0x780; + constexpr std::ptrdiff_t m_szClanTeamname = 0x784; + constexpr std::ptrdiff_t m_iClanID = 0x808; + constexpr std::ptrdiff_t m_szTeamFlagImage = 0x80c; + constexpr std::ptrdiff_t m_szTeamLogoImage = 0x814; + constexpr std::ptrdiff_t m_flNextResourceTime = 0x81c; + constexpr std::ptrdiff_t m_iLastUpdateSentAt = 0x820; + constexpr std::ptrdiff_t m_flLastPlayerSortTime = 0x824; + constexpr std::ptrdiff_t m_nLastGGLeader_CT = 0x828; + constexpr std::ptrdiff_t m_nLastGGLeader_T = 0x82c; + constexpr std::ptrdiff_t m_nGGLeaderSlot_CT = 0x830; + constexpr std::ptrdiff_t m_nGGLeaderSlot_T = 0x834; + constexpr std::ptrdiff_t m_bGGHasLeader_CT = 0x838; + constexpr std::ptrdiff_t m_bGGHasLeader_T = 0x839; +} + +namespace CMapInfo { + constexpr std::ptrdiff_t m_iBuyingStatus = 0x4b0; + constexpr std::ptrdiff_t m_flBombRadius = 0x4b4; + constexpr std::ptrdiff_t m_iPetPopulation = 0x4b8; + constexpr std::ptrdiff_t m_bUseNormalSpawnsForDM = 0x4bc; + constexpr std::ptrdiff_t m_bDisableAutoGeneratedDMSpawns = 0x4bd; + constexpr std::ptrdiff_t m_flBotMaxVisionDistance = 0x4c0; + constexpr std::ptrdiff_t m_iHostageCount = 0x4c4; + constexpr std::ptrdiff_t m_bFadePlayerVisibilityFarZ = 0x4c8; +} + +namespace CCSBot { + constexpr std::ptrdiff_t m_lastCoopSpawnPoint = 0xd0; + constexpr std::ptrdiff_t m_eyePosition = 0xe0; + constexpr std::ptrdiff_t m_name = 0xec; + constexpr std::ptrdiff_t m_combatRange = 0x12c; + constexpr std::ptrdiff_t m_isRogue = 0x130; + constexpr std::ptrdiff_t m_rogueTimer = 0x138; + constexpr std::ptrdiff_t m_diedLastRound = 0x154; + constexpr std::ptrdiff_t m_safeTime = 0x158; + constexpr std::ptrdiff_t m_wasSafe = 0x15c; + constexpr std::ptrdiff_t m_blindFire = 0x164; + constexpr std::ptrdiff_t m_surpriseTimer = 0x168; + constexpr std::ptrdiff_t m_bAllowActive = 0x180; + constexpr std::ptrdiff_t m_isFollowing = 0x181; + constexpr std::ptrdiff_t m_leader = 0x184; + constexpr std::ptrdiff_t m_followTimestamp = 0x188; + constexpr std::ptrdiff_t m_allowAutoFollowTime = 0x18c; + constexpr std::ptrdiff_t m_hurryTimer = 0x190; + constexpr std::ptrdiff_t m_alertTimer = 0x1a8; + constexpr std::ptrdiff_t m_sneakTimer = 0x1c0; + constexpr std::ptrdiff_t m_panicTimer = 0x1d8; + constexpr std::ptrdiff_t m_stateTimestamp = 0x4d8; + constexpr std::ptrdiff_t m_isAttacking = 0x4dc; + constexpr std::ptrdiff_t m_isOpeningDoor = 0x4dd; + constexpr std::ptrdiff_t m_taskEntity = 0x4e4; + constexpr std::ptrdiff_t m_goalPosition = 0x4f4; + constexpr std::ptrdiff_t m_goalEntity = 0x500; + constexpr std::ptrdiff_t m_avoid = 0x504; + constexpr std::ptrdiff_t m_avoidTimestamp = 0x508; + constexpr std::ptrdiff_t m_isStopping = 0x50c; + constexpr std::ptrdiff_t m_hasVisitedEnemySpawn = 0x50d; + constexpr std::ptrdiff_t m_stillTimer = 0x510; + constexpr std::ptrdiff_t m_bEyeAnglesUnderPathFinderControl = 0x520; + constexpr std::ptrdiff_t m_pathIndex = 0x6618; + constexpr std::ptrdiff_t m_areaEnteredTimestamp = 0x661c; + constexpr std::ptrdiff_t m_repathTimer = 0x6620; + constexpr std::ptrdiff_t m_avoidFriendTimer = 0x6638; + constexpr std::ptrdiff_t m_isFriendInTheWay = 0x6650; + constexpr std::ptrdiff_t m_politeTimer = 0x6658; + constexpr std::ptrdiff_t m_isWaitingBehindFriend = 0x6670; + constexpr std::ptrdiff_t m_pathLadderEnd = 0x669c; + constexpr std::ptrdiff_t m_mustRunTimer = 0x66e8; + constexpr std::ptrdiff_t m_waitTimer = 0x6700; + constexpr std::ptrdiff_t m_updateTravelDistanceTimer = 0x6718; + constexpr std::ptrdiff_t m_playerTravelDistance = 0x6730; + constexpr std::ptrdiff_t m_travelDistancePhase = 0x6830; + constexpr std::ptrdiff_t m_hostageEscortCount = 0x69c8; + constexpr std::ptrdiff_t m_hostageEscortCountTimestamp = 0x69cc; + constexpr std::ptrdiff_t m_desiredTeam = 0x69d0; + constexpr std::ptrdiff_t m_hasJoined = 0x69d4; + constexpr std::ptrdiff_t m_isWaitingForHostage = 0x69d5; + constexpr std::ptrdiff_t m_inhibitWaitingForHostageTimer = 0x69d8; + constexpr std::ptrdiff_t m_waitForHostageTimer = 0x69f0; + constexpr std::ptrdiff_t m_noisePosition = 0x6a08; + constexpr std::ptrdiff_t m_noiseTravelDistance = 0x6a14; + constexpr std::ptrdiff_t m_noiseTimestamp = 0x6a18; + constexpr std::ptrdiff_t m_noiseSource = 0x6a20; + constexpr std::ptrdiff_t m_noiseBendTimer = 0x6a38; + constexpr std::ptrdiff_t m_bentNoisePosition = 0x6a50; + constexpr std::ptrdiff_t m_bendNoisePositionValid = 0x6a5c; + constexpr std::ptrdiff_t m_lookAroundStateTimestamp = 0x6a60; + constexpr std::ptrdiff_t m_lookAheadAngle = 0x6a64; + constexpr std::ptrdiff_t m_forwardAngle = 0x6a68; + constexpr std::ptrdiff_t m_inhibitLookAroundTimestamp = 0x6a6c; + constexpr std::ptrdiff_t m_lookAtSpot = 0x6a74; + constexpr std::ptrdiff_t m_lookAtSpotDuration = 0x6a84; + constexpr std::ptrdiff_t m_lookAtSpotTimestamp = 0x6a88; + constexpr std::ptrdiff_t m_lookAtSpotAngleTolerance = 0x6a8c; + constexpr std::ptrdiff_t m_lookAtSpotClearIfClose = 0x6a90; + constexpr std::ptrdiff_t m_lookAtSpotAttack = 0x6a91; + constexpr std::ptrdiff_t m_lookAtDesc = 0x6a98; + constexpr std::ptrdiff_t m_peripheralTimestamp = 0x6aa0; + constexpr std::ptrdiff_t m_approachPointCount = 0x6c28; + constexpr std::ptrdiff_t m_approachPointViewPosition = 0x6c2c; + constexpr std::ptrdiff_t m_viewSteadyTimer = 0x6c38; + constexpr std::ptrdiff_t m_tossGrenadeTimer = 0x6c50; + constexpr std::ptrdiff_t m_isAvoidingGrenade = 0x6c70; + constexpr std::ptrdiff_t m_spotCheckTimestamp = 0x6c90; + constexpr std::ptrdiff_t m_checkedHidingSpotCount = 0x7098; + constexpr std::ptrdiff_t m_lookPitch = 0x709c; + constexpr std::ptrdiff_t m_lookPitchVel = 0x70a0; + constexpr std::ptrdiff_t m_lookYaw = 0x70a4; + constexpr std::ptrdiff_t m_lookYawVel = 0x70a8; + constexpr std::ptrdiff_t m_targetSpot = 0x70ac; + constexpr std::ptrdiff_t m_targetSpotVelocity = 0x70b8; + constexpr std::ptrdiff_t m_targetSpotPredicted = 0x70c4; + constexpr std::ptrdiff_t m_aimError = 0x70d0; + constexpr std::ptrdiff_t m_aimGoal = 0x70dc; + constexpr std::ptrdiff_t m_targetSpotTime = 0x70e8; + constexpr std::ptrdiff_t m_aimFocus = 0x70ec; + constexpr std::ptrdiff_t m_aimFocusInterval = 0x70f0; + constexpr std::ptrdiff_t m_aimFocusNextUpdate = 0x70f4; + constexpr std::ptrdiff_t m_ignoreEnemiesTimer = 0x7100; + constexpr std::ptrdiff_t m_enemy = 0x7118; + constexpr std::ptrdiff_t m_isEnemyVisible = 0x711c; + constexpr std::ptrdiff_t m_visibleEnemyParts = 0x711d; + constexpr std::ptrdiff_t m_lastEnemyPosition = 0x7120; + constexpr std::ptrdiff_t m_lastSawEnemyTimestamp = 0x712c; + constexpr std::ptrdiff_t m_firstSawEnemyTimestamp = 0x7130; + constexpr std::ptrdiff_t m_currentEnemyAcquireTimestamp = 0x7134; + constexpr std::ptrdiff_t m_enemyDeathTimestamp = 0x7138; + constexpr std::ptrdiff_t m_friendDeathTimestamp = 0x713c; + constexpr std::ptrdiff_t m_isLastEnemyDead = 0x7140; + constexpr std::ptrdiff_t m_nearbyEnemyCount = 0x7144; + constexpr std::ptrdiff_t m_bomber = 0x7350; + constexpr std::ptrdiff_t m_nearbyFriendCount = 0x7354; + constexpr std::ptrdiff_t m_closestVisibleFriend = 0x7358; + constexpr std::ptrdiff_t m_closestVisibleHumanFriend = 0x735c; + constexpr std::ptrdiff_t m_attentionInterval = 0x7360; + constexpr std::ptrdiff_t m_attacker = 0x7370; + constexpr std::ptrdiff_t m_attackedTimestamp = 0x7374; + constexpr std::ptrdiff_t m_burnedByFlamesTimer = 0x7378; + constexpr std::ptrdiff_t m_lastVictimID = 0x7388; + constexpr std::ptrdiff_t m_isAimingAtEnemy = 0x738c; + constexpr std::ptrdiff_t m_isRapidFiring = 0x738d; + constexpr std::ptrdiff_t m_equipTimer = 0x7390; + constexpr std::ptrdiff_t m_zoomTimer = 0x73a0; + constexpr std::ptrdiff_t m_fireWeaponTimestamp = 0x73b8; + constexpr std::ptrdiff_t m_lookForWeaponsOnGroundTimer = 0x73c0; + constexpr std::ptrdiff_t m_bIsSleeping = 0x73d8; + constexpr std::ptrdiff_t m_isEnemySniperVisible = 0x73d9; + constexpr std::ptrdiff_t m_sawEnemySniperTimer = 0x73e0; + constexpr std::ptrdiff_t m_enemyQueueIndex = 0x7498; + constexpr std::ptrdiff_t m_enemyQueueCount = 0x7499; + constexpr std::ptrdiff_t m_enemyQueueAttendIndex = 0x749a; + constexpr std::ptrdiff_t m_isStuck = 0x749b; + constexpr std::ptrdiff_t m_stuckTimestamp = 0x749c; + constexpr std::ptrdiff_t m_stuckSpot = 0x74a0; + constexpr std::ptrdiff_t m_wiggleTimer = 0x74b0; + constexpr std::ptrdiff_t m_stuckJumpTimer = 0x74c8; + constexpr std::ptrdiff_t m_nextCleanupCheckTimestamp = 0x74e0; + constexpr std::ptrdiff_t m_avgVel = 0x74e4; + constexpr std::ptrdiff_t m_avgVelIndex = 0x750c; + constexpr std::ptrdiff_t m_avgVelCount = 0x7510; + constexpr std::ptrdiff_t m_lastOrigin = 0x7514; + constexpr std::ptrdiff_t m_lastRadioRecievedTimestamp = 0x7524; + constexpr std::ptrdiff_t m_lastRadioSentTimestamp = 0x7528; + constexpr std::ptrdiff_t m_radioSubject = 0x752c; + constexpr std::ptrdiff_t m_radioPosition = 0x7530; + constexpr std::ptrdiff_t m_voiceEndTimestamp = 0x753c; + constexpr std::ptrdiff_t m_lastValidReactionQueueFrame = 0x7548; +} + +namespace CFogVolume { + constexpr std::ptrdiff_t m_fogName = 0x700; + constexpr std::ptrdiff_t m_postProcessName = 0x708; + constexpr std::ptrdiff_t m_colorCorrectionName = 0x710; + constexpr std::ptrdiff_t m_bDisabled = 0x720; + constexpr std::ptrdiff_t m_bInFogVolumesList = 0x721; +} + +namespace CInfoDynamicShadowHint { + constexpr std::ptrdiff_t m_bDisabled = 0x4b0; + constexpr std::ptrdiff_t m_flRange = 0x4b4; + constexpr std::ptrdiff_t m_nImportance = 0x4b8; + constexpr std::ptrdiff_t m_nLightChoice = 0x4bc; + constexpr std::ptrdiff_t m_hLight = 0x4c0; +} + +namespace CInfoDynamicShadowHintBox { + constexpr std::ptrdiff_t m_vBoxMins = 0x4c8; + constexpr std::ptrdiff_t m_vBoxMaxs = 0x4d4; +} + +namespace CEnvSky { + constexpr std::ptrdiff_t m_hSkyMaterial = 0x700; + constexpr std::ptrdiff_t m_hSkyMaterialLightingOnly = 0x708; + constexpr std::ptrdiff_t m_bStartDisabled = 0x710; + constexpr std::ptrdiff_t m_vTintColor = 0x711; + constexpr std::ptrdiff_t m_vTintColorLightingOnly = 0x715; + constexpr std::ptrdiff_t m_flBrightnessScale = 0x71c; + constexpr std::ptrdiff_t m_nFogType = 0x720; + constexpr std::ptrdiff_t m_flFogMinStart = 0x724; + constexpr std::ptrdiff_t m_flFogMinEnd = 0x728; + constexpr std::ptrdiff_t m_flFogMaxStart = 0x72c; + constexpr std::ptrdiff_t m_flFogMaxEnd = 0x730; + constexpr std::ptrdiff_t m_bEnabled = 0x734; +} + +namespace CTonemapController2Alias_env_tonemap_controller2 { +} + +namespace CTonemapTrigger { + constexpr std::ptrdiff_t m_tonemapControllerName = 0x8a8; + constexpr std::ptrdiff_t m_hTonemapController = 0x8b0; +} + +namespace CFogTrigger { + constexpr std::ptrdiff_t m_fog = 0x8a8; +} + +namespace CLightEntity { + constexpr std::ptrdiff_t m_CLightComponent = 0x700; +} + +namespace CLightSpotEntity { +} + +namespace CLightOrthoEntity { +} + +namespace CLightDirectionalEntity { +} + +namespace CLightEnvironmentEntity { +} + +namespace CPostProcessingVolume { + constexpr std::ptrdiff_t m_hPostSettings = 0x8b8; + constexpr std::ptrdiff_t m_flFadeDuration = 0x8c0; + constexpr std::ptrdiff_t m_flMinLogExposure = 0x8c4; + constexpr std::ptrdiff_t m_flMaxLogExposure = 0x8c8; + constexpr std::ptrdiff_t m_flMinExposure = 0x8cc; + constexpr std::ptrdiff_t m_flMaxExposure = 0x8d0; + constexpr std::ptrdiff_t m_flExposureCompensation = 0x8d4; + constexpr std::ptrdiff_t m_flExposureFadeSpeedUp = 0x8d8; + constexpr std::ptrdiff_t m_flExposureFadeSpeedDown = 0x8dc; + constexpr std::ptrdiff_t m_flTonemapEVSmoothingRange = 0x8e0; + constexpr std::ptrdiff_t m_bMaster = 0x8e4; + constexpr std::ptrdiff_t m_bExposureControl = 0x8e5; + constexpr std::ptrdiff_t m_flRate = 0x8e8; + constexpr std::ptrdiff_t m_flTonemapPercentTarget = 0x8ec; + constexpr std::ptrdiff_t m_flTonemapPercentBrightPixels = 0x8f0; + constexpr std::ptrdiff_t m_flTonemapMinAvgLum = 0x8f4; +} + +namespace CEnvParticleGlow { + constexpr std::ptrdiff_t m_flAlphaScale = 0xc78; + constexpr std::ptrdiff_t m_flRadiusScale = 0xc7c; + constexpr std::ptrdiff_t m_flSelfIllumScale = 0xc80; + constexpr std::ptrdiff_t m_ColorTint = 0xc84; + constexpr std::ptrdiff_t m_hTextureOverride = 0xc88; +} + +namespace CTextureBasedAnimatable { + constexpr std::ptrdiff_t m_bLoop = 0x700; + constexpr std::ptrdiff_t m_flFPS = 0x704; + constexpr std::ptrdiff_t m_hPositionKeys = 0x708; + constexpr std::ptrdiff_t m_hRotationKeys = 0x710; + constexpr std::ptrdiff_t m_vAnimationBoundsMin = 0x718; + constexpr std::ptrdiff_t m_vAnimationBoundsMax = 0x724; + constexpr std::ptrdiff_t m_flStartTime = 0x730; + constexpr std::ptrdiff_t m_flStartFrame = 0x734; +} + +namespace CWorld { +} + +namespace CBaseAnimGraph { + constexpr std::ptrdiff_t m_bInitiallyPopulateInterpHistory = 0x708; + constexpr std::ptrdiff_t m_bShouldAnimateDuringGameplayPause = 0x709; + constexpr std::ptrdiff_t m_pChoreoServices = 0x710; + constexpr std::ptrdiff_t m_bAnimGraphUpdateEnabled = 0x718; + constexpr std::ptrdiff_t m_flLastEventAnimTime = 0x7ac; + constexpr std::ptrdiff_t m_hAnimationUpdate = 0x7b4; + constexpr std::ptrdiff_t m_flMaxSlopeDistance = 0x7b8; + constexpr std::ptrdiff_t m_vLastSlopeCheckPos = 0x7bc; + constexpr std::ptrdiff_t m_bAnimGraphDirty = 0x7c8; + constexpr std::ptrdiff_t m_vecForce = 0x7cc; + constexpr std::ptrdiff_t m_nForceBone = 0x7d8; + constexpr std::ptrdiff_t m_pRagdollPose = 0x7f0; + constexpr std::ptrdiff_t m_bClientRagdoll = 0x7f8; +} + +namespace CBaseProp { + constexpr std::ptrdiff_t m_bModelOverrodeBlockLOS = 0x930; + constexpr std::ptrdiff_t m_iShapeType = 0x934; + constexpr std::ptrdiff_t m_bConformToCollisionBounds = 0x938; + constexpr std::ptrdiff_t m_mPreferredCatchTransform = 0x93c; +} + +namespace CBreakableProp { + constexpr std::ptrdiff_t m_OnBreak = 0x980; + constexpr std::ptrdiff_t m_OnHealthChanged = 0x9a8; + constexpr std::ptrdiff_t m_OnTakeDamage = 0x9d0; + constexpr std::ptrdiff_t m_impactEnergyScale = 0x9f8; + constexpr std::ptrdiff_t m_iMinHealthDmg = 0x9fc; + constexpr std::ptrdiff_t m_preferredCarryAngles = 0xa00; + constexpr std::ptrdiff_t m_flPressureDelay = 0xa0c; + constexpr std::ptrdiff_t m_hBreaker = 0xa10; + constexpr std::ptrdiff_t m_PerformanceMode = 0xa14; + constexpr std::ptrdiff_t m_flDmgModBullet = 0xa18; + constexpr std::ptrdiff_t m_flDmgModClub = 0xa1c; + constexpr std::ptrdiff_t m_flDmgModExplosive = 0xa20; + constexpr std::ptrdiff_t m_flDmgModFire = 0xa24; + constexpr std::ptrdiff_t m_iszPhysicsDamageTableName = 0xa28; + constexpr std::ptrdiff_t m_iszBasePropData = 0xa30; + constexpr std::ptrdiff_t m_iInteractions = 0xa38; + constexpr std::ptrdiff_t m_flPreventDamageBeforeTime = 0xa3c; + constexpr std::ptrdiff_t m_bHasBreakPiecesOrCommands = 0xa40; + constexpr std::ptrdiff_t m_explodeDamage = 0xa44; + constexpr std::ptrdiff_t m_explodeRadius = 0xa48; + constexpr std::ptrdiff_t m_explosionDelay = 0xa50; + constexpr std::ptrdiff_t m_explosionBuildupSound = 0xa58; + constexpr std::ptrdiff_t m_explosionCustomEffect = 0xa60; + constexpr std::ptrdiff_t m_explosionCustomSound = 0xa68; + constexpr std::ptrdiff_t m_explosionModifier = 0xa70; + constexpr std::ptrdiff_t m_hPhysicsAttacker = 0xa78; + constexpr std::ptrdiff_t m_flLastPhysicsInfluenceTime = 0xa7c; + constexpr std::ptrdiff_t m_bOriginalBlockLOS = 0xa80; + constexpr std::ptrdiff_t m_flDefaultFadeScale = 0xa84; + constexpr std::ptrdiff_t m_hLastAttacker = 0xa88; + constexpr std::ptrdiff_t m_hFlareEnt = 0xa8c; + constexpr std::ptrdiff_t m_bUsePuntSound = 0xa90; + constexpr std::ptrdiff_t m_iszPuntSound = 0xa98; + constexpr std::ptrdiff_t m_noGhostCollision = 0xaa0; +} + +namespace CDynamicProp { + constexpr std::ptrdiff_t m_bCreateNavObstacle = 0xab0; + constexpr std::ptrdiff_t m_bUseHitboxesForRenderBox = 0xab1; + constexpr std::ptrdiff_t m_bUseAnimGraph = 0xab2; + constexpr std::ptrdiff_t m_pOutputAnimBegun = 0xab8; + constexpr std::ptrdiff_t m_pOutputAnimOver = 0xae0; + constexpr std::ptrdiff_t m_pOutputAnimLoopCycleOver = 0xb08; + constexpr std::ptrdiff_t m_OnAnimReachedStart = 0xb30; + constexpr std::ptrdiff_t m_OnAnimReachedEnd = 0xb58; + constexpr std::ptrdiff_t m_iszDefaultAnim = 0xb80; + constexpr std::ptrdiff_t m_nDefaultAnimLoopMode = 0xb88; + constexpr std::ptrdiff_t m_bAnimateOnServer = 0xb8c; + constexpr std::ptrdiff_t m_bRandomizeCycle = 0xb8d; + constexpr std::ptrdiff_t m_bStartDisabled = 0xb8e; + constexpr std::ptrdiff_t m_bScriptedMovement = 0xb8f; + constexpr std::ptrdiff_t m_bFiredStartEndOutput = 0xb90; + constexpr std::ptrdiff_t m_bForceNpcExclude = 0xb91; + constexpr std::ptrdiff_t m_bCreateNonSolid = 0xb92; + constexpr std::ptrdiff_t m_bIsOverrideProp = 0xb93; + constexpr std::ptrdiff_t m_iInitialGlowState = 0xb94; + constexpr std::ptrdiff_t m_nGlowRange = 0xb98; + constexpr std::ptrdiff_t m_nGlowRangeMin = 0xb9c; + constexpr std::ptrdiff_t m_glowColor = 0xba0; + constexpr std::ptrdiff_t m_nGlowTeam = 0xba4; +} + +namespace CDynamicPropAlias_dynamic_prop { +} + +namespace CDynamicPropAlias_prop_dynamic_override { +} + +namespace CDynamicPropAlias_cable_dynamic { +} + +namespace CColorCorrectionVolume { + constexpr std::ptrdiff_t m_bEnabled = 0x8a8; + constexpr std::ptrdiff_t m_MaxWeight = 0x8ac; + constexpr std::ptrdiff_t m_FadeDuration = 0x8b0; + constexpr std::ptrdiff_t m_bStartDisabled = 0x8b4; + constexpr std::ptrdiff_t m_Weight = 0x8b8; + constexpr std::ptrdiff_t m_lookupFilename = 0x8bc; + constexpr std::ptrdiff_t m_LastEnterWeight = 0xabc; + constexpr std::ptrdiff_t m_LastEnterTime = 0xac0; + constexpr std::ptrdiff_t m_LastExitWeight = 0xac4; + constexpr std::ptrdiff_t m_LastExitTime = 0xac8; +} + +namespace CPointCommentaryNode { + constexpr std::ptrdiff_t m_iszPreCommands = 0x930; + constexpr std::ptrdiff_t m_iszPostCommands = 0x938; + constexpr std::ptrdiff_t m_iszCommentaryFile = 0x940; + constexpr std::ptrdiff_t m_iszViewTarget = 0x948; + constexpr std::ptrdiff_t m_hViewTarget = 0x950; + constexpr std::ptrdiff_t m_hViewTargetAngles = 0x954; + constexpr std::ptrdiff_t m_iszViewPosition = 0x958; + constexpr std::ptrdiff_t m_hViewPosition = 0x960; + constexpr std::ptrdiff_t m_hViewPositionMover = 0x964; + constexpr std::ptrdiff_t m_bPreventMovement = 0x968; + constexpr std::ptrdiff_t m_bUnderCrosshair = 0x969; + constexpr std::ptrdiff_t m_bUnstoppable = 0x96a; + constexpr std::ptrdiff_t m_flFinishedTime = 0x96c; + constexpr std::ptrdiff_t m_vecFinishOrigin = 0x970; + constexpr std::ptrdiff_t m_vecOriginalAngles = 0x97c; + constexpr std::ptrdiff_t m_vecFinishAngles = 0x988; + constexpr std::ptrdiff_t m_bPreventChangesWhileMoving = 0x994; + constexpr std::ptrdiff_t m_bDisabled = 0x995; + constexpr std::ptrdiff_t m_vecTeleportOrigin = 0x998; + constexpr std::ptrdiff_t m_flAbortedPlaybackAt = 0x9a4; + constexpr std::ptrdiff_t m_pOnCommentaryStarted = 0x9a8; + constexpr std::ptrdiff_t m_pOnCommentaryStopped = 0x9d0; + constexpr std::ptrdiff_t m_bActive = 0x9f8; + constexpr std::ptrdiff_t m_flStartTime = 0x9fc; + constexpr std::ptrdiff_t m_flStartTimeInCommentary = 0xa00; + constexpr std::ptrdiff_t m_iszTitle = 0xa08; + constexpr std::ptrdiff_t m_iszSpeakers = 0xa10; + constexpr std::ptrdiff_t m_iNodeNumber = 0xa18; + constexpr std::ptrdiff_t m_iNodeNumberMax = 0xa1c; + constexpr std::ptrdiff_t m_bListenedTo = 0xa20; +} + +namespace CCommentaryViewPosition { +} + +namespace CRotDoor { + constexpr std::ptrdiff_t m_bSolidBsp = 0x988; +} + +namespace CItemSoda { +} + +namespace CPrecipitation { +} + +namespace CEnvBeam { + constexpr std::ptrdiff_t m_active = 0x7a0; + constexpr std::ptrdiff_t m_spriteTexture = 0x7a8; + constexpr std::ptrdiff_t m_iszStartEntity = 0x7b0; + constexpr std::ptrdiff_t m_iszEndEntity = 0x7b8; + constexpr std::ptrdiff_t m_life = 0x7c0; + constexpr std::ptrdiff_t m_boltWidth = 0x7c4; + constexpr std::ptrdiff_t m_noiseAmplitude = 0x7c8; + constexpr std::ptrdiff_t m_speed = 0x7cc; + constexpr std::ptrdiff_t m_restrike = 0x7d0; + constexpr std::ptrdiff_t m_iszSpriteName = 0x7d8; + constexpr std::ptrdiff_t m_frameStart = 0x7e0; + constexpr std::ptrdiff_t m_vEndPointWorld = 0x7e4; + constexpr std::ptrdiff_t m_vEndPointRelative = 0x7f0; + constexpr std::ptrdiff_t m_radius = 0x7fc; + constexpr std::ptrdiff_t m_TouchType = 0x800; + constexpr std::ptrdiff_t m_iFilterName = 0x808; + constexpr std::ptrdiff_t m_hFilter = 0x810; + constexpr std::ptrdiff_t m_iszDecal = 0x818; + constexpr std::ptrdiff_t m_OnTouchedByEntity = 0x820; +} + +namespace CPushable { +} + +namespace CFuncLadderAlias_func_useableladder { +} + +namespace CFuncMonitor { + constexpr std::ptrdiff_t m_targetCamera = 0x720; + constexpr std::ptrdiff_t m_nResolutionEnum = 0x728; + constexpr std::ptrdiff_t m_bRenderShadows = 0x72c; + constexpr std::ptrdiff_t m_bUseUniqueColorTarget = 0x72d; + constexpr std::ptrdiff_t m_brushModelName = 0x730; + constexpr std::ptrdiff_t m_hTargetCamera = 0x738; + constexpr std::ptrdiff_t m_bEnabled = 0x73c; + constexpr std::ptrdiff_t m_bDraw3DSkybox = 0x73d; + constexpr std::ptrdiff_t m_bStartEnabled = 0x73e; +} + +namespace CFuncMoveLinearAlias_momentary_door { +} + +namespace CGunTarget { + constexpr std::ptrdiff_t m_on = 0x780; + constexpr std::ptrdiff_t m_hTargetEnt = 0x784; + constexpr std::ptrdiff_t m_OnDeath = 0x788; +} + +namespace CTriggerGameEvent { + constexpr std::ptrdiff_t m_strStartTouchEventName = 0x8a8; + constexpr std::ptrdiff_t m_strEndTouchEventName = 0x8b0; + constexpr std::ptrdiff_t m_strTriggerID = 0x8b8; +} + +namespace CRuleBrushEntity { +} + +namespace CGameEnd { +} + +namespace CGameText { + constexpr std::ptrdiff_t m_iszMessage = 0x710; + constexpr std::ptrdiff_t m_textParms = 0x718; +} + +namespace CGamePlayerZone { + constexpr std::ptrdiff_t m_OnPlayerInZone = 0x708; + constexpr std::ptrdiff_t m_OnPlayerOutZone = 0x730; + constexpr std::ptrdiff_t m_PlayersInCount = 0x758; + constexpr std::ptrdiff_t m_PlayersOutCount = 0x780; +} + +namespace CSimpleMarkupVolumeTagged { +} + +namespace CMarkupVolumeTagged_Nav { +} + +namespace CMarkupVolumeTagged_NavGame { + constexpr std::ptrdiff_t m_bFloodFillAttribute = 0x758; +} + +namespace CFuncElectrifiedVolume { + constexpr std::ptrdiff_t m_EffectName = 0x720; + constexpr std::ptrdiff_t m_EffectInterpenetrateName = 0x728; + constexpr std::ptrdiff_t m_EffectZapName = 0x730; + constexpr std::ptrdiff_t m_iszEffectSource = 0x738; +} + +namespace CPathCornerCrash { +} + +namespace CConstraintAnchor { + constexpr std::ptrdiff_t m_massScale = 0x930; +} + +namespace COrnamentProp { + constexpr std::ptrdiff_t m_initialOwner = 0xba8; +} + +namespace CRopeKeyframeAlias_move_rope { +} + +namespace CSceneEntityAlias_logic_choreographed_scene { +} + +namespace CInstancedSceneEntity { + constexpr std::ptrdiff_t m_hOwner = 0xa08; + constexpr std::ptrdiff_t m_bHadOwner = 0xa0c; + constexpr std::ptrdiff_t m_flPostSpeakDelay = 0xa10; + constexpr std::ptrdiff_t m_flPreDelay = 0xa14; + constexpr std::ptrdiff_t m_bIsBackground = 0xa18; +} + +namespace CTriggerSoundscape { + constexpr std::ptrdiff_t m_hSoundscape = 0x8a8; + constexpr std::ptrdiff_t m_SoundscapeName = 0x8b0; + constexpr std::ptrdiff_t m_spectators = 0x8b8; +} + +namespace CSpriteAlias_env_glow { +} + +namespace CFuncTankTrain { + constexpr std::ptrdiff_t m_OnDeath = 0x850; +} + +namespace CBasePlatTrain { + constexpr std::ptrdiff_t m_NoiseMoving = 0x780; + constexpr std::ptrdiff_t m_NoiseArrived = 0x788; + constexpr std::ptrdiff_t m_volume = 0x798; + constexpr std::ptrdiff_t m_flTWidth = 0x79c; + constexpr std::ptrdiff_t m_flTLength = 0x7a0; +} + +namespace CFuncPlat { + constexpr std::ptrdiff_t m_sNoise = 0x7a8; +} + +namespace CFuncPlatRot { + constexpr std::ptrdiff_t m_end = 0x7b0; + constexpr std::ptrdiff_t m_start = 0x7bc; +} + +namespace CFuncTrain { + constexpr std::ptrdiff_t m_hCurrentTarget = 0x7a8; + constexpr std::ptrdiff_t m_activated = 0x7ac; + constexpr std::ptrdiff_t m_hEnemy = 0x7b0; + constexpr std::ptrdiff_t m_flBlockDamage = 0x7b4; + constexpr std::ptrdiff_t m_flNextBlockTime = 0x7b8; + constexpr std::ptrdiff_t m_iszLastTarget = 0x7c0; +} + +namespace CFuncTrackChange { + constexpr std::ptrdiff_t m_trackTop = 0x7c8; + constexpr std::ptrdiff_t m_trackBottom = 0x7d0; + constexpr std::ptrdiff_t m_train = 0x7d8; + constexpr std::ptrdiff_t m_trackTopName = 0x7e0; + constexpr std::ptrdiff_t m_trackBottomName = 0x7e8; + constexpr std::ptrdiff_t m_trainName = 0x7f0; + constexpr std::ptrdiff_t m_code = 0x7f8; + constexpr std::ptrdiff_t m_targetState = 0x7fc; + constexpr std::ptrdiff_t m_use = 0x800; +} + +namespace CFuncTrackAuto { +} + +namespace CTriggerRemove { + constexpr std::ptrdiff_t m_OnRemove = 0x8a8; +} + +namespace CScriptTriggerHurt { + constexpr std::ptrdiff_t m_vExtent = 0x948; +} + +namespace CScriptTriggerMultiple { + constexpr std::ptrdiff_t m_vExtent = 0x8d0; +} + +namespace CTriggerOnce { +} + +namespace CScriptTriggerOnce { + constexpr std::ptrdiff_t m_vExtent = 0x8d0; +} + +namespace CTriggerLook { + constexpr std::ptrdiff_t m_hLookTarget = 0x8d0; + constexpr std::ptrdiff_t m_flFieldOfView = 0x8d4; + constexpr std::ptrdiff_t m_flLookTime = 0x8d8; + constexpr std::ptrdiff_t m_flLookTimeTotal = 0x8dc; + constexpr std::ptrdiff_t m_flLookTimeLast = 0x8e0; + constexpr std::ptrdiff_t m_flTimeoutDuration = 0x8e4; + constexpr std::ptrdiff_t m_bTimeoutFired = 0x8e8; + constexpr std::ptrdiff_t m_bIsLooking = 0x8e9; + constexpr std::ptrdiff_t m_b2DFOV = 0x8ea; + constexpr std::ptrdiff_t m_bUseVelocity = 0x8eb; + constexpr std::ptrdiff_t m_hActivator = 0x8ec; + constexpr std::ptrdiff_t m_bTestOcclusion = 0x8f0; + constexpr std::ptrdiff_t m_OnTimeout = 0x8f8; + constexpr std::ptrdiff_t m_OnStartLook = 0x920; + constexpr std::ptrdiff_t m_OnEndLook = 0x948; +} + +namespace CTriggerPush { + constexpr std::ptrdiff_t m_angPushEntitySpace = 0x8a8; + constexpr std::ptrdiff_t m_vecPushDirEntitySpace = 0x8b4; + constexpr std::ptrdiff_t m_bTriggerOnStartTouch = 0x8c0; + constexpr std::ptrdiff_t m_flAlternateTicksFix = 0x8c4; + constexpr std::ptrdiff_t m_flPushSpeed = 0x8c8; +} + +namespace CScriptTriggerPush { + constexpr std::ptrdiff_t m_vExtent = 0x8d0; +} + +namespace CTriggerToggleSave { + constexpr std::ptrdiff_t m_bDisabled = 0x8a8; +} + +namespace CTriggerSave { + constexpr std::ptrdiff_t m_bForceNewLevelUnit = 0x8a8; + constexpr std::ptrdiff_t m_fDangerousTimer = 0x8ac; + constexpr std::ptrdiff_t m_minHitPoints = 0x8b0; +} + +namespace CTriggerGravity { +} + +namespace CTriggerProximity { + constexpr std::ptrdiff_t m_hMeasureTarget = 0x8a8; + constexpr std::ptrdiff_t m_iszMeasureTarget = 0x8b0; + constexpr std::ptrdiff_t m_fRadius = 0x8b8; + constexpr std::ptrdiff_t m_nTouchers = 0x8bc; + constexpr std::ptrdiff_t m_NearestEntityDistance = 0x8c0; +} + +namespace CTriggerImpact { + constexpr std::ptrdiff_t m_flMagnitude = 0x8d0; + constexpr std::ptrdiff_t m_flNoise = 0x8d4; + constexpr std::ptrdiff_t m_flViewkick = 0x8d8; + constexpr std::ptrdiff_t m_pOutputForce = 0x8e0; +} + +namespace CServerRagdollTrigger { +} + +namespace CTriggerActiveWeaponDetect { + constexpr std::ptrdiff_t m_OnTouchedActiveWeapon = 0x8a8; + constexpr std::ptrdiff_t m_iszWeaponClassName = 0x8d0; +} + +namespace CTriggerPhysics { + constexpr std::ptrdiff_t m_gravityScale = 0x8b8; + constexpr std::ptrdiff_t m_linearLimit = 0x8bc; + constexpr std::ptrdiff_t m_linearDamping = 0x8c0; + constexpr std::ptrdiff_t m_angularLimit = 0x8c4; + constexpr std::ptrdiff_t m_angularDamping = 0x8c8; + constexpr std::ptrdiff_t m_linearForce = 0x8cc; + constexpr std::ptrdiff_t m_flFrequency = 0x8d0; + constexpr std::ptrdiff_t m_flDampingRatio = 0x8d4; + constexpr std::ptrdiff_t m_vecLinearForcePointAt = 0x8d8; + constexpr std::ptrdiff_t m_bCollapseToForcePoint = 0x8e4; + constexpr std::ptrdiff_t m_vecLinearForcePointAtWorld = 0x8e8; + constexpr std::ptrdiff_t m_vecLinearForceDirection = 0x8f4; + constexpr std::ptrdiff_t m_bConvertToDebrisWhenPossible = 0x900; +} + +namespace CTriggerDetectBulletFire { + constexpr std::ptrdiff_t m_bPlayerFireOnly = 0x8a8; + constexpr std::ptrdiff_t m_OnDetectedBulletFire = 0x8b0; +} + +namespace CTriggerDetectExplosion { + constexpr std::ptrdiff_t m_OnDetectedExplosion = 0x8e0; +} + +namespace CScriptNavBlocker { + constexpr std::ptrdiff_t m_vExtent = 0x710; +} + +namespace CBaseFlex { + constexpr std::ptrdiff_t m_flexWeight = 0x930; + constexpr std::ptrdiff_t m_vLookTargetPosition = 0x948; + constexpr std::ptrdiff_t m_blinktoggle = 0x954; + constexpr std::ptrdiff_t m_flAllowResponsesEndTime = 0x9a8; + constexpr std::ptrdiff_t m_flLastFlexAnimationTime = 0x9ac; + constexpr std::ptrdiff_t m_nNextSceneEventId = 0x9b0; + constexpr std::ptrdiff_t m_bUpdateLayerPriorities = 0x9b4; +} + +namespace CBasePropDoor { + constexpr std::ptrdiff_t m_flAutoReturnDelay = 0xbb8; + constexpr std::ptrdiff_t m_hDoorList = 0xbc0; + constexpr std::ptrdiff_t m_nHardwareType = 0xbd8; + constexpr std::ptrdiff_t m_bNeedsHardware = 0xbdc; + constexpr std::ptrdiff_t m_eDoorState = 0xbe0; + constexpr std::ptrdiff_t m_bLocked = 0xbe4; + constexpr std::ptrdiff_t m_closedPosition = 0xbe8; + constexpr std::ptrdiff_t m_closedAngles = 0xbf4; + constexpr std::ptrdiff_t m_hBlocker = 0xc00; + constexpr std::ptrdiff_t m_bFirstBlocked = 0xc04; + constexpr std::ptrdiff_t m_ls = 0xc08; + constexpr std::ptrdiff_t m_bForceClosed = 0xc28; + constexpr std::ptrdiff_t m_vecLatchWorldPosition = 0xc2c; + constexpr std::ptrdiff_t m_hActivator = 0xc38; + constexpr std::ptrdiff_t m_sndParamAngularSpeed = 0xc44; + constexpr std::ptrdiff_t m_SoundMoving = 0xc48; + constexpr std::ptrdiff_t m_SoundOpen = 0xc50; + constexpr std::ptrdiff_t m_SoundClose = 0xc58; + constexpr std::ptrdiff_t m_SoundLock = 0xc60; + constexpr std::ptrdiff_t m_SoundUnlock = 0xc68; + constexpr std::ptrdiff_t m_SoundLatch = 0xc70; + constexpr std::ptrdiff_t m_SoundPound = 0xc78; + constexpr std::ptrdiff_t m_SoundJiggle = 0xc80; + constexpr std::ptrdiff_t m_SoundLockedAnim = 0xc88; + constexpr std::ptrdiff_t m_numCloseAttempts = 0xc90; + constexpr std::ptrdiff_t m_nPhysicsMaterial = 0xc94; + constexpr std::ptrdiff_t m_SlaveName = 0xc98; + constexpr std::ptrdiff_t m_hMaster = 0xca0; + constexpr std::ptrdiff_t m_OnBlockedClosing = 0xca8; + constexpr std::ptrdiff_t m_OnBlockedOpening = 0xcd0; + constexpr std::ptrdiff_t m_OnUnblockedClosing = 0xcf8; + constexpr std::ptrdiff_t m_OnUnblockedOpening = 0xd20; + constexpr std::ptrdiff_t m_OnFullyClosed = 0xd48; + constexpr std::ptrdiff_t m_OnFullyOpen = 0xd70; + constexpr std::ptrdiff_t m_OnClose = 0xd98; + constexpr std::ptrdiff_t m_OnOpen = 0xdc0; + constexpr std::ptrdiff_t m_OnLockedUse = 0xde8; + constexpr std::ptrdiff_t m_OnAjarOpen = 0xe10; +} + +namespace CEnvLaser { + constexpr std::ptrdiff_t m_iszLaserTarget = 0x7a0; + constexpr std::ptrdiff_t m_pSprite = 0x7a8; + constexpr std::ptrdiff_t m_iszSpriteName = 0x7b0; + constexpr std::ptrdiff_t m_firePosition = 0x7b8; + constexpr std::ptrdiff_t m_flStartFrame = 0x7c4; +} + +namespace CFish { + constexpr std::ptrdiff_t m_pool = 0x930; + constexpr std::ptrdiff_t m_id = 0x934; + constexpr std::ptrdiff_t m_x = 0x938; + constexpr std::ptrdiff_t m_y = 0x93c; + constexpr std::ptrdiff_t m_z = 0x940; + constexpr std::ptrdiff_t m_angle = 0x944; + constexpr std::ptrdiff_t m_angleChange = 0x948; + constexpr std::ptrdiff_t m_forward = 0x94c; + constexpr std::ptrdiff_t m_perp = 0x958; + constexpr std::ptrdiff_t m_poolOrigin = 0x964; + constexpr std::ptrdiff_t m_waterLevel = 0x970; + constexpr std::ptrdiff_t m_speed = 0x974; + constexpr std::ptrdiff_t m_desiredSpeed = 0x978; + constexpr std::ptrdiff_t m_calmSpeed = 0x97c; + constexpr std::ptrdiff_t m_panicSpeed = 0x980; + constexpr std::ptrdiff_t m_avoidRange = 0x984; + constexpr std::ptrdiff_t m_turnTimer = 0x988; + constexpr std::ptrdiff_t m_turnClockwise = 0x9a0; + constexpr std::ptrdiff_t m_goTimer = 0x9a8; + constexpr std::ptrdiff_t m_moveTimer = 0x9c0; + constexpr std::ptrdiff_t m_panicTimer = 0x9d8; + constexpr std::ptrdiff_t m_disperseTimer = 0x9f0; + constexpr std::ptrdiff_t m_proximityTimer = 0xa08; + constexpr std::ptrdiff_t m_visible = 0xa20; +} + +namespace CItem { + constexpr std::ptrdiff_t m_OnPlayerTouch = 0x938; + constexpr std::ptrdiff_t m_bActivateWhenAtRest = 0x960; + constexpr std::ptrdiff_t m_OnCacheInteraction = 0x968; + constexpr std::ptrdiff_t m_OnPlayerPickup = 0x990; + constexpr std::ptrdiff_t m_OnGlovePulled = 0x9b8; + constexpr std::ptrdiff_t m_vOriginalSpawnOrigin = 0x9e0; + constexpr std::ptrdiff_t m_vOriginalSpawnAngles = 0x9ec; + constexpr std::ptrdiff_t m_bPhysStartAsleep = 0x9f8; +} + +namespace CRagdollProp { + constexpr std::ptrdiff_t m_ragdoll = 0x938; + constexpr std::ptrdiff_t m_bStartDisabled = 0x970; + constexpr std::ptrdiff_t m_ragPos = 0x978; + constexpr std::ptrdiff_t m_ragAngles = 0x990; + constexpr std::ptrdiff_t m_hRagdollSource = 0x9a8; + constexpr std::ptrdiff_t m_lastUpdateTickCount = 0x9ac; + constexpr std::ptrdiff_t m_allAsleep = 0x9b0; + constexpr std::ptrdiff_t m_bFirstCollisionAfterLaunch = 0x9b1; + constexpr std::ptrdiff_t m_hDamageEntity = 0x9b4; + constexpr std::ptrdiff_t m_hKiller = 0x9b8; + constexpr std::ptrdiff_t m_hPhysicsAttacker = 0x9bc; + constexpr std::ptrdiff_t m_flLastPhysicsInfluenceTime = 0x9c0; + constexpr std::ptrdiff_t m_flFadeOutStartTime = 0x9c4; + constexpr std::ptrdiff_t m_flFadeTime = 0x9c8; + constexpr std::ptrdiff_t m_vecLastOrigin = 0x9cc; + constexpr std::ptrdiff_t m_flAwakeTime = 0x9d8; + constexpr std::ptrdiff_t m_flLastOriginChangeTime = 0x9dc; + constexpr std::ptrdiff_t m_nBloodColor = 0x9e0; + constexpr std::ptrdiff_t m_strOriginClassName = 0x9e8; + constexpr std::ptrdiff_t m_strSourceClassName = 0x9f0; + constexpr std::ptrdiff_t m_bHasBeenPhysgunned = 0x9f8; + constexpr std::ptrdiff_t m_bShouldTeleportPhysics = 0x9f9; + constexpr std::ptrdiff_t m_flBlendWeight = 0x9fc; + constexpr std::ptrdiff_t m_flDefaultFadeScale = 0xa00; + constexpr std::ptrdiff_t m_ragdollMins = 0xa08; + constexpr std::ptrdiff_t m_ragdollMaxs = 0xa20; + constexpr std::ptrdiff_t m_bShouldDeleteActivationRecord = 0xa38; + constexpr std::ptrdiff_t m_bValidatePoweredRagdollPose = 0xa98; +} + +namespace CPhysMagnet { + constexpr std::ptrdiff_t m_OnMagnetAttach = 0x930; + constexpr std::ptrdiff_t m_OnMagnetDetach = 0x958; + constexpr std::ptrdiff_t m_massScale = 0x980; + constexpr std::ptrdiff_t m_forceLimit = 0x984; + constexpr std::ptrdiff_t m_torqueLimit = 0x988; + constexpr std::ptrdiff_t m_MagnettedEntities = 0x990; + constexpr std::ptrdiff_t m_bActive = 0x9a8; + constexpr std::ptrdiff_t m_bHasHitSomething = 0x9a9; + constexpr std::ptrdiff_t m_flTotalMass = 0x9ac; + constexpr std::ptrdiff_t m_flRadius = 0x9b0; + constexpr std::ptrdiff_t m_flNextSuckTime = 0x9b4; + constexpr std::ptrdiff_t m_iMaxObjectsAttached = 0x9b8; +} + +namespace CPhysicsProp { + constexpr std::ptrdiff_t m_MotionEnabled = 0xab0; + constexpr std::ptrdiff_t m_OnAwakened = 0xad8; + constexpr std::ptrdiff_t m_OnAwake = 0xb00; + constexpr std::ptrdiff_t m_OnAsleep = 0xb28; + constexpr std::ptrdiff_t m_OnPlayerUse = 0xb50; + constexpr std::ptrdiff_t m_OnPlayerPickup = 0xb78; + constexpr std::ptrdiff_t m_OnOutOfWorld = 0xba0; + constexpr std::ptrdiff_t m_massScale = 0xbc8; + constexpr std::ptrdiff_t m_inertiaScale = 0xbcc; + constexpr std::ptrdiff_t m_buoyancyScale = 0xbd0; + constexpr std::ptrdiff_t m_damageType = 0xbd4; + constexpr std::ptrdiff_t m_damageToEnableMotion = 0xbd8; + constexpr std::ptrdiff_t m_flForceToEnableMotion = 0xbdc; + constexpr std::ptrdiff_t m_bThrownByPlayer = 0xbe0; + constexpr std::ptrdiff_t m_bDroppedByPlayer = 0xbe1; + constexpr std::ptrdiff_t m_bTouchedByPlayer = 0xbe2; + constexpr std::ptrdiff_t m_bFirstCollisionAfterLaunch = 0xbe3; + constexpr std::ptrdiff_t m_iExploitableByPlayer = 0xbe4; + constexpr std::ptrdiff_t m_bHasBeenAwakened = 0xbe8; + constexpr std::ptrdiff_t m_bIsOverrideProp = 0xbe9; + constexpr std::ptrdiff_t m_fNextCheckDisableMotionContactsTime = 0xbec; + constexpr std::ptrdiff_t m_iInitialGlowState = 0xbf0; + constexpr std::ptrdiff_t m_nGlowRange = 0xbf4; + constexpr std::ptrdiff_t m_nGlowRangeMin = 0xbf8; + constexpr std::ptrdiff_t m_glowColor = 0xbfc; + constexpr std::ptrdiff_t m_bForceNavIgnore = 0xc00; + constexpr std::ptrdiff_t m_bNoNavmeshBlocker = 0xc01; + constexpr std::ptrdiff_t m_bForceNpcExclude = 0xc02; + constexpr std::ptrdiff_t m_bShouldAutoConvertBackFromDebris = 0xc03; + constexpr std::ptrdiff_t m_bMuteImpactEffects = 0xc04; + constexpr std::ptrdiff_t m_bAcceptDamageFromHeldObjects = 0xc0c; + constexpr std::ptrdiff_t m_bEnableUseOutput = 0xc0d; + constexpr std::ptrdiff_t m_bAwake = 0xc0e; + constexpr std::ptrdiff_t m_nCollisionGroupOverride = 0xc10; +} + +namespace CPhysicsPropOverride { +} + +namespace CPhysicsPropRespawnable { + constexpr std::ptrdiff_t m_vOriginalSpawnOrigin = 0xc18; + constexpr std::ptrdiff_t m_vOriginalSpawnAngles = 0xc24; + constexpr std::ptrdiff_t m_vOriginalMins = 0xc30; + constexpr std::ptrdiff_t m_vOriginalMaxs = 0xc3c; + constexpr std::ptrdiff_t m_flRespawnDuration = 0xc48; +} + +namespace CWaterBullet { +} + +namespace CShatterGlassShardPhysics { + constexpr std::ptrdiff_t m_bDebris = 0xc18; + constexpr std::ptrdiff_t m_hParentShard = 0xc1c; + constexpr std::ptrdiff_t m_ShardDesc = 0xc20; +} + +namespace CEconEntity { + constexpr std::ptrdiff_t m_AttributeManager = 0x9d0; + constexpr std::ptrdiff_t m_OriginalOwnerXuidLow = 0xc98; + constexpr std::ptrdiff_t m_OriginalOwnerXuidHigh = 0xc9c; + constexpr std::ptrdiff_t m_nFallbackPaintKit = 0xca0; + constexpr std::ptrdiff_t m_nFallbackSeed = 0xca4; + constexpr std::ptrdiff_t m_flFallbackWear = 0xca8; + constexpr std::ptrdiff_t m_nFallbackStatTrak = 0xcac; + constexpr std::ptrdiff_t m_hOldProvidee = 0xcb0; + constexpr std::ptrdiff_t m_iOldOwnerClass = 0xcb4; +} + +namespace CEconWearable { + constexpr std::ptrdiff_t m_nForceSkin = 0xcb8; + constexpr std::ptrdiff_t m_bAlwaysAllow = 0xcbc; +} + +namespace CBaseGrenade { + constexpr std::ptrdiff_t m_OnPlayerPickup = 0x9c8; + constexpr std::ptrdiff_t m_OnExplode = 0x9f0; + constexpr std::ptrdiff_t m_bHasWarnedAI = 0xa18; + constexpr std::ptrdiff_t m_bIsSmokeGrenade = 0xa19; + constexpr std::ptrdiff_t m_bIsLive = 0xa1a; + constexpr std::ptrdiff_t m_DmgRadius = 0xa1c; + constexpr std::ptrdiff_t m_flDetonateTime = 0xa20; + constexpr std::ptrdiff_t m_flWarnAITime = 0xa24; + constexpr std::ptrdiff_t m_flDamage = 0xa28; + constexpr std::ptrdiff_t m_iszBounceSound = 0xa30; + constexpr std::ptrdiff_t m_ExplosionSound = 0xa38; + constexpr std::ptrdiff_t m_hThrower = 0xa44; + constexpr std::ptrdiff_t m_flNextAttack = 0xa60; + constexpr std::ptrdiff_t m_hOriginalThrower = 0xa64; +} + +namespace CCoopBonusCoin { +} + +namespace CBRC4Target { + constexpr std::ptrdiff_t m_hPlayerThatActivatedMe = 0x958; + constexpr std::ptrdiff_t m_bBrokenOpen = 0x95c; + constexpr std::ptrdiff_t m_flRadius = 0x960; +} + +namespace CParadropChopper { + constexpr std::ptrdiff_t m_vecDropPos = 0x934; + constexpr std::ptrdiff_t m_flLastDistFromDrop = 0x940; + constexpr std::ptrdiff_t m_bDroppedParadrop = 0x944; + constexpr std::ptrdiff_t m_pSoundLoop = 0x948; + constexpr std::ptrdiff_t m_flSpawnTime = 0x950; + constexpr std::ptrdiff_t m_flFlightTime = 0x954; + constexpr std::ptrdiff_t m_bPlayerIsFinishedRappelling = 0x958; + constexpr std::ptrdiff_t m_flPlayerFinishedRappellingTime = 0x95c; + constexpr std::ptrdiff_t m_strFlyoverDropEvent = 0x960; + constexpr std::ptrdiff_t m_hCallingPlayer = 0x968; + constexpr std::ptrdiff_t m_bCalledByPlayer = 0x96c; +} + +namespace CSurvivalSpawnChopper { + constexpr std::ptrdiff_t m_pSoundLoop = 0x930; + constexpr std::ptrdiff_t m_flSpawnTimeStamp = 0x938; + constexpr std::ptrdiff_t m_flFlightPathRotationOffset = 0x93c; + constexpr std::ptrdiff_t m_bFlipX = 0x940; + constexpr std::ptrdiff_t m_bFlipY = 0x941; + constexpr std::ptrdiff_t m_bCircling = 0x942; + constexpr std::ptrdiff_t m_flLastPassengerCheckTime = 0x944; +} + +namespace CItemCash { + constexpr std::ptrdiff_t m_bufCashOriginalSource = 0xa08; + constexpr std::ptrdiff_t m_nBundleSize = 0xa48; + constexpr std::ptrdiff_t m_flAllowPickupTime = 0xa50; +} + +namespace CDronegun { + constexpr std::ptrdiff_t m_vecAttentionTarget = 0x940; + constexpr std::ptrdiff_t m_vecTargetOffset = 0x94c; + constexpr std::ptrdiff_t m_bHasTarget = 0x958; + constexpr std::ptrdiff_t m_vecAttentionCurrent = 0x95c; + constexpr std::ptrdiff_t m_nPoseParamPitch = 0x968; + constexpr std::ptrdiff_t m_nPoseParamYaw = 0x96c; + constexpr std::ptrdiff_t m_bVarInit = 0x970; + constexpr std::ptrdiff_t m_flDisorientEndTime = 0x974; + constexpr std::ptrdiff_t m_hEnvGunfire = 0x990; + constexpr std::ptrdiff_t m_flLastShootTime = 0x994; + constexpr std::ptrdiff_t m_flLastSound1 = 0x998; + constexpr std::ptrdiff_t m_flLastSound2 = 0x99c; + constexpr std::ptrdiff_t m_flLastSound3 = 0x9a0; + constexpr std::ptrdiff_t m_nAttachMuzzle = 0x9a4; +} + +namespace CDrone { + constexpr std::ptrdiff_t m_hMoveToThisEntity = 0xc30; + constexpr std::ptrdiff_t m_hDeliveryCargo = 0xc34; + constexpr std::ptrdiff_t m_hRecentCargo = 0xc38; + constexpr std::ptrdiff_t m_bPilotTakeoverAllowed = 0xc3c; + constexpr std::ptrdiff_t m_hPotentialCargo = 0xc40; + constexpr std::ptrdiff_t m_hCurrentPilot = 0xc44; + constexpr std::ptrdiff_t m_vecTagPositions = 0xc48; + constexpr std::ptrdiff_t m_vecTagIncrements = 0xd68; + constexpr std::ptrdiff_t m_flLastUpdateTargetScanTime = 0xdc8; + constexpr std::ptrdiff_t m_bWasControlledByPlayer = 0xdcc; + constexpr std::ptrdiff_t m_bHovering = 0xdcd; + constexpr std::ptrdiff_t m_pStateSound = 0xdd0; + constexpr std::ptrdiff_t m_vecGroundOffset = 0xdd8; + constexpr std::ptrdiff_t m_bQueuingOrders = 0xe00; + constexpr std::ptrdiff_t m_flLastOrdersChangeTimestamp = 0xe04; + constexpr std::ptrdiff_t m_vecLastKnownAcceleration = 0xe08; + constexpr std::ptrdiff_t m_vecLastKnownVelocity = 0xe14; + constexpr std::ptrdiff_t m_vecLastKnownAngImpulse = 0xe20; + constexpr std::ptrdiff_t m_flLastKnownSpeed = 0xe2c; + constexpr std::ptrdiff_t m_flMaxSpeed = 0xe30; + constexpr std::ptrdiff_t m_vecCurrentDestination = 0xe34; + constexpr std::ptrdiff_t m_flLastKnownDistanceToDestination = 0xe40; + constexpr std::ptrdiff_t m_flLastKnownWaypointAccuracy = 0xe44; + constexpr std::ptrdiff_t m_vecWaypointQueue = 0xe48; + constexpr std::ptrdiff_t m_vecSparsePositionHistory = 0xe60; + constexpr std::ptrdiff_t m_vecPositionHistory = 0xe78; + constexpr std::ptrdiff_t m_vecUnstuckQueue = 0xe90; + constexpr std::ptrdiff_t m_flLastKnownGroundHeight = 0xea8; + constexpr std::ptrdiff_t m_GroundCheckTimer = 0xeb0; + constexpr std::ptrdiff_t m_ActInjuredTimer = 0xec8; + constexpr std::ptrdiff_t m_flPowerCutUntil = 0xee0; + constexpr std::ptrdiff_t m_WanderTimer = 0xee8; + constexpr std::ptrdiff_t m_flLastTimeSawAttackTarget = 0xf00; + constexpr std::ptrdiff_t m_vecLastKnownAttackTargetPosition = 0xf04; + constexpr std::ptrdiff_t m_hAttackTarget = 0xf10; + constexpr std::ptrdiff_t m_IntervalThinkTimer = 0xf18; + constexpr std::ptrdiff_t m_bDoIntervalThink = 0xf30; + constexpr std::ptrdiff_t m_flLastDroppedGrenadeAt = 0xf34; + constexpr std::ptrdiff_t m_flSpawnTimeStamp = 0xf38; + constexpr std::ptrdiff_t m_bInPlayArea = 0xf3c; + constexpr std::ptrdiff_t m_vecSpawnPosition = 0xf40; + constexpr std::ptrdiff_t m_vecLastKnownMoveToEntityPosition = 0xf4c; + constexpr std::ptrdiff_t m_tCargoCollisionGroup = 0xf58; + constexpr std::ptrdiff_t m_flTimeArrivedAtMoveToEntity = 0xf5c; + constexpr std::ptrdiff_t m_vecAvoidanceDir = 0xf60; + constexpr std::ptrdiff_t m_flAvoidanceTime = 0xf6c; + constexpr std::ptrdiff_t m_bUpgraded = 0xf70; + constexpr std::ptrdiff_t m_hCargoOwner = 0xf74; + constexpr std::ptrdiff_t m_vecPlayerControlThrust = 0xf80; + constexpr std::ptrdiff_t m_flRopeLength = 0xf8c; + constexpr std::ptrdiff_t m_bDidDropOnRoofWarning = 0xf90; + constexpr std::ptrdiff_t m_flSelfDestructTime = 0xf94; + constexpr std::ptrdiff_t m_bSelfDestructFire = 0xf98; + constexpr std::ptrdiff_t m_bSelfDestructSpark = 0xf99; + constexpr std::ptrdiff_t m_hLastKnownPilot = 0xf9c; + constexpr std::ptrdiff_t m_bHasAlwaysBeenInZone = 0xfa0; + constexpr std::ptrdiff_t m_nJammedAmount = 0xfa4; + constexpr std::ptrdiff_t m_hPlayerThatOrderedMe = 0xfa8; +} + +namespace CCSPropExplodingBarrel { + constexpr std::ptrdiff_t m_hBarrelTop = 0xc20; + constexpr std::ptrdiff_t m_bExploded = 0xc24; + constexpr std::ptrdiff_t m_nAccumulatedDamage = 0xc28; +} + +namespace CCSPropExplodingBarrelTop { + constexpr std::ptrdiff_t m_flOverrideAlpha = 0xc18; +} + +namespace CEnvGasCanister { + constexpr std::ptrdiff_t m_bLanded = 0x930; + constexpr std::ptrdiff_t m_flDamageRadius = 0x934; + constexpr std::ptrdiff_t m_flDamage = 0x938; + constexpr std::ptrdiff_t m_bIncomingSoundStarted = 0x93c; + constexpr std::ptrdiff_t m_bHasDetonated = 0x93d; + constexpr std::ptrdiff_t m_bLaunched = 0x93e; + constexpr std::ptrdiff_t m_OnLaunched = 0x940; + constexpr std::ptrdiff_t m_OnImpacted = 0x968; + constexpr std::ptrdiff_t m_OnOpened = 0x990; + constexpr std::ptrdiff_t m_vecImpactPosition = 0x9b8; + constexpr std::ptrdiff_t m_vecStartPosition = 0x9c4; + constexpr std::ptrdiff_t m_vecEnterWorldPosition = 0x9d0; + constexpr std::ptrdiff_t m_vecDirection = 0x9dc; + constexpr std::ptrdiff_t m_vecStartAngles = 0x9e8; + constexpr std::ptrdiff_t m_flFlightTime = 0x9f4; + constexpr std::ptrdiff_t m_flFlightSpeed = 0x9f8; + constexpr std::ptrdiff_t m_flLaunchTime = 0x9fc; + constexpr std::ptrdiff_t m_flInitialZSpeed = 0xa00; + constexpr std::ptrdiff_t m_flZAcceleration = 0xa04; + constexpr std::ptrdiff_t m_flHorizSpeed = 0xa08; + constexpr std::ptrdiff_t m_bLaunchedFromWithinWorld = 0xa0c; + constexpr std::ptrdiff_t m_vecParabolaDirection = 0xa10; + constexpr std::ptrdiff_t m_flWorldEnterTime = 0xa1c; + constexpr std::ptrdiff_t m_vecSkyboxOrigin = 0xa20; + constexpr std::ptrdiff_t m_flSkyboxScale = 0xa2c; + constexpr std::ptrdiff_t m_bInSkybox = 0xa30; + constexpr std::ptrdiff_t m_bDoImpactEffects = 0xa31; + constexpr std::ptrdiff_t m_nMyZoneIndex = 0xa34; + constexpr std::ptrdiff_t m_hSkyboxCopy = 0xa38; + constexpr std::ptrdiff_t m_flLaunchHeight = 0xa3c; +} + +namespace CPropCounter { + constexpr std::ptrdiff_t m_flDisplayValue = 0x930; + constexpr std::ptrdiff_t m_nInitialValue = 0x934; +} + +namespace CBaseViewModel { + constexpr std::ptrdiff_t m_vecLastFacing = 0x938; + constexpr std::ptrdiff_t m_nViewModelIndex = 0x944; + constexpr std::ptrdiff_t m_nAnimationParity = 0x948; + constexpr std::ptrdiff_t m_flAnimationStartTime = 0x94c; + constexpr std::ptrdiff_t m_hWeapon = 0x950; + constexpr std::ptrdiff_t m_sVMName = 0x958; + constexpr std::ptrdiff_t m_sAnimationPrefix = 0x960; + constexpr std::ptrdiff_t m_hOldLayerSequence = 0x968; + constexpr std::ptrdiff_t m_oldLayer = 0x96c; + constexpr std::ptrdiff_t m_oldLayerStartTime = 0x970; + constexpr std::ptrdiff_t m_hControlPanel = 0x974; +} + +namespace CPredictedViewModel { +} + +namespace CPlantedC4 { + constexpr std::ptrdiff_t m_bPlantedAtQuestTarget = 0x930; + constexpr std::ptrdiff_t m_bBombTicking = 0x931; + constexpr std::ptrdiff_t m_flC4Blow = 0x934; + constexpr std::ptrdiff_t m_nBombSite = 0x938; + constexpr std::ptrdiff_t m_nSourceSoundscapeHash = 0x93c; + constexpr std::ptrdiff_t m_OnBombDefused = 0x940; + constexpr std::ptrdiff_t m_OnBombBeginDefuse = 0x968; + constexpr std::ptrdiff_t m_OnBombDefuseAborted = 0x990; + constexpr std::ptrdiff_t m_bCannotBeDefused = 0x9b8; + constexpr std::ptrdiff_t m_entitySpottedState = 0x9c0; + constexpr std::ptrdiff_t m_nSpotRules = 0x9d8; + constexpr std::ptrdiff_t m_bTrainingPlacedByPlayer = 0x9dc; + constexpr std::ptrdiff_t m_bHasExploded = 0x9dd; + constexpr std::ptrdiff_t m_flTimerLength = 0x9e0; + constexpr std::ptrdiff_t m_bBeingDefused = 0x9e4; + constexpr std::ptrdiff_t m_fLastDefuseTime = 0x9ec; + constexpr std::ptrdiff_t m_flDefuseLength = 0x9f4; + constexpr std::ptrdiff_t m_flDefuseCountDown = 0x9f8; + constexpr std::ptrdiff_t m_bBombDefused = 0x9fc; + constexpr std::ptrdiff_t m_hBombDefuser = 0xa00; + constexpr std::ptrdiff_t m_hControlPanel = 0xa04; + constexpr std::ptrdiff_t m_iProgressBarTime = 0xa08; + constexpr std::ptrdiff_t m_bVoiceAlertFired = 0xa0c; + constexpr std::ptrdiff_t m_bVoiceAlertPlayed = 0xa0d; + constexpr std::ptrdiff_t m_flNextBotBeepTime = 0xa14; + constexpr std::ptrdiff_t m_bPlantedAfterPickup = 0xa1c; + constexpr std::ptrdiff_t m_angCatchUpToPlayerEye = 0xa20; + constexpr std::ptrdiff_t m_flLastSpinDetectionTime = 0xa2c; +} + +namespace CBaseCSGrenadeProjectile { + constexpr std::ptrdiff_t m_vInitialVelocity = 0xa68; + constexpr std::ptrdiff_t m_nBounces = 0xa74; + constexpr std::ptrdiff_t m_nExplodeEffectIndex = 0xa78; + constexpr std::ptrdiff_t m_nExplodeEffectTickBegin = 0xa80; + constexpr std::ptrdiff_t m_vecExplodeEffectOrigin = 0xa84; + constexpr std::ptrdiff_t m_unOGSExtraFlags = 0xa90; + constexpr std::ptrdiff_t m_bDetonationRecorded = 0xa91; + constexpr std::ptrdiff_t m_flDetonateTime = 0xa94; + constexpr std::ptrdiff_t m_nItemIndex = 0xa98; + constexpr std::ptrdiff_t m_vecOriginalSpawnLocation = 0xa9c; + constexpr std::ptrdiff_t m_flLastBounceSoundTime = 0xaa8; + constexpr std::ptrdiff_t m_vecGrenadeSpin = 0xaac; + constexpr std::ptrdiff_t m_vecLastHitSurfaceNormal = 0xab8; + constexpr std::ptrdiff_t m_nTicksAtZeroVelocity = 0xac4; +} + +namespace CItemDogtags { + constexpr std::ptrdiff_t m_OwningPlayer = 0xa08; + constexpr std::ptrdiff_t m_KillingPlayer = 0xa0c; +} + +namespace CBreachChargeProjectile { + constexpr std::ptrdiff_t m_bShouldExplode = 0xa68; + constexpr std::ptrdiff_t m_weaponThatThrewMe = 0xa6c; + constexpr std::ptrdiff_t m_nParentBoneIndex = 0xa70; + constexpr std::ptrdiff_t m_vecParentBonePos = 0xa74; + constexpr std::ptrdiff_t m_bDefused = 0xa80; + constexpr std::ptrdiff_t m_bUnstuckFromPlayer = 0xa81; + constexpr std::ptrdiff_t m_bResolvedParent = 0xa82; + constexpr std::ptrdiff_t m_vecLastKnownValidPos = 0xa84; + constexpr std::ptrdiff_t m_hDesiredParent = 0xa90; +} + +namespace CBumpMineProjectile { + constexpr std::ptrdiff_t m_bShouldExplode = 0xa68; + constexpr std::ptrdiff_t m_nParentBoneIndex = 0xa6c; + constexpr std::ptrdiff_t m_vecParentBonePos = 0xa70; + constexpr std::ptrdiff_t m_bArmed = 0xa7c; + constexpr std::ptrdiff_t m_bDefused = 0xa7d; + constexpr std::ptrdiff_t m_bUnstuckFromPlayer = 0xa7e; + constexpr std::ptrdiff_t m_vecTargetedObjects = 0xa80; + constexpr std::ptrdiff_t m_bResolvedParent = 0xac0; + constexpr std::ptrdiff_t m_vecLastKnownValidPos = 0xac4; + constexpr std::ptrdiff_t m_hDesiredParent = 0xad0; + constexpr std::ptrdiff_t m_bBeingUsed = 0xad4; +} + +namespace CTripWireFireProjectile { + constexpr std::ptrdiff_t m_flAttachTime = 0xa68; + constexpr std::ptrdiff_t m_vecTripWireEndPositions = 0xa6c; + constexpr std::ptrdiff_t m_bTripWireEndPositionsUsed = 0xae4; + constexpr std::ptrdiff_t m_hStuckToEnt = 0xaf0; + constexpr std::ptrdiff_t m_nLastStuckToEntModelIndex = 0xaf4; + constexpr std::ptrdiff_t m_xformStuckToEnt = 0xb00; + constexpr std::ptrdiff_t m_vecTrapSetPosition = 0xb20; + constexpr std::ptrdiff_t m_nWireSoundsPlayed = 0xb2c; +} + +namespace CPhysicsPropMultiplayer { +} + +namespace CBrBaseItem { +} + +namespace CPhysPropLootCrate { + constexpr std::ptrdiff_t m_bRenderInPSPM = 0xc40; + constexpr std::ptrdiff_t m_bRenderInTablet = 0xc41; + constexpr std::ptrdiff_t m_flSpawnTime = 0xc44; + constexpr std::ptrdiff_t m_bTakeDamageFromDangerZone = 0xc48; + constexpr std::ptrdiff_t m_pszCrateName = 0xc50; + constexpr std::ptrdiff_t m_hCrateOwner = 0xc58; + constexpr std::ptrdiff_t m_bOwnedByPlayer = 0xc5c; + constexpr std::ptrdiff_t m_flDampingOriginalSpeed = 0xc60; + constexpr std::ptrdiff_t m_flDampingOriginalRot = 0xc64; +} + +namespace CPhysPropMetalCrate { +} + +namespace CPhysPropMoneyCrate { + constexpr std::ptrdiff_t m_nCurrentCashCount = 0xc68; + constexpr std::ptrdiff_t m_nCashCount = 0xc6c; + constexpr std::ptrdiff_t m_flTimeLastUsed = 0xc70; +} + +namespace CPhysPropParadropCrate { + constexpr std::ptrdiff_t m_bFalling = 0xc68; + constexpr std::ptrdiff_t m_nNumThinksAtZeroVerticalVelocity = 0xc6c; +} + +namespace CPhysPropAmmoBox { + constexpr std::ptrdiff_t m_nUsesRemaining = 0xc40; + constexpr std::ptrdiff_t m_flTimeLastUsed = 0xc44; +} + +namespace CPhysPropWeaponUpgrade { + constexpr std::ptrdiff_t m_nEventPriority = 0xc40; + constexpr std::ptrdiff_t m_flTimeLastUsed = 0xc44; +} + +namespace CPhysPropRadarJammer { + constexpr std::ptrdiff_t m_flSpawnTime = 0xc48; + constexpr std::ptrdiff_t m_flLastSoundTime = 0xc4c; + constexpr std::ptrdiff_t m_vecJammedHexCenters = 0xc50; + constexpr std::ptrdiff_t m_vecLastJammedOrigin = 0xc68; +} + +namespace CSensorGrenadeProjectile { + constexpr std::ptrdiff_t m_fExpireTime = 0xac8; + constexpr std::ptrdiff_t m_fNextDetectPlayerSound = 0xacc; + constexpr std::ptrdiff_t m_hDisplayGrenade = 0xad0; +} + +namespace CFlashbangProjectile { + constexpr std::ptrdiff_t m_flTimeToDetonate = 0xac8; + constexpr std::ptrdiff_t m_numOpponentsHit = 0xacc; + constexpr std::ptrdiff_t m_numTeammatesHit = 0xacd; +} + +namespace CHEGrenadeProjectile { +} + +namespace CPlantedC4Survival { +} + +namespace CChicken { + constexpr std::ptrdiff_t m_AttributeManager = 0xbc8; + constexpr std::ptrdiff_t m_OriginalOwnerXuidLow = 0xe90; + constexpr std::ptrdiff_t m_OriginalOwnerXuidHigh = 0xe94; + constexpr std::ptrdiff_t m_updateTimer = 0xe98; + constexpr std::ptrdiff_t m_stuckAnchor = 0xeb0; + constexpr std::ptrdiff_t m_stuckTimer = 0xec0; + constexpr std::ptrdiff_t m_collisionStuckTimer = 0xed8; + constexpr std::ptrdiff_t m_isOnGround = 0xef0; + constexpr std::ptrdiff_t m_activity = 0xef4; + constexpr std::ptrdiff_t m_activityTimer = 0xef8; + constexpr std::ptrdiff_t m_turnRate = 0xf10; + constexpr std::ptrdiff_t m_fleeFrom = 0xf14; + constexpr std::ptrdiff_t m_moveRateThrottleTimer = 0xf18; + constexpr std::ptrdiff_t m_startleTimer = 0xf30; + constexpr std::ptrdiff_t m_vocalizeTimer = 0xf48; + constexpr std::ptrdiff_t m_flWhenZombified = 0xf60; + constexpr std::ptrdiff_t m_jumpedThisFrame = 0xf64; + constexpr std::ptrdiff_t m_leader = 0xf68; + constexpr std::ptrdiff_t m_reuseTimer = 0xf70; + constexpr std::ptrdiff_t m_hasBeenUsed = 0xf88; + constexpr std::ptrdiff_t m_jumpTimer = 0xf90; + constexpr std::ptrdiff_t m_flLastJumpTime = 0xfa8; + constexpr std::ptrdiff_t m_bInJump = 0xfac; + constexpr std::ptrdiff_t m_isWaitingForLeader = 0xfad; + constexpr std::ptrdiff_t m_repathTimer = 0x2fb8; + constexpr std::ptrdiff_t m_inhibitDoorTimer = 0x2fd0; + constexpr std::ptrdiff_t m_inhibitObstacleAvoidanceTimer = 0x3060; + constexpr std::ptrdiff_t m_vecPathGoal = 0x3080; + constexpr std::ptrdiff_t m_flActiveFollowStartTime = 0x308c; + constexpr std::ptrdiff_t m_followMinuteTimer = 0x3090; + constexpr std::ptrdiff_t m_vecLastEggPoopPosition = 0x30a8; + constexpr std::ptrdiff_t m_vecEggsPooped = 0x30b8; + constexpr std::ptrdiff_t m_BlockDirectionTimer = 0x30d8; +} + +namespace CHostageCarriableProp { +} + +namespace CItemAssaultSuit { +} + +namespace CItemHeavyAssaultSuit { +} + +namespace CItemKevlar { +} + +namespace CItemDefuser { + constexpr std::ptrdiff_t m_entitySpottedState = 0xa08; + constexpr std::ptrdiff_t m_nSpotRules = 0xa20; +} + +namespace CBasePlayerWeapon { + constexpr std::ptrdiff_t m_iState = 0xcb8; + constexpr std::ptrdiff_t m_bRemoveable = 0xcbc; + constexpr std::ptrdiff_t m_nNextPrimaryAttackTick = 0xcc0; + constexpr std::ptrdiff_t m_flNextPrimaryAttackTickRatio = 0xcc4; + constexpr std::ptrdiff_t m_nNextSecondaryAttackTick = 0xcc8; + constexpr std::ptrdiff_t m_flNextSecondaryAttackTickRatio = 0xccc; + constexpr std::ptrdiff_t m_iClip1 = 0xcd0; + constexpr std::ptrdiff_t m_iClip2 = 0xcd4; + constexpr std::ptrdiff_t m_pReserveAmmo = 0xcd8; + constexpr std::ptrdiff_t m_OnPlayerUse = 0xce0; +} + +namespace CBaseFlexAlias_funCBaseFlex { +} + +namespace CScriptItem { + constexpr std::ptrdiff_t m_OnPlayerPickup = 0xa08; + constexpr std::ptrdiff_t m_MoveTypeOverride = 0xa30; +} + +namespace CRagdollPropAlias_physics_prop_ragdoll { +} + +namespace CRagdollPropAttached { + constexpr std::ptrdiff_t m_boneIndexAttached = 0xad8; + constexpr std::ptrdiff_t m_ragdollAttachedObjectIndex = 0xadc; + constexpr std::ptrdiff_t m_attachmentPointBoneSpace = 0xae0; + constexpr std::ptrdiff_t m_attachmentPointRagdollSpace = 0xaec; + constexpr std::ptrdiff_t m_bShouldDetach = 0xaf8; + constexpr std::ptrdiff_t m_bShouldDeleteAttachedActivationRecord = 0xb08; +} + +namespace CPropDoorRotating { + constexpr std::ptrdiff_t m_vecAxis = 0xe38; + constexpr std::ptrdiff_t m_flDistance = 0xe44; + constexpr std::ptrdiff_t m_eSpawnPosition = 0xe48; + constexpr std::ptrdiff_t m_eOpenDirection = 0xe4c; + constexpr std::ptrdiff_t m_eCurrentOpenDirection = 0xe50; + constexpr std::ptrdiff_t m_flAjarAngle = 0xe54; + constexpr std::ptrdiff_t m_angRotationAjarDeprecated = 0xe58; + constexpr std::ptrdiff_t m_angRotationClosed = 0xe64; + constexpr std::ptrdiff_t m_angRotationOpenForward = 0xe70; + constexpr std::ptrdiff_t m_angRotationOpenBack = 0xe7c; + constexpr std::ptrdiff_t m_angGoal = 0xe88; + constexpr std::ptrdiff_t m_vecForwardBoundsMin = 0xe94; + constexpr std::ptrdiff_t m_vecForwardBoundsMax = 0xea0; + constexpr std::ptrdiff_t m_vecBackBoundsMin = 0xeac; + constexpr std::ptrdiff_t m_vecBackBoundsMax = 0xeb8; + constexpr std::ptrdiff_t m_bAjarDoorShouldntAlwaysOpen = 0xec4; + constexpr std::ptrdiff_t m_hEntityBlocker = 0xec8; +} + +namespace CPropDoorRotatingBreakable { + constexpr std::ptrdiff_t m_bBreakable = 0xed0; + constexpr std::ptrdiff_t m_isAbleToCloseAreaPortals = 0xed1; + constexpr std::ptrdiff_t m_currentDamageState = 0xed4; + constexpr std::ptrdiff_t m_damageStates = 0xed8; +} + +namespace CBaseCombatCharacter { + constexpr std::ptrdiff_t m_bForceServerRagdoll = 0x9c0; + constexpr std::ptrdiff_t m_hMyWearables = 0x9c8; + constexpr std::ptrdiff_t m_flFieldOfView = 0x9e0; + constexpr std::ptrdiff_t m_impactEnergyScale = 0x9e4; + constexpr std::ptrdiff_t m_LastHitGroup = 0x9e8; + constexpr std::ptrdiff_t m_bApplyStressDamage = 0x9ec; + constexpr std::ptrdiff_t m_bloodColor = 0x9f0; + constexpr std::ptrdiff_t m_navMeshID = 0xa50; + constexpr std::ptrdiff_t m_iDamageCount = 0xa54; + constexpr std::ptrdiff_t m_pVecRelationships = 0xa58; + constexpr std::ptrdiff_t m_strRelationships = 0xa60; + constexpr std::ptrdiff_t m_eHull = 0xa68; + constexpr std::ptrdiff_t m_nNavHullIdx = 0xa6c; +} + +namespace CItemGeneric { + constexpr std::ptrdiff_t m_bHasTriggerRadius = 0xa10; + constexpr std::ptrdiff_t m_bHasPickupRadius = 0xa11; + constexpr std::ptrdiff_t m_flPickupRadiusSqr = 0xa14; + constexpr std::ptrdiff_t m_flTriggerRadiusSqr = 0xa18; + constexpr std::ptrdiff_t m_flLastPickupCheck = 0xa1c; + constexpr std::ptrdiff_t m_bPlayerCounterListenerAdded = 0xa20; + constexpr std::ptrdiff_t m_bPlayerInTriggerRadius = 0xa21; + constexpr std::ptrdiff_t m_hSpawnParticleEffect = 0xa28; + constexpr std::ptrdiff_t m_pAmbientSoundEffect = 0xa30; + constexpr std::ptrdiff_t m_bAutoStartAmbientSound = 0xa38; + constexpr std::ptrdiff_t m_pSpawnScriptFunction = 0xa40; + constexpr std::ptrdiff_t m_hPickupParticleEffect = 0xa48; + constexpr std::ptrdiff_t m_pPickupSoundEffect = 0xa50; + constexpr std::ptrdiff_t m_pPickupScriptFunction = 0xa58; + constexpr std::ptrdiff_t m_hTimeoutParticleEffect = 0xa60; + constexpr std::ptrdiff_t m_pTimeoutSoundEffect = 0xa68; + constexpr std::ptrdiff_t m_pTimeoutScriptFunction = 0xa70; + constexpr std::ptrdiff_t m_pPickupFilterName = 0xa78; + constexpr std::ptrdiff_t m_hPickupFilter = 0xa80; + constexpr std::ptrdiff_t m_OnPickup = 0xa88; + constexpr std::ptrdiff_t m_OnTimeout = 0xab0; + constexpr std::ptrdiff_t m_OnTriggerStartTouch = 0xad8; + constexpr std::ptrdiff_t m_OnTriggerTouch = 0xb00; + constexpr std::ptrdiff_t m_OnTriggerEndTouch = 0xb28; + constexpr std::ptrdiff_t m_pAllowPickupScriptFunction = 0xb50; + constexpr std::ptrdiff_t m_flPickupRadius = 0xb58; + constexpr std::ptrdiff_t m_flTriggerRadius = 0xb5c; + constexpr std::ptrdiff_t m_pTriggerSoundEffect = 0xb60; + constexpr std::ptrdiff_t m_bGlowWhenInTrigger = 0xb68; + constexpr std::ptrdiff_t m_glowColor = 0xb69; + constexpr std::ptrdiff_t m_bUseable = 0xb6d; + constexpr std::ptrdiff_t m_hTriggerHelper = 0xb70; +} + +namespace CBasePlayerPawn { + constexpr std::ptrdiff_t m_pWeaponServices = 0xa70; + constexpr std::ptrdiff_t m_pItemServices = 0xa78; + constexpr std::ptrdiff_t m_pAutoaimServices = 0xa80; + constexpr std::ptrdiff_t m_pObserverServices = 0xa88; + constexpr std::ptrdiff_t m_pWaterServices = 0xa90; + constexpr std::ptrdiff_t m_pUseServices = 0xa98; + constexpr std::ptrdiff_t m_pFlashlightServices = 0xaa0; + constexpr std::ptrdiff_t m_pCameraServices = 0xaa8; + constexpr std::ptrdiff_t m_pMovementServices = 0xab0; + constexpr std::ptrdiff_t m_ServerViewAngleChanges = 0xac0; + constexpr std::ptrdiff_t m_nHighestGeneratedServerViewAngleChangeIndex = 0xb10; + constexpr std::ptrdiff_t v_angle = 0xb14; + constexpr std::ptrdiff_t v_anglePrevious = 0xb20; + constexpr std::ptrdiff_t m_iHideHUD = 0xb2c; + constexpr std::ptrdiff_t m_skybox3d = 0xb30; + constexpr std::ptrdiff_t m_fTimeLastHurt = 0xbc0; + constexpr std::ptrdiff_t m_flDeathTime = 0xbc4; + constexpr std::ptrdiff_t m_fNextSuicideTime = 0xbc8; + constexpr std::ptrdiff_t m_fInitHUD = 0xbcc; + constexpr std::ptrdiff_t m_pExpresser = 0xbd0; + constexpr std::ptrdiff_t m_hController = 0xbd8; + constexpr std::ptrdiff_t m_fHltvReplayDelay = 0xbe0; + constexpr std::ptrdiff_t m_fHltvReplayEnd = 0xbe4; + constexpr std::ptrdiff_t m_iHltvReplayEntity = 0xbe8; +} + +namespace CCSGOViewModel { + constexpr std::ptrdiff_t m_bShouldIgnoreOffsetAndAccuracy = 0x978; + constexpr std::ptrdiff_t m_nWeaponParity = 0x97c; + constexpr std::ptrdiff_t m_nOldWeaponParity = 0x980; +} + +namespace CWeaponCSBase { + constexpr std::ptrdiff_t m_flFireSequenceStartTime = 0xd30; + constexpr std::ptrdiff_t m_nFireSequenceStartTimeChange = 0xd34; + constexpr std::ptrdiff_t m_nFireSequenceStartTimeAck = 0xd38; + constexpr std::ptrdiff_t m_bPlayerFireEventIsPrimary = 0xd3c; + constexpr std::ptrdiff_t m_seqIdle = 0xd40; + constexpr std::ptrdiff_t m_seqFirePrimary = 0xd44; + constexpr std::ptrdiff_t m_seqFireSecondary = 0xd48; + constexpr std::ptrdiff_t m_bPlayerAmmoStockOnPickup = 0xd58; + constexpr std::ptrdiff_t m_bRequireUseToTouch = 0xd59; + constexpr std::ptrdiff_t m_flLastTimeInAir = 0xd5c; + constexpr std::ptrdiff_t m_flLastDeployTime = 0xd60; + constexpr std::ptrdiff_t m_nViewModelIndex = 0xd64; + constexpr std::ptrdiff_t m_bReloadsWithClips = 0xd68; + constexpr std::ptrdiff_t m_flTimeWeaponIdle = 0xd88; + constexpr std::ptrdiff_t m_bFireOnEmpty = 0xd8c; + constexpr std::ptrdiff_t m_OnPlayerPickup = 0xd90; + constexpr std::ptrdiff_t m_weaponMode = 0xdb8; + constexpr std::ptrdiff_t m_flTurningInaccuracyDelta = 0xdbc; + constexpr std::ptrdiff_t m_vecTurningInaccuracyEyeDirLast = 0xdc0; + constexpr std::ptrdiff_t m_flTurningInaccuracy = 0xdcc; + constexpr std::ptrdiff_t m_fAccuracyPenalty = 0xdd0; + constexpr std::ptrdiff_t m_flLastAccuracyUpdateTime = 0xdd4; + constexpr std::ptrdiff_t m_fAccuracySmoothedForZoom = 0xdd8; + constexpr std::ptrdiff_t m_fScopeZoomEndTime = 0xddc; + constexpr std::ptrdiff_t m_iRecoilIndex = 0xde0; + constexpr std::ptrdiff_t m_flRecoilIndex = 0xde4; + constexpr std::ptrdiff_t m_bBurstMode = 0xde8; + constexpr std::ptrdiff_t m_flPostponeFireReadyTime = 0xdec; + constexpr std::ptrdiff_t m_bInReload = 0xdf0; + constexpr std::ptrdiff_t m_bReloadVisuallyComplete = 0xdf1; + constexpr std::ptrdiff_t m_flDroppedAtTime = 0xdf4; + constexpr std::ptrdiff_t m_bIsHauledBack = 0xdf8; + constexpr std::ptrdiff_t m_bSilencerOn = 0xdf9; + constexpr std::ptrdiff_t m_flTimeSilencerSwitchComplete = 0xdfc; + constexpr std::ptrdiff_t m_iOriginalTeamNumber = 0xe00; + constexpr std::ptrdiff_t m_flNextAttackRenderTimeOffset = 0xe04; + constexpr std::ptrdiff_t m_bCanBePickedUp = 0xe10; + constexpr std::ptrdiff_t m_bUseCanOverrideNextOwnerTouchTime = 0xe11; + constexpr std::ptrdiff_t m_nextOwnerTouchTime = 0xe14; + constexpr std::ptrdiff_t m_nextPrevOwnerTouchTime = 0xe18; + constexpr std::ptrdiff_t m_hPrevOwner = 0xe1c; + constexpr std::ptrdiff_t m_nDropTick = 0xe20; + constexpr std::ptrdiff_t m_donated = 0xe44; + constexpr std::ptrdiff_t m_fLastShotTime = 0xe48; + constexpr std::ptrdiff_t m_bWasOwnedByCT = 0xe4c; + constexpr std::ptrdiff_t m_bWasOwnedByTerrorist = 0xe4d; + constexpr std::ptrdiff_t m_bFiredOutOfAmmoEvent = 0xe4e; + constexpr std::ptrdiff_t m_numRemoveUnownedWeaponThink = 0xe50; + constexpr std::ptrdiff_t m_IronSightController = 0xe58; + constexpr std::ptrdiff_t m_iIronSightMode = 0xe70; + constexpr std::ptrdiff_t m_flLastLOSTraceFailureTime = 0xe74; + constexpr std::ptrdiff_t m_iNumEmptyAttacks = 0xe78; +} + +namespace CWeaponCSBaseGun { + constexpr std::ptrdiff_t m_zoomLevel = 0xe80; + constexpr std::ptrdiff_t m_iBurstShotsRemaining = 0xe84; + constexpr std::ptrdiff_t m_silencedModelIndex = 0xe90; + constexpr std::ptrdiff_t m_inPrecache = 0xe94; + constexpr std::ptrdiff_t m_bNeedsBoltAction = 0xe95; + constexpr std::ptrdiff_t m_bSkillReloadAvailable = 0xe96; + constexpr std::ptrdiff_t m_bSkillReloadLiftedReloadKey = 0xe97; + constexpr std::ptrdiff_t m_bSkillBoltInterruptAvailable = 0xe98; + constexpr std::ptrdiff_t m_bSkillBoltLiftedFireKey = 0xe99; +} + +namespace CC4 { + constexpr std::ptrdiff_t m_vecLastValidPlayerHeldPosition = 0xe80; + constexpr std::ptrdiff_t m_vecLastValidDroppedPosition = 0xe8c; + constexpr std::ptrdiff_t m_bDoValidDroppedPositionCheck = 0xe98; + constexpr std::ptrdiff_t m_bStartedArming = 0xe99; + constexpr std::ptrdiff_t m_fArmedTime = 0xe9c; + constexpr std::ptrdiff_t m_bBombPlacedAnimation = 0xea0; + constexpr std::ptrdiff_t m_bShowC4LED = 0xea1; + constexpr std::ptrdiff_t m_bIsPlantingViaUse = 0xea2; + constexpr std::ptrdiff_t m_entitySpottedState = 0xea8; + constexpr std::ptrdiff_t m_nSpotRules = 0xec0; + constexpr std::ptrdiff_t m_bPlayedArmingBeeps = 0xec4; + constexpr std::ptrdiff_t m_bBombPlanted = 0xecb; + constexpr std::ptrdiff_t m_bDroppedFromDeath = 0xecc; +} + +namespace CDEagle { +} + +namespace CWeaponElite { +} + +namespace CWeaponNOVA { +} + +namespace CWeaponSawedoff { +} + +namespace CWeaponTaser { + constexpr std::ptrdiff_t m_fFireTime = 0xea0; +} + +namespace CWeaponXM1014 { +} + +namespace CKnife { +} + +namespace CKnifeGG { +} + +namespace CMelee { + constexpr std::ptrdiff_t m_flThrowAt = 0xe80; + constexpr std::ptrdiff_t m_hThrower = 0xe84; + constexpr std::ptrdiff_t m_bDidThrowDamage = 0xe88; +} + +namespace CWeaponZoneRepulsor { +} + +namespace CWeaponShield { + constexpr std::ptrdiff_t m_flBulletDamageAbsorbed = 0xea0; + constexpr std::ptrdiff_t m_flLastBulletHitSoundTime = 0xea4; + constexpr std::ptrdiff_t m_flDisplayHealth = 0xea8; +} + +namespace CMolotovProjectile { + constexpr std::ptrdiff_t m_bIsIncGrenade = 0xac8; + constexpr std::ptrdiff_t m_bDetonated = 0xad4; + constexpr std::ptrdiff_t m_stillTimer = 0xad8; + constexpr std::ptrdiff_t m_bHasBouncedOffPlayer = 0xbb8; +} + +namespace CDecoyProjectile { + constexpr std::ptrdiff_t m_shotsRemaining = 0xad0; + constexpr std::ptrdiff_t m_fExpireTime = 0xad4; + constexpr std::ptrdiff_t m_decoyWeaponDefIndex = 0xae0; +} + +namespace CSmokeGrenadeProjectile { + constexpr std::ptrdiff_t m_nSmokeEffectTickBegin = 0xae0; + constexpr std::ptrdiff_t m_bDidSmokeEffect = 0xae4; + constexpr std::ptrdiff_t m_nRandomSeed = 0xae8; + constexpr std::ptrdiff_t m_vSmokeColor = 0xaec; + constexpr std::ptrdiff_t m_vSmokeDetonationPos = 0xaf8; + constexpr std::ptrdiff_t m_VoxelFrameData = 0xb08; + constexpr std::ptrdiff_t m_flLastBounce = 0xb20; + constexpr std::ptrdiff_t m_fllastSimulationTime = 0xb24; +} + +namespace CBaseCSGrenade { + constexpr std::ptrdiff_t m_bRedraw = 0xea0; + constexpr std::ptrdiff_t m_bIsHeldByPlayer = 0xea1; + constexpr std::ptrdiff_t m_bPinPulled = 0xea2; + constexpr std::ptrdiff_t m_bJumpThrow = 0xea3; + constexpr std::ptrdiff_t m_eThrowStatus = 0xea4; + constexpr std::ptrdiff_t m_fThrowTime = 0xea8; + constexpr std::ptrdiff_t m_flThrowStrength = 0xeac; + constexpr std::ptrdiff_t m_flThrowStrengthApproach = 0xeb0; + constexpr std::ptrdiff_t m_fDropTime = 0xeb4; +} + +namespace CWeaponBaseItem { + constexpr std::ptrdiff_t m_SequenceCompleteTimer = 0xe80; + constexpr std::ptrdiff_t m_bRedraw = 0xe98; +} + +namespace CItem_Healthshot { +} + +namespace CFists { + constexpr std::ptrdiff_t m_bPlayingUninterruptableAct = 0xe80; + constexpr std::ptrdiff_t m_nUninterruptableActivity = 0xe84; + constexpr std::ptrdiff_t m_bRestorePrevWep = 0xe88; + constexpr std::ptrdiff_t m_hWeaponBeforePrevious = 0xe8c; + constexpr std::ptrdiff_t m_hWeaponPrevious = 0xe90; + constexpr std::ptrdiff_t m_bDelayedHardPunchIncoming = 0xe94; + constexpr std::ptrdiff_t m_bDestroyAfterTaunt = 0xe95; +} + +namespace CTablet { + constexpr std::ptrdiff_t m_bPendingBuyMenu = 0xe88; + constexpr std::ptrdiff_t m_flUpgradeExpirationTime = 0xe8c; + constexpr std::ptrdiff_t m_vecLocalHexFlags = 0xe9c; + constexpr std::ptrdiff_t m_nContractKillGridIndex = 0xf44; + constexpr std::ptrdiff_t m_nContractKillGridHighResIndex = 0xf48; + constexpr std::ptrdiff_t m_bTabletReceptionIsBlocked = 0xf4c; + constexpr std::ptrdiff_t m_flScanProgress = 0xf50; + constexpr std::ptrdiff_t m_flBootTime = 0xf54; + constexpr std::ptrdiff_t m_flShowMapTime = 0xf58; + constexpr std::ptrdiff_t m_vecNearestMetalCratePos = 0xf5c; + constexpr std::ptrdiff_t m_skinState = 0xf68; + constexpr std::ptrdiff_t m_vecNotificationIds = 0xf6c; + constexpr std::ptrdiff_t m_vecNotificationTimestamps = 0xf8c; + constexpr std::ptrdiff_t m_nLastPurchaseIndex = 0xfac; + constexpr std::ptrdiff_t m_vecPlayerPositionHistory = 0xfb0; + constexpr std::ptrdiff_t m_vecLastPlayerPosition = 0x10d0; + constexpr std::ptrdiff_t m_flNextCheckForIncomingDronesTime = 0x10d8; + constexpr std::ptrdiff_t m_flLastPlayerOccupiedGridUpdate = 0x10dc; + constexpr std::ptrdiff_t m_flLastTabletBlockedTime = 0x10e0; + constexpr std::ptrdiff_t m_flLastClosePoseParamVal = 0x1190; +} + +namespace CBreachCharge { +} + +namespace CBumpMine { +} + +namespace CTripWireFire { +} + +namespace CPhysPropWeaponRefillHeavyArmor { +} + +namespace CPhysPropWeaponUpgradeArmor { +} + +namespace CPhysPropWeaponUpgradeHelmet { +} + +namespace CPhysPropWeaponUpgradeArmorHelmet { +} + +namespace CPhysPropWeaponUpgradeParachute { +} + +namespace CPhysPropWeaponUpgradeContractKill { +} + +namespace CPhysPropMapPlacedLongUseEntity { + constexpr std::ptrdiff_t m_iszStartUseSound = 0xc48; + constexpr std::ptrdiff_t m_nPingType = 0xc50; + constexpr std::ptrdiff_t m_nLongUseActionType = 0xc54; + constexpr std::ptrdiff_t m_flLongUseDuration = 0xc58; + constexpr std::ptrdiff_t m_OnUseCompleted = 0xc60; +} + +namespace CPhysPropWeaponUpgradeTablet { +} + +namespace CPhysPropWeaponUpgradeTabletHighres { +} + +namespace CPhysPropWeaponUpgradeTabletZoneIntel { +} + +namespace CPhysPropWeaponUpgradeTabletDroneIntel { +} + +namespace CSensorGrenade { +} + +namespace CCSPlayerPawnBase { + constexpr std::ptrdiff_t m_CTouchExpansionComponent = 0xc00; + constexpr std::ptrdiff_t m_pActionTrackingServices = 0xc50; + constexpr std::ptrdiff_t m_pViewModelServices = 0xc58; + constexpr std::ptrdiff_t m_iDisplayHistoryBits = 0xc60; + constexpr std::ptrdiff_t m_flLastAttackedTeammate = 0xc64; + constexpr std::ptrdiff_t m_hOriginalController = 0xc68; + constexpr std::ptrdiff_t m_blindUntilTime = 0xc6c; + constexpr std::ptrdiff_t m_blindStartTime = 0xc70; + constexpr std::ptrdiff_t m_allowAutoFollowTime = 0xc74; + constexpr std::ptrdiff_t m_bHasFemaleVoice = 0xc78; + constexpr std::ptrdiff_t m_entitySpottedState = 0xc80; + constexpr std::ptrdiff_t m_nSpotRules = 0xc98; + constexpr std::ptrdiff_t m_flTimeOfLastInjury = 0xc9c; + constexpr std::ptrdiff_t m_nRelativeDirectionOfLastInjury = 0xca0; + constexpr std::ptrdiff_t m_iPlayerState = 0xca4; + constexpr std::ptrdiff_t m_chickenIdleSoundTimer = 0xcb0; + constexpr std::ptrdiff_t m_chickenJumpSoundTimer = 0xcc8; + constexpr std::ptrdiff_t m_vecLastBookmarkedPosition = 0xd80; + constexpr std::ptrdiff_t m_flLastDistanceTraveledNotice = 0xd8c; + constexpr std::ptrdiff_t m_flAccumulatedDistanceTraveled = 0xd90; + constexpr std::ptrdiff_t m_flLastFriendlyFireDamageReductionRatio = 0xd94; + constexpr std::ptrdiff_t m_bRespawning = 0xd98; + constexpr std::ptrdiff_t m_iNumGunGameTRBombTotalPoints = 0xd9c; + constexpr std::ptrdiff_t m_bShouldProgressGunGameTRBombModeWeapon = 0xda0; + constexpr std::ptrdiff_t m_nLastPickupPriority = 0xda4; + constexpr std::ptrdiff_t m_flLastPickupPriorityTime = 0xda8; + constexpr std::ptrdiff_t m_passiveItems = 0xdac; + constexpr std::ptrdiff_t m_bIsScoped = 0xdb0; + constexpr std::ptrdiff_t m_bIsWalking = 0xdb1; + constexpr std::ptrdiff_t m_bResumeZoom = 0xdb2; + constexpr std::ptrdiff_t m_bIsDefusing = 0xdb3; + constexpr std::ptrdiff_t m_bIsGrabbingHostage = 0xdb4; + constexpr std::ptrdiff_t m_iBlockingUseActionInProgress = 0xdb8; + constexpr std::ptrdiff_t m_fImmuneToGunGameDamageTime = 0xdbc; + constexpr std::ptrdiff_t m_bGunGameImmunity = 0xdc0; + constexpr std::ptrdiff_t m_bMadeFinalGunGameProgressiveKill = 0xdc1; + constexpr std::ptrdiff_t m_iGunGameProgressiveWeaponIndex = 0xdc4; + constexpr std::ptrdiff_t m_iNumGunGameTRKillPoints = 0xdc8; + constexpr std::ptrdiff_t m_iNumGunGameKillsWithCurrentWeapon = 0xdcc; + constexpr std::ptrdiff_t m_unTotalRoundDamageDealt = 0xdd0; + constexpr std::ptrdiff_t m_fMolotovDamageTime = 0xdd4; + constexpr std::ptrdiff_t m_bHasMovedSinceSpawn = 0xdd8; + constexpr std::ptrdiff_t m_bCanMoveDuringFreezePeriod = 0xdd9; + constexpr std::ptrdiff_t m_isCurrentGunGameLeader = 0xdda; + constexpr std::ptrdiff_t m_isCurrentGunGameTeamLeader = 0xddb; + constexpr std::ptrdiff_t m_flGuardianTooFarDistFrac = 0xddc; + constexpr std::ptrdiff_t m_flNextGuardianTooFarHurtTime = 0xde0; + constexpr std::ptrdiff_t m_flDetectedByEnemySensorTime = 0xde4; + constexpr std::ptrdiff_t m_bIsSpawnRappelling = 0xde8; + constexpr std::ptrdiff_t m_vecSpawnRappellingRopeOrigin = 0xdec; + constexpr std::ptrdiff_t m_nSurvivalTeam = 0xdf8; + constexpr std::ptrdiff_t m_hSurvivalAssassinationTarget = 0xdfc; + constexpr std::ptrdiff_t m_nCompletedSurvivalAssassinations = 0xe00; + constexpr std::ptrdiff_t m_flDealtDamageToEnemyMostRecentTimestamp = 0xe04; + constexpr std::ptrdiff_t m_flHealthShotBoostExpirationTime = 0xe08; + constexpr std::ptrdiff_t m_flLastEquippedHelmetTime = 0xe0c; + constexpr std::ptrdiff_t m_flLastEquippedArmorTime = 0xe10; + constexpr std::ptrdiff_t m_nHeavyAssaultSuitCooldownRemaining = 0xe14; + constexpr std::ptrdiff_t m_bResetArmorNextSpawn = 0xe18; + constexpr std::ptrdiff_t m_flLastBumpMineBumpTime = 0xe1c; + constexpr std::ptrdiff_t m_flEmitSoundTime = 0xe20; + constexpr std::ptrdiff_t m_iNumSpawns = 0xe24; + constexpr std::ptrdiff_t m_iShouldHaveCash = 0xe28; + constexpr std::ptrdiff_t m_bJustKilledTeammate = 0xe2c; + constexpr std::ptrdiff_t m_bPunishedForTK = 0xe2d; + constexpr std::ptrdiff_t m_bInvalidSteamLogonDelayed = 0xe2e; + constexpr std::ptrdiff_t m_iTeamKills = 0xe30; + constexpr std::ptrdiff_t m_flLastAction = 0xe34; + constexpr std::ptrdiff_t m_flNameChangeHistory = 0xe38; + constexpr std::ptrdiff_t m_fLastGivenDefuserTime = 0xe4c; + constexpr std::ptrdiff_t m_fLastGivenBombTime = 0xe50; + constexpr std::ptrdiff_t m_bHasNightVision = 0xe54; + constexpr std::ptrdiff_t m_bNightVisionOn = 0xe55; + constexpr std::ptrdiff_t m_fNextRadarUpdateTime = 0xe58; + constexpr std::ptrdiff_t m_flLastMoneyUpdateTime = 0xe5c; + constexpr std::ptrdiff_t m_MenuStringBuffer = 0xe60; + constexpr std::ptrdiff_t m_pIntroCamera = 0x1260; + constexpr std::ptrdiff_t m_fIntroCamTime = 0x1264; + constexpr std::ptrdiff_t m_nMyCollisionGroup = 0x1268; + constexpr std::ptrdiff_t m_bInBombZone = 0x126c; + constexpr std::ptrdiff_t m_bInBuyZone = 0x126d; + constexpr std::ptrdiff_t m_bInNoDefuseArea = 0x126e; + constexpr std::ptrdiff_t m_bKilledByTaser = 0x126f; + constexpr std::ptrdiff_t m_iMoveState = 0x1270; + constexpr std::ptrdiff_t m_nPreviousModelIndex = 0x1278; + constexpr std::ptrdiff_t m_grenadeParameterStashTime = 0x1280; + constexpr std::ptrdiff_t m_bGrenadeParametersStashed = 0x1284; + constexpr std::ptrdiff_t m_angStashedShootAngles = 0x1288; + constexpr std::ptrdiff_t m_vecStashedGrenadeThrowPosition = 0x1294; + constexpr std::ptrdiff_t m_vecStashedVelocity = 0x12a0; + constexpr std::ptrdiff_t m_angShootAngleHistory = 0x12ac; + constexpr std::ptrdiff_t m_vecThrowPositionHistory = 0x12c4; + constexpr std::ptrdiff_t m_vecVelocityHistory = 0x12dc; + constexpr std::ptrdiff_t m_nCharacterDefIndex = 0x12f4; + constexpr std::ptrdiff_t m_bDiedAirborne = 0x12f6; + constexpr std::ptrdiff_t m_iBombSiteIndex = 0x12f8; + constexpr std::ptrdiff_t m_nWhichBombZone = 0x12fc; + constexpr std::ptrdiff_t m_bInBombZoneTrigger = 0x1300; + constexpr std::ptrdiff_t m_bWasInBombZoneTrigger = 0x1301; + constexpr std::ptrdiff_t m_bWasInHostageRescueZone = 0x1302; + constexpr std::ptrdiff_t m_bWasInBuyZone = 0x1303; + constexpr std::ptrdiff_t m_bInHostageRescueZone = 0x1304; + constexpr std::ptrdiff_t m_flStamina = 0x1308; + constexpr std::ptrdiff_t m_iDirection = 0x130c; + constexpr std::ptrdiff_t m_iShotsFired = 0x1310; + constexpr std::ptrdiff_t m_ArmorValue = 0x1314; + constexpr std::ptrdiff_t m_flFlinchStack = 0x1318; + constexpr std::ptrdiff_t m_flVelocityModifier = 0x131c; + constexpr std::ptrdiff_t m_flHitHeading = 0x1320; + constexpr std::ptrdiff_t m_nHitBodyPart = 0x1324; + constexpr std::ptrdiff_t m_iHostagesKilled = 0x1328; + constexpr std::ptrdiff_t m_vecTotalBulletForce = 0x132c; + constexpr std::ptrdiff_t m_flFlashDuration = 0x1338; + constexpr std::ptrdiff_t m_flFlashMaxAlpha = 0x133c; + constexpr std::ptrdiff_t m_flProgressBarStartTime = 0x1340; + constexpr std::ptrdiff_t m_iProgressBarDuration = 0x1344; + constexpr std::ptrdiff_t m_bWaitForNoAttack = 0x1348; + constexpr std::ptrdiff_t m_flLowerBodyYawTarget = 0x134c; + constexpr std::ptrdiff_t m_bStrafing = 0x1350; + constexpr std::ptrdiff_t m_lastStandingPos = 0x1354; + constexpr std::ptrdiff_t m_ignoreLadderJumpTime = 0x1360; + constexpr std::ptrdiff_t m_ladderSurpressionTimer = 0x1368; + constexpr std::ptrdiff_t m_lastLadderNormal = 0x1380; + constexpr std::ptrdiff_t m_lastLadderPos = 0x138c; + constexpr std::ptrdiff_t m_thirdPersonHeading = 0x1398; + constexpr std::ptrdiff_t m_flSlopeDropOffset = 0x13a4; + constexpr std::ptrdiff_t m_flSlopeDropHeight = 0x13a8; + constexpr std::ptrdiff_t m_vHeadConstraintOffset = 0x13ac; + constexpr std::ptrdiff_t m_iLastWeaponFireUsercmd = 0x13c0; + constexpr std::ptrdiff_t m_angEyeAngles = 0x13c4; + constexpr std::ptrdiff_t m_bVCollisionInitted = 0x13d0; + constexpr std::ptrdiff_t m_storedSpawnPosition = 0x13d4; + constexpr std::ptrdiff_t m_storedSpawnAngle = 0x13e0; + constexpr std::ptrdiff_t m_bIsSpawning = 0x13ec; + constexpr std::ptrdiff_t m_bHideTargetID = 0x13ed; + constexpr std::ptrdiff_t m_nNumDangerZoneDamageHits = 0x13f0; + constexpr std::ptrdiff_t m_bHud_MiniScoreHidden = 0x13f4; + constexpr std::ptrdiff_t m_bHud_RadarHidden = 0x13f5; + constexpr std::ptrdiff_t m_nLastKillerIndex = 0x13f8; + constexpr std::ptrdiff_t m_nLastConcurrentKilled = 0x13fc; + constexpr std::ptrdiff_t m_nDeathCamMusic = 0x1400; + constexpr std::ptrdiff_t m_iAddonBits = 0x1404; + constexpr std::ptrdiff_t m_iPrimaryAddon = 0x1408; + constexpr std::ptrdiff_t m_iSecondaryAddon = 0x140c; + constexpr std::ptrdiff_t m_nTeamDamageGivenForMatch = 0x1410; + constexpr std::ptrdiff_t m_bTDGaveProtectionWarning = 0x1414; + constexpr std::ptrdiff_t m_bTDGaveProtectionWarningThisRound = 0x1415; + constexpr std::ptrdiff_t m_flLastTHWarningTime = 0x1418; + constexpr std::ptrdiff_t m_currentDeafnessFilter = 0x141c; + constexpr std::ptrdiff_t m_enemyPlayersKilledThisRound = 0x1420; + constexpr std::ptrdiff_t m_NumEnemiesKilledThisSpawn = 0x1438; + constexpr std::ptrdiff_t m_maxNumEnemiesKillStreak = 0x143c; + constexpr std::ptrdiff_t m_NumEnemiesKilledThisRound = 0x1440; + constexpr std::ptrdiff_t m_NumEnemiesAtRoundStart = 0x1444; + constexpr std::ptrdiff_t m_iRoundsWon = 0x1448; + constexpr std::ptrdiff_t m_lastRoundResult = 0x144c; + constexpr std::ptrdiff_t m_wasNotKilledNaturally = 0x1450; + constexpr std::ptrdiff_t m_vecPlayerPatchEconIndices = 0x1454; + constexpr std::ptrdiff_t m_iDeathFlags = 0x1468; + constexpr std::ptrdiff_t m_hPet = 0x146c; + constexpr std::ptrdiff_t m_unCurrentEquipmentValue = 0x1638; + constexpr std::ptrdiff_t m_unRoundStartEquipmentValue = 0x163a; + constexpr std::ptrdiff_t m_unFreezetimeEndEquipmentValue = 0x163c; + constexpr std::ptrdiff_t m_szLastPlaceName = 0x163e; + constexpr std::ptrdiff_t m_nSuicides = 0x1650; + constexpr std::ptrdiff_t m_nSurvivalTeamNumber = 0x1654; + constexpr std::ptrdiff_t m_aimPunchAngle = 0x1658; + constexpr std::ptrdiff_t m_aimPunchAngleVel = 0x1664; + constexpr std::ptrdiff_t m_aimPunchTickBase = 0x1670; + constexpr std::ptrdiff_t m_aimPunchTickFraction = 0x1674; + constexpr std::ptrdiff_t m_aimPunchCache = 0x1678; + constexpr std::ptrdiff_t m_bHasDeathInfo = 0x1690; + constexpr std::ptrdiff_t m_flDeathInfoTime = 0x1694; + constexpr std::ptrdiff_t m_vecDeathInfoOrigin = 0x1698; + constexpr std::ptrdiff_t m_bKilledByHeadshot = 0x16a4; + constexpr std::ptrdiff_t m_LastHitBox = 0x16a8; + constexpr std::ptrdiff_t m_LastHealth = 0x16ac; + constexpr std::ptrdiff_t m_flLastCollisionCeiling = 0x16b0; + constexpr std::ptrdiff_t m_flLastCollisionCeilingChangeTime = 0x16b4; + constexpr std::ptrdiff_t m_strVOPrefix = 0x16b8; + constexpr std::ptrdiff_t m_flLandseconds = 0x16c0; + constexpr std::ptrdiff_t m_pBot = 0x16c8; + constexpr std::ptrdiff_t m_bBotAllowActive = 0x16d0; + constexpr std::ptrdiff_t m_bCommittingSuicideOnTeamChange = 0x16d1; +} + +namespace CCSObserverPawn { +} + +namespace CCSPlayerPawn { + constexpr std::ptrdiff_t m_pParachuteServices = 0x16d8; + constexpr std::ptrdiff_t m_pBulletServices = 0x16e0; + constexpr std::ptrdiff_t m_pHostageServices = 0x16e8; + constexpr std::ptrdiff_t m_pBuyServices = 0x16f0; + constexpr std::ptrdiff_t m_pPingServices = 0x16f8; + constexpr std::ptrdiff_t m_pRadioServices = 0x1700; + constexpr std::ptrdiff_t m_pDamageReactServices = 0x1708; + constexpr std::ptrdiff_t m_iRetakesOffering = 0x17d8; + constexpr std::ptrdiff_t m_iRetakesOfferingCard = 0x17dc; + constexpr std::ptrdiff_t m_bRetakesHasDefuseKit = 0x17e0; + constexpr std::ptrdiff_t m_bRetakesMVPLastRound = 0x17e1; + constexpr std::ptrdiff_t m_iRetakesMVPBoostItem = 0x17e4; + constexpr std::ptrdiff_t m_RetakesMVPBoostExtraUtility = 0x17e8; + constexpr std::ptrdiff_t m_bIsBuyMenuOpen = 0x17ec; + constexpr std::ptrdiff_t m_xLastHeadBoneTransform = 0x1d30; + constexpr std::ptrdiff_t m_bLastHeadBoneTransformIsValid = 0x1d50; + constexpr std::ptrdiff_t m_iPlayerLocked = 0x1d54; + constexpr std::ptrdiff_t m_flNextSprayDecalTime = 0x1d5c; + constexpr std::ptrdiff_t m_nRagdollDamageBone = 0x1d64; + constexpr std::ptrdiff_t m_vRagdollDamageForce = 0x1d68; + constexpr std::ptrdiff_t m_vRagdollDamagePosition = 0x1d74; + constexpr std::ptrdiff_t m_szRagdollDamageWeaponName = 0x1d80; + constexpr std::ptrdiff_t m_bRagdollDamageHeadshot = 0x1dc0; + constexpr std::ptrdiff_t m_EconGloves = 0x1dc8; + constexpr std::ptrdiff_t m_qDeathEyeAngles = 0x2040; + constexpr std::ptrdiff_t m_bSkipOneHeadConstraintUpdate = 0x204c; +} + +namespace CDZDoor { + constexpr std::ptrdiff_t m_bIsSecurityDoor = 0xef8; + constexpr std::ptrdiff_t m_hSpawnPoint = 0xefc; + constexpr std::ptrdiff_t m_bPaidToUnlock = 0xf00; + constexpr std::ptrdiff_t m_nPlayDoorOpenSound = 0xf04; + constexpr std::ptrdiff_t m_nAttachmentIndex1 = 0xf38; + constexpr std::ptrdiff_t m_nAttachmentIndex2 = 0xf39; +} + +namespace CHostageExpresserShim { + constexpr std::ptrdiff_t m_pExpresser = 0xa70; +} + +namespace CHostage { + constexpr std::ptrdiff_t m_OnHostageBeginGrab = 0xa88; + constexpr std::ptrdiff_t m_OnFirstPickedUp = 0xab0; + constexpr std::ptrdiff_t m_OnDroppedNotRescued = 0xad8; + constexpr std::ptrdiff_t m_OnRescued = 0xb00; + constexpr std::ptrdiff_t m_entitySpottedState = 0xb28; + constexpr std::ptrdiff_t m_nSpotRules = 0xb40; + constexpr std::ptrdiff_t m_uiHostageSpawnExclusionGroupMask = 0xb44; + constexpr std::ptrdiff_t m_nHostageSpawnRandomFactor = 0xb48; + constexpr std::ptrdiff_t m_bRemove = 0xb4c; + constexpr std::ptrdiff_t m_vel = 0xb50; + constexpr std::ptrdiff_t m_isRescued = 0xb5c; + constexpr std::ptrdiff_t m_jumpedThisFrame = 0xb5d; + constexpr std::ptrdiff_t m_nHostageState = 0xb60; + constexpr std::ptrdiff_t m_leader = 0xb64; + constexpr std::ptrdiff_t m_lastLeader = 0xb68; + constexpr std::ptrdiff_t m_reuseTimer = 0xb70; + constexpr std::ptrdiff_t m_hasBeenUsed = 0xb88; + constexpr std::ptrdiff_t m_accel = 0xb8c; + constexpr std::ptrdiff_t m_isRunning = 0xb98; + constexpr std::ptrdiff_t m_isCrouching = 0xb99; + constexpr std::ptrdiff_t m_jumpTimer = 0xba0; + constexpr std::ptrdiff_t m_isWaitingForLeader = 0xbb8; + constexpr std::ptrdiff_t m_repathTimer = 0x2bc8; + constexpr std::ptrdiff_t m_inhibitDoorTimer = 0x2be0; + constexpr std::ptrdiff_t m_inhibitObstacleAvoidanceTimer = 0x2c70; + constexpr std::ptrdiff_t m_wiggleTimer = 0x2c90; + constexpr std::ptrdiff_t m_isAdjusted = 0x2cac; + constexpr std::ptrdiff_t m_bHandsHaveBeenCut = 0x2cad; + constexpr std::ptrdiff_t m_hHostageGrabber = 0x2cb0; + constexpr std::ptrdiff_t m_fLastGrabTime = 0x2cb4; + constexpr std::ptrdiff_t m_vecPositionWhenStartedDroppingToGround = 0x2cb8; + constexpr std::ptrdiff_t m_vecGrabbedPos = 0x2cc4; + constexpr std::ptrdiff_t m_flRescueStartTime = 0x2cd0; + constexpr std::ptrdiff_t m_flGrabSuccessTime = 0x2cd4; + constexpr std::ptrdiff_t m_flDropStartTime = 0x2cd8; + constexpr std::ptrdiff_t m_nApproachRewardPayouts = 0x2cdc; + constexpr std::ptrdiff_t m_nPickupEventCount = 0x2ce0; + constexpr std::ptrdiff_t m_vecSpawnGroundPos = 0x2ce4; +} + +namespace CHostageAlias_info_hostage_spawn { +} + +namespace CItemDefuserAlias_item_defuser { +} + +namespace CAK47 { +} + +namespace CWeaponAug { +} + +namespace CWeaponAWP { +} + +namespace CWeaponBizon { +} + +namespace CWeaponFamas { +} + +namespace CWeaponFiveSeven { +} + +namespace CWeaponG3SG1 { +} + +namespace CWeaponGalilAR { +} + +namespace CWeaponGlock { +} + +namespace CWeaponHKP2000 { +} + +namespace CWeaponM4A1 { +} + +namespace CWeaponMAC10 { +} + +namespace CWeaponMag7 { +} + +namespace CWeaponMP7 { +} + +namespace CWeaponMP9 { +} + +namespace CWeaponNegev { +} + +namespace CWeaponP250 { +} + +namespace CWeaponP90 { +} + +namespace CWeaponSCAR20 { +} + +namespace CWeaponSG556 { +} + +namespace CWeaponSSG08 { +} + +namespace CWeaponTec9 { +} + +namespace CWeaponUMP45 { +} + +namespace CWeaponM249 { +} + +namespace CMolotovGrenade { +} + +namespace CIncendiaryGrenade { +} + +namespace CDecoyGrenade { +} + +namespace CFlashbang { +} + +namespace CHEGrenade { +} + +namespace CSmokeGrenade { +} + diff --git a/generated/server.dll.json b/generated/server.dll.json new file mode 100644 index 0000000..adce0af --- /dev/null +++ b/generated/server.dll.json @@ -0,0 +1,6387 @@ +{ + "ActiveModelConfig_t": { + "m_AssociatedEntities": 56, + "m_AssociatedEntityNames": 80, + "m_Handle": 40, + "m_Name": 48 + }, + "AmmoIndex_t": { + "m_Value": 0 + }, + "AmmoTypeInfo_t": { + "m_flMass": 40, + "m_flSpeed": 44, + "m_nFlags": 36, + "m_nMaxCarry": 16, + "m_nSplashSize": 28 + }, + "AnimationUpdateListHandle_t": { + "m_Value": 0 + }, + "CAISound": { + "m_flDuration": 1216, + "m_iSoundContext": 1204, + "m_iSoundIndex": 1212, + "m_iSoundType": 1200, + "m_iVolume": 1208, + "m_iszProxyEntityName": 1224 + }, + "CAI_ChangeHintGroup": { + "m_flRadius": 1224, + "m_iSearchType": 1200, + "m_strNewHintGroup": 1216, + "m_strSearchName": 1208 + }, + "CAI_ChangeTarget": { + "m_iszNewTarget": 1200 + }, + "CAI_Expresser": { + "m_bAllowSpeakingInterrupts": 76, + "m_bConsiderSceneInvolvementAsSpeech": 77, + "m_flBlockedTalkTime": 64, + "m_flLastTimeAcceptedSpeak": 72, + "m_flStopTalkTime": 56, + "m_flStopTalkTimeWithoutDelay": 60, + "m_nLastSpokenPriority": 80, + "m_pOuter": 88, + "m_voicePitch": 68 + }, + "CAI_ExpresserWithFollowup": { + "m_pPostponedFollowup": 96 + }, + "CAmbientGeneric": { + "m_dpv": 1212, + "m_fActive": 1312, + "m_fLooping": 1313, + "m_flMaxRadius": 1204, + "m_hSoundSource": 1336, + "m_iSoundLevel": 1208, + "m_iszSound": 1320, + "m_nSoundSourceEntIndex": 1340, + "m_radius": 1200, + "m_sSourceEntName": 1328 + }, + "CAnimGraphNetworkedVariables": { + "m_OwnerOnlyPredNetBoolVariables": 224, + "m_OwnerOnlyPredNetByteVariables": 248, + "m_OwnerOnlyPredNetFloatVariables": 368, + "m_OwnerOnlyPredNetIntVariables": 296, + "m_OwnerOnlyPredNetQuaternionVariables": 416, + "m_OwnerOnlyPredNetUInt16Variables": 272, + "m_OwnerOnlyPredNetUInt32Variables": 320, + "m_OwnerOnlyPredNetUInt64Variables": 344, + "m_OwnerOnlyPredNetVectorVariables": 392, + "m_PredNetBoolVariables": 8, + "m_PredNetByteVariables": 32, + "m_PredNetFloatVariables": 152, + "m_PredNetIntVariables": 80, + "m_PredNetQuaternionVariables": 200, + "m_PredNetUInt16Variables": 56, + "m_PredNetUInt32Variables": 104, + "m_PredNetUInt64Variables": 128, + "m_PredNetVectorVariables": 176, + "m_flLastTeleportTime": 452, + "m_nBoolVariablesCount": 440, + "m_nOwnerOnlyBoolVariablesCount": 444, + "m_nRandomSeedOffset": 448 + }, + "CAnimGraphTagRef": { + "m_nTagIndex": 0, + "m_tagName": 16 + }, + "CAttributeContainer": { + "m_Item": 80 + }, + "CAttributeList": { + "m_Attributes": 8, + "m_pManager": 88 + }, + "CAttributeManager": { + "m_CachedResults": 48, + "m_ProviderType": 44, + "m_Providers": 8, + "m_bPreventLoopback": 40, + "m_hOuter": 36, + "m_iReapplyProvisionParity": 32 + }, + "CAttributeManager::cached_attribute_float_t": { + "flIn": 0, + "flOut": 16, + "iAttribHook": 8 + }, + "CBRC4Target": { + "m_bBrokenOpen": 2396, + "m_flRadius": 2400, + "m_hPlayerThatActivatedMe": 2392 + }, + "CBarnLight": { + "m_Color": 1800, + "m_LightStyleEvents": 1880, + "m_LightStyleString": 1840, + "m_LightStyleTargets": 1904, + "m_QueuedLightStyleStrings": 1856, + "m_StyleEvent": 1928, + "m_StyleRadianceVar": 2088, + "m_StyleVar": 2096, + "m_bContactShadow": 2220, + "m_bEnabled": 1792, + "m_bPrecomputedFieldsValid": 2284, + "m_bPvsModifyEntity": 2348, + "m_fAlternateColorBrightness": 2248, + "m_flBounceScale": 2228, + "m_flBrightness": 1808, + "m_flBrightnessScale": 1812, + "m_flColorTemperature": 1804, + "m_flFadeSizeEnd": 2272, + "m_flFadeSizeStart": 2268, + "m_flFogScale": 2264, + "m_flFogStrength": 2256, + "m_flLightStyleStartTime": 1848, + "m_flLuminaireAnisotropy": 1832, + "m_flLuminaireSize": 1828, + "m_flMinRoughness": 2232, + "m_flRange": 2176, + "m_flShadowFadeSizeEnd": 2280, + "m_flShadowFadeSizeStart": 2276, + "m_flShape": 2144, + "m_flSkirt": 2156, + "m_flSkirtNear": 2160, + "m_flSoftX": 2148, + "m_flSoftY": 2152, + "m_hLightCookie": 2136, + "m_nBakeSpecularToCubemaps": 2192, + "m_nBakedShadowIndex": 1820, + "m_nBounceLight": 2224, + "m_nCastShadows": 2208, + "m_nColorMode": 1796, + "m_nDirectLight": 1816, + "m_nFog": 2252, + "m_nFogShadows": 2260, + "m_nLuminaireShape": 1824, + "m_nShadowMapSize": 2212, + "m_nShadowPriority": 2216, + "m_vAlternateColor": 2236, + "m_vBakeSpecularToCubemapsSize": 2196, + "m_vPrecomputedBoundsMaxs": 2300, + "m_vPrecomputedBoundsMins": 2288, + "m_vPrecomputedOBBAngles": 2324, + "m_vPrecomputedOBBExtent": 2336, + "m_vPrecomputedOBBOrigin": 2312, + "m_vShear": 2180, + "m_vSizeParams": 2164 + }, + "CBaseAnimGraph": { + "m_bAnimGraphDirty": 1992, + "m_bAnimGraphUpdateEnabled": 1816, + "m_bClientRagdoll": 2040, + "m_bInitiallyPopulateInterpHistory": 1800, + "m_bShouldAnimateDuringGameplayPause": 1801, + "m_flLastEventAnimTime": 1964, + "m_flMaxSlopeDistance": 1976, + "m_hAnimationUpdate": 1972, + "m_nForceBone": 2008, + "m_pChoreoServices": 1808, + "m_pRagdollPose": 2032, + "m_vLastSlopeCheckPos": 1980, + "m_vecForce": 1996 + }, + "CBaseAnimGraphController": { + "m_animGraphNetworkedVars": 56, + "m_bClientSideAnimation": 548, + "m_bNetworkedAnimationInputsChanged": 549, + "m_bSequenceFinished": 528, + "m_baseLayer": 16, + "m_flLastEventCycle": 532, + "m_flPlaybackRate": 536, + "m_flPrevAnimTime": 544, + "m_nAnimLoopMode": 560, + "m_nNewSequenceParity": 552, + "m_nResetEventsParity": 556 + }, + "CBaseButton": { + "m_OnDamaged": 2008, + "m_OnIn": 2128, + "m_OnOut": 2168, + "m_OnPressed": 2048, + "m_OnUseLocked": 2088, + "m_angMoveEntitySpace": 1920, + "m_bDisabled": 1993, + "m_bForceNpcExclude": 2220, + "m_bLocked": 1992, + "m_bSolidBsp": 2000, + "m_fRotating": 1933, + "m_fStayPushed": 1932, + "m_flUseLockedTime": 1996, + "m_glowEntity": 2232, + "m_hConstraint": 2212, + "m_hConstraintParent": 2216, + "m_ls": 1936, + "m_nState": 2208, + "m_sGlowEntity": 2224, + "m_sLockedSound": 1976, + "m_sUnlockedSound": 1984, + "m_sUseSound": 1968, + "m_szDisplayText": 2240, + "m_usable": 2236 + }, + "CBaseCSGrenade": { + "m_bIsHeldByPlayer": 3745, + "m_bJumpThrow": 3747, + "m_bPinPulled": 3746, + "m_bRedraw": 3744, + "m_eThrowStatus": 3748, + "m_fDropTime": 3764, + "m_fThrowTime": 3752, + "m_flThrowStrength": 3756, + "m_flThrowStrengthApproach": 3760 + }, + "CBaseCSGrenadeProjectile": { + "m_bDetonationRecorded": 2705, + "m_flDetonateTime": 2708, + "m_flLastBounceSoundTime": 2728, + "m_nBounces": 2676, + "m_nExplodeEffectIndex": 2680, + "m_nExplodeEffectTickBegin": 2688, + "m_nItemIndex": 2712, + "m_nTicksAtZeroVelocity": 2756, + "m_unOGSExtraFlags": 2704, + "m_vInitialVelocity": 2664, + "m_vecExplodeEffectOrigin": 2692, + "m_vecGrenadeSpin": 2732, + "m_vecLastHitSurfaceNormal": 2744, + "m_vecOriginalSpawnLocation": 2716 + }, + "CBaseClientUIEntity": { + "m_CustomOutput0": 1824, + "m_CustomOutput1": 1864, + "m_CustomOutput2": 1904, + "m_CustomOutput3": 1944, + "m_CustomOutput4": 1984, + "m_CustomOutput5": 2024, + "m_CustomOutput6": 2064, + "m_CustomOutput7": 2104, + "m_CustomOutput8": 2144, + "m_CustomOutput9": 2184, + "m_DialogXMLName": 1800, + "m_PanelClassName": 1808, + "m_PanelID": 1816, + "m_bEnabled": 1792 + }, + "CBaseCombatCharacter": { + "m_LastHitGroup": 2536, + "m_bApplyStressDamage": 2540, + "m_bForceServerRagdoll": 2496, + "m_bloodColor": 2544, + "m_eHull": 2664, + "m_flFieldOfView": 2528, + "m_hMyWearables": 2504, + "m_iDamageCount": 2644, + "m_impactEnergyScale": 2532, + "m_nNavHullIdx": 2668, + "m_navMeshID": 2640, + "m_pVecRelationships": 2648, + "m_strRelationships": 2656 + }, + "CBaseDMStart": { + "m_Master": 1200 + }, + "CBaseDoor": { + "m_ChainTarget": 2040, + "m_NoiseArrived": 2016, + "m_NoiseArrivedClosed": 2032, + "m_NoiseMoving": 2008, + "m_NoiseMovingClosed": 2024, + "m_OnBlockedClosing": 2048, + "m_OnBlockedOpening": 2088, + "m_OnClose": 2288, + "m_OnFullyClosed": 2208, + "m_OnFullyOpen": 2248, + "m_OnLockedUse": 2368, + "m_OnOpen": 2328, + "m_OnUnblockedClosing": 2128, + "m_OnUnblockedOpening": 2168, + "m_angMoveEntitySpace": 1936, + "m_bCreateNavObstacle": 2432, + "m_bDoorGroup": 1993, + "m_bForceClosed": 1992, + "m_bIgnoreDebris": 1995, + "m_bIsUsable": 2434, + "m_bLocked": 1994, + "m_bLoopMoveSound": 2408, + "m_eSpawnPosition": 1996, + "m_flBlockDamage": 2000, + "m_isChaining": 2433, + "m_ls": 1960, + "m_vecMoveDirParentSpace": 1948 + }, + "CBaseEntity": { + "m_CBodyComponent": 48, + "m_MoveCollide": 705, + "m_MoveType": 706, + "m_NetworkTransmitComponent": 56, + "m_OnKilled": 824, + "m_OnUser1": 1000, + "m_OnUser2": 1040, + "m_OnUser3": 1080, + "m_OnUser4": 1120, + "m_ResponseContexts": 616, + "m_aThinkFunctions": 552, + "m_bAnimatedEveryTick": 989, + "m_bClientSideRagdoll": 764, + "m_bDisableLowViolence": 990, + "m_bLagCompensate": 1181, + "m_bNetworkQuantizeOriginAndAngles": 1180, + "m_bRestoreInHierarchy": 709, + "m_bSimulatedEveryTick": 988, + "m_bTakesDamage": 696, + "m_fEffects": 960, + "m_fFlags": 864, + "m_flAnimTime": 752, + "m_flCreateTime": 760, + "m_flDamageAccumulator": 692, + "m_flElasticity": 972, + "m_flFriction": 968, + "m_flGravityScale": 976, + "m_flLocalTime": 1192, + "m_flMoveDoneTime": 720, + "m_flNavIgnoreUntilTime": 1164, + "m_flOverriddenFriction": 1184, + "m_flSimulationTime": 756, + "m_flSpeed": 796, + "m_flTimeScale": 980, + "m_flVPhysicsUpdateLocalTime": 1196, + "m_flWaterLevel": 984, + "m_hDamageFilter": 724, + "m_hEffectEntity": 952, + "m_hGroundEntity": 964, + "m_hOwnerEntity": 956, + "m_iCurrentThinkContext": 576, + "m_iEFlags": 992, + "m_iGlobalname": 784, + "m_iHealth": 680, + "m_iInitialTeamNum": 1160, + "m_iMaxHealth": 684, + "m_iSentToClients": 792, + "m_iTeamNum": 780, + "m_isSteadyState": 592, + "m_iszDamageFilterName": 728, + "m_iszResponseContext": 640, + "m_lastNetworkChange": 600, + "m_lifeState": 688, + "m_nLastThinkTick": 580, + "m_nNextThinkTick": 812, + "m_nPushEnumCount": 940, + "m_nSimulationTick": 816, + "m_nSlimeTouch": 708, + "m_nSubclassID": 736, + "m_nTakeDamageFlags": 700, + "m_nWaterTouch": 707, + "m_nWaterType": 991, + "m_pBlocker": 1188, + "m_pCollision": 944, + "m_sUniqueHammerID": 800, + "m_spawnflags": 808, + "m_target": 712, + "m_ubInterpolationFrame": 765, + "m_vPrevVPhysicsUpdatePos": 768, + "m_vecAbsVelocity": 868, + "m_vecAngVelocity": 1168, + "m_vecBaseVelocity": 928, + "m_vecVelocity": 880 + }, + "CBaseFilter": { + "m_OnFail": 1248, + "m_OnPass": 1208, + "m_bNegated": 1200 + }, + "CBaseFire": { + "m_flScale": 1200, + "m_flScaleTime": 1208, + "m_flStartScale": 1204, + "m_nFlags": 1212 + }, + "CBaseFlex": { + "m_bUpdateLayerPriorities": 2484, + "m_blinktoggle": 2388, + "m_flAllowResponsesEndTime": 2472, + "m_flLastFlexAnimationTime": 2476, + "m_flexWeight": 2352, + "m_nNextSceneEventId": 2480, + "m_vLookTargetPosition": 2376 + }, + "CBaseGrenade": { + "m_DmgRadius": 2588, + "m_ExplosionSound": 2616, + "m_OnExplode": 2544, + "m_OnPlayerPickup": 2504, + "m_bHasWarnedAI": 2584, + "m_bIsLive": 2586, + "m_bIsSmokeGrenade": 2585, + "m_flDamage": 2600, + "m_flDetonateTime": 2592, + "m_flNextAttack": 2656, + "m_flWarnAITime": 2596, + "m_hOriginalThrower": 2660, + "m_hThrower": 2628, + "m_iszBounceSound": 2608 + }, + "CBaseIssue": { + "m_iNumNoVotes": 360, + "m_iNumPotentialVotes": 364, + "m_iNumYesVotes": 356, + "m_pVoteController": 368, + "m_szDetailsString": 96, + "m_szTypeString": 32 + }, + "CBaseModelEntity": { + "m_CHitboxComponent": 1208, + "m_CRenderComponent": 1200, + "m_Collision": 1392, + "m_ConfigEntitiesToPropagateMaterialDecalsTo": 1720, + "m_Glow": 1568, + "m_LightGroup": 1384, + "m_OnIgnite": 1256, + "m_bAllowFadeInView": 1298, + "m_bRenderToCubemaps": 1388, + "m_clrRender": 1299, + "m_fadeMaxDist": 1664, + "m_fadeMinDist": 1660, + "m_flDecalHealBloodRate": 1708, + "m_flDecalHealHeightRate": 1712, + "m_flDissolveStartTime": 1248, + "m_flFadeScale": 1668, + "m_flGlowBackfaceMult": 1656, + "m_flShadowStrength": 1672, + "m_nAddDecal": 1680, + "m_nObjectCulling": 1676, + "m_nRenderFX": 1297, + "m_nRenderMode": 1296, + "m_vDecalForwardAxis": 1696, + "m_vDecalPosition": 1684, + "m_vecRenderAttributes": 1304, + "m_vecViewOffset": 1744 + }, + "CBaseMoveBehavior": { + "m_flAnimEndTime": 1308, + "m_flAnimStartTime": 1304, + "m_flAverageSpeedAcrossFrame": 1312, + "m_flTimeIntoFrame": 1352, + "m_iDirection": 1356, + "m_iPositionInterpolator": 1296, + "m_iRotationInterpolator": 1300, + "m_pCurrentKeyFrame": 1320, + "m_pPostKeyFrame": 1344, + "m_pPreKeyFrame": 1336, + "m_pTargetKeyFrame": 1328 + }, + "CBasePlatTrain": { + "m_NoiseArrived": 1928, + "m_NoiseMoving": 1920, + "m_flTLength": 1952, + "m_flTWidth": 1948, + "m_volume": 1944 + }, + "CBasePlayerController": { + "m_bAutoKickDisabled": 1454, + "m_bGamePaused": 1456, + "m_bHasAnySteadyStateEnts": 1624, + "m_bIsHLTV": 1304, + "m_bIsLowViolence": 1455, + "m_bLagCompensation": 1452, + "m_bPredict": 1453, + "m_fLerpTime": 1448, + "m_flLastEntitySteadyState": 1616, + "m_flLastPlayerTalkTime": 1612, + "m_hPawn": 1264, + "m_hSplitOwner": 1272, + "m_hSplitScreenPlayers": 1280, + "m_iConnected": 1308, + "m_iDesiredFOV": 1648, + "m_iIgnoreGlobalChat": 1608, + "m_iszPlayerName": 1312, + "m_nAvailableEntitySteadyState": 1620, + "m_nHighestCommandNumberReceived": 1576, + "m_nInButtonsWhichAreToggles": 1208, + "m_nSplitScreenSlot": 1268, + "m_nTickBase": 1216, + "m_nUsecTimestampLastUserCmdReceived": 1584, + "m_steamID": 1640, + "m_szNetworkIDString": 1440 + }, + "CBasePlayerPawn": { + "m_ServerViewAngleChanges": 2752, + "m_fHltvReplayDelay": 3040, + "m_fHltvReplayEnd": 3044, + "m_fInitHUD": 3020, + "m_fNextSuicideTime": 3016, + "m_fTimeLastHurt": 3008, + "m_flDeathTime": 3012, + "m_hController": 3032, + "m_iHideHUD": 2860, + "m_iHltvReplayEntity": 3048, + "m_nHighestGeneratedServerViewAngleChangeIndex": 2832, + "m_pAutoaimServices": 2688, + "m_pCameraServices": 2728, + "m_pExpresser": 3024, + "m_pFlashlightServices": 2720, + "m_pItemServices": 2680, + "m_pMovementServices": 2736, + "m_pObserverServices": 2696, + "m_pUseServices": 2712, + "m_pWaterServices": 2704, + "m_pWeaponServices": 2672, + "m_skybox3d": 2864, + "v_angle": 2836, + "v_anglePrevious": 2848 + }, + "CBasePlayerVData": { + "m_flArmDamageMultiplier": 312, + "m_flChestDamageMultiplier": 280, + "m_flCrouchTime": 372, + "m_flDrowningDamageInterval": 348, + "m_flHeadDamageMultiplier": 264, + "m_flHoldBreathTime": 344, + "m_flLegDamageMultiplier": 328, + "m_flStomachDamageMultiplier": 296, + "m_flUseAngleTolerance": 368, + "m_flUseRange": 364, + "m_nDrowningDamageInitial": 352, + "m_nDrowningDamageMax": 356, + "m_nWaterSpeed": 360, + "m_sModelName": 40 + }, + "CBasePlayerWeapon": { + "m_OnPlayerUse": 3296, + "m_bRemoveable": 3260, + "m_flNextPrimaryAttackTickRatio": 3268, + "m_flNextSecondaryAttackTickRatio": 3276, + "m_iClip1": 3280, + "m_iClip2": 3284, + "m_iState": 3256, + "m_nNextPrimaryAttackTick": 3264, + "m_nNextSecondaryAttackTick": 3272, + "m_pReserveAmmo": 3288 + }, + "CBasePlayerWeaponVData": { + "m_aShootSounds": 536, + "m_bAllowFlipping": 265, + "m_bAutoSwitchFrom": 529, + "m_bAutoSwitchTo": 528, + "m_bBuiltRightHanded": 264, + "m_bIsFullAuto": 266, + "m_iDefaultClip1": 516, + "m_iDefaultClip2": 520, + "m_iFlags": 504, + "m_iMaxClip1": 508, + "m_iMaxClip2": 512, + "m_iPosition": 572, + "m_iRumbleEffect": 532, + "m_iSlot": 568, + "m_iWeight": 524, + "m_nNumBullets": 268, + "m_nPrimaryAmmoType": 505, + "m_nSecondaryAmmoType": 506, + "m_sMuzzleAttachment": 272, + "m_szMuzzleFlashParticle": 280, + "m_szWorldModel": 40 + }, + "CBaseProp": { + "m_bConformToCollisionBounds": 2360, + "m_bModelOverrodeBlockLOS": 2352, + "m_iShapeType": 2356, + "m_mPreferredCatchTransform": 2364 + }, + "CBasePropDoor": { + "m_OnAjarOpen": 3600, + "m_OnBlockedClosing": 3240, + "m_OnBlockedOpening": 3280, + "m_OnClose": 3480, + "m_OnFullyClosed": 3400, + "m_OnFullyOpen": 3440, + "m_OnLockedUse": 3560, + "m_OnOpen": 3520, + "m_OnUnblockedClosing": 3320, + "m_OnUnblockedOpening": 3360, + "m_SlaveName": 3224, + "m_SoundClose": 3160, + "m_SoundJiggle": 3200, + "m_SoundLatch": 3184, + "m_SoundLock": 3168, + "m_SoundLockedAnim": 3208, + "m_SoundMoving": 3144, + "m_SoundOpen": 3152, + "m_SoundPound": 3192, + "m_SoundUnlock": 3176, + "m_bFirstBlocked": 3076, + "m_bForceClosed": 3112, + "m_bLocked": 3044, + "m_bNeedsHardware": 3036, + "m_closedAngles": 3060, + "m_closedPosition": 3048, + "m_eDoorState": 3040, + "m_flAutoReturnDelay": 3000, + "m_hActivator": 3128, + "m_hBlocker": 3072, + "m_hDoorList": 3008, + "m_hMaster": 3232, + "m_ls": 3080, + "m_nHardwareType": 3032, + "m_nPhysicsMaterial": 3220, + "m_numCloseAttempts": 3216, + "m_sndParamAngularSpeed": 3140, + "m_vecLatchWorldPosition": 3116 + }, + "CBaseToggle": { + "m_bAlwaysFireBlockedOutputs": 1808, + "m_flHeight": 1872, + "m_flLip": 1804, + "m_flMoveDistance": 1796, + "m_flWait": 1800, + "m_hActivator": 1876, + "m_movementType": 1904, + "m_sMaster": 1912, + "m_toggle_state": 1792, + "m_vecAngle1": 1848, + "m_vecAngle2": 1860, + "m_vecFinalAngle": 1892, + "m_vecFinalDest": 1880, + "m_vecMoveAng": 1836, + "m_vecPosition1": 1812, + "m_vecPosition2": 1824 + }, + "CBaseTrigger": { + "m_OnEndTouch": 2024, + "m_OnEndTouchAll": 2064, + "m_OnNotTouching": 2144, + "m_OnStartTouch": 1944, + "m_OnStartTouchAll": 1984, + "m_OnTouching": 2104, + "m_bClientSidePredicted": 2208, + "m_bDisabled": 1920, + "m_hFilter": 1936, + "m_hTouchingEntities": 2184, + "m_iFilterName": 1928 + }, + "CBaseViewModel": { + "m_flAnimationStartTime": 2380, + "m_hControlPanel": 2420, + "m_hOldLayerSequence": 2408, + "m_hWeapon": 2384, + "m_nAnimationParity": 2376, + "m_nViewModelIndex": 2372, + "m_oldLayer": 2412, + "m_oldLayerStartTime": 2416, + "m_sAnimationPrefix": 2400, + "m_sVMName": 2392, + "m_vecLastFacing": 2360 + }, + "CBeam": { + "m_bTurnedOff": 1928, + "m_fAmplitude": 1908, + "m_fEndWidth": 1896, + "m_fFadeLength": 1900, + "m_fHaloScale": 1904, + "m_fSpeed": 1916, + "m_fStartFrame": 1912, + "m_fWidth": 1892, + "m_flDamage": 1804, + "m_flFireTime": 1800, + "m_flFrame": 1920, + "m_flFrameRate": 1792, + "m_flHDRColorScale": 1796, + "m_hAttachEntity": 1840, + "m_hBaseMaterial": 1816, + "m_hEndEntity": 1944, + "m_nAttachIndex": 1880, + "m_nBeamFlags": 1836, + "m_nBeamType": 1832, + "m_nClipStyle": 1924, + "m_nDissolveType": 1948, + "m_nHaloIndex": 1824, + "m_nNumBeamEnts": 1808, + "m_vecEndPos": 1932 + }, + "CBlood": { + "m_Color": 1228, + "m_flAmount": 1224, + "m_vecSprayAngles": 1200, + "m_vecSprayDir": 1212 + }, + "CBodyComponent": { + "__m_pChainEntity": 32, + "m_pSceneNode": 8 + }, + "CBodyComponentBaseAnimGraph": { + "__m_pChainEntity": 1712, + "m_animationController": 1136 + }, + "CBodyComponentBaseModelEntity": { + "__m_pChainEntity": 1136 + }, + "CBodyComponentPoint": { + "__m_pChainEntity": 416, + "m_sceneNode": 80 + }, + "CBodyComponentSkeletonInstance": { + "__m_pChainEntity": 1088, + "m_skeletonInstance": 80 + }, + "CBombTarget": { + "m_OnBombDefused": 2296, + "m_OnBombExplode": 2216, + "m_OnBombPlanted": 2256, + "m_bBombPlantedHere": 2338, + "m_bIsBombSiteB": 2336, + "m_bIsHeistBombTarget": 2337, + "m_hInstructorHint": 2352, + "m_nBombSiteDesignation": 2356, + "m_szMountTarget": 2344 + }, + "CBot": { + "m_bHasSpawned": 24, + "m_buttonFlags": 160, + "m_forwardSpeed": 148, + "m_id": 28, + "m_isCrouching": 145, + "m_isRunning": 144, + "m_jumpTimestamp": 168, + "m_leftSpeed": 152, + "m_pPlayer": 16, + "m_postureStackIndex": 200, + "m_verticalSpeed": 156, + "m_viewForward": 172 + }, + "CBreachChargeProjectile": { + "m_bDefused": 2688, + "m_bResolvedParent": 2690, + "m_bShouldExplode": 2664, + "m_bUnstuckFromPlayer": 2689, + "m_hDesiredParent": 2704, + "m_nParentBoneIndex": 2672, + "m_vecLastKnownValidPos": 2692, + "m_vecParentBonePos": 2676, + "m_weaponThatThrewMe": 2668 + }, + "CBreakable": { + "m_Explosion": 1816, + "m_Material": 1808, + "m_OnBreak": 1856, + "m_OnHealthChanged": 1896, + "m_PerformanceMode": 1972, + "m_flDmgModBullet": 1936, + "m_flDmgModClub": 1940, + "m_flDmgModExplosive": 1944, + "m_flDmgModFire": 1948, + "m_flLastPhysicsInfluenceTime": 1980, + "m_flPressureDelay": 1832, + "m_hBreaker": 1812, + "m_hPhysicsAttacker": 1976, + "m_iInteractions": 1968, + "m_iMinHealthDmg": 1836, + "m_impactEnergyScale": 1848, + "m_iszBasePropData": 1960, + "m_iszPhysicsDamageTableName": 1952, + "m_iszPropData": 1840, + "m_iszSpawnObject": 1824, + "m_nOverrideBlockLOS": 1852 + }, + "CBreakableProp": { + "m_OnBreak": 2432, + "m_OnHealthChanged": 2472, + "m_OnTakeDamage": 2512, + "m_PerformanceMode": 2580, + "m_bHasBreakPiecesOrCommands": 2624, + "m_bOriginalBlockLOS": 2688, + "m_bUsePuntSound": 2704, + "m_explodeDamage": 2628, + "m_explodeRadius": 2632, + "m_explosionBuildupSound": 2648, + "m_explosionCustomEffect": 2656, + "m_explosionCustomSound": 2664, + "m_explosionDelay": 2640, + "m_explosionModifier": 2672, + "m_flDefaultFadeScale": 2692, + "m_flDmgModBullet": 2584, + "m_flDmgModClub": 2588, + "m_flDmgModExplosive": 2592, + "m_flDmgModFire": 2596, + "m_flLastPhysicsInfluenceTime": 2684, + "m_flPressureDelay": 2572, + "m_flPreventDamageBeforeTime": 2620, + "m_hBreaker": 2576, + "m_hFlareEnt": 2700, + "m_hLastAttacker": 2696, + "m_hPhysicsAttacker": 2680, + "m_iInteractions": 2616, + "m_iMinHealthDmg": 2556, + "m_impactEnergyScale": 2552, + "m_iszBasePropData": 2608, + "m_iszPhysicsDamageTableName": 2600, + "m_iszPuntSound": 2712, + "m_noGhostCollision": 2720, + "m_preferredCarryAngles": 2560 + }, + "CBreakableStageHelper": { + "m_nCurrentStage": 8, + "m_nStageCount": 12 + }, + "CBtActionAim": { + "m_AimTimer": 168, + "m_FocusIntervalTimer": 216, + "m_NextLookTarget": 156, + "m_SniperHoldTimer": 192, + "m_bAcquired": 240, + "m_bDoneAiming": 140, + "m_flLerpStartTime": 144, + "m_flNextLookTargetLerpTime": 148, + "m_flPenaltyReductionRatio": 152, + "m_flZoomCooldownTimestamp": 136, + "m_szAimReadyKey": 128, + "m_szSensorInputKey": 104 + }, + "CBtActionCombatPositioning": { + "m_ActionTimer": 136, + "m_bCrouching": 160, + "m_szIsAttackingKey": 128, + "m_szSensorInputKey": 104 + }, + "CBtActionMoveTo": { + "m_CheckApproximateCornersTimer": 144, + "m_CheckHighPriorityItem": 168, + "m_RepathTimer": 192, + "m_bAutoLookAdjust": 132, + "m_bComputePath": 133, + "m_flAdditionalArrivalEpsilon2D": 220, + "m_flArrivalEpsilon": 216, + "m_flDamagingAreasPenaltyCost": 136, + "m_flHidingSpotCheckDistanceThreshold": 224, + "m_flNearestAreaDistanceThreshold": 228, + "m_szDestinationInputKey": 96, + "m_szHidingSpotInputKey": 104, + "m_szThreatInputKey": 112, + "m_vecDestination": 120 + }, + "CBtActionParachutePositioning": { + "m_ActionTimer": 88 + }, + "CBtNodeCondition": { + "m_bNegated": 88 + }, + "CBtNodeConditionInactive": { + "m_SensorInactivityTimer": 128, + "m_flRoundStartThresholdSeconds": 120, + "m_flSensorInactivityThresholdSeconds": 124 + }, + "CBubbling": { + "m_density": 1792, + "m_frequency": 1796, + "m_state": 1800 + }, + "CBumpMineProjectile": { + "m_bArmed": 2684, + "m_bBeingUsed": 2772, + "m_bDefused": 2685, + "m_bResolvedParent": 2752, + "m_bShouldExplode": 2664, + "m_bUnstuckFromPlayer": 2686, + "m_hDesiredParent": 2768, + "m_nParentBoneIndex": 2668, + "m_vecLastKnownValidPos": 2756, + "m_vecParentBonePos": 2672, + "m_vecTargetedObjects": 2688 + }, + "CBuoyancyHelper": { + "m_flDisplacementFromObjects": 28, + "m_flFluidDensity": 24 + }, + "CBuyZone": { + "m_LegacyTeamNum": 2216 + }, + "CC4": { + "m_bBombPlacedAnimation": 3744, + "m_bBombPlanted": 3787, + "m_bDoValidDroppedPositionCheck": 3736, + "m_bDroppedFromDeath": 3788, + "m_bIsPlantingViaUse": 3746, + "m_bPlayedArmingBeeps": 3780, + "m_bShowC4LED": 3745, + "m_bStartedArming": 3737, + "m_entitySpottedState": 3752, + "m_fArmedTime": 3740, + "m_nSpotRules": 3776, + "m_vecLastValidDroppedPosition": 3724, + "m_vecLastValidPlayerHeldPosition": 3712 + }, + "CCSBot": { + "m_aimError": 28880, + "m_aimFocus": 28908, + "m_aimFocusInterval": 28912, + "m_aimFocusNextUpdate": 28916, + "m_aimGoal": 28892, + "m_alertTimer": 424, + "m_allowAutoFollowTime": 396, + "m_approachPointCount": 27688, + "m_approachPointViewPosition": 27692, + "m_areaEnteredTimestamp": 26140, + "m_attackedTimestamp": 29556, + "m_attacker": 29552, + "m_attentionInterval": 29536, + "m_avgVel": 29924, + "m_avgVelCount": 29968, + "m_avgVelIndex": 29964, + "m_avoid": 1284, + "m_avoidFriendTimer": 26168, + "m_avoidTimestamp": 1288, + "m_bAllowActive": 384, + "m_bEyeAnglesUnderPathFinderControl": 1312, + "m_bIsSleeping": 29656, + "m_bendNoisePositionValid": 27228, + "m_bentNoisePosition": 27216, + "m_blindFire": 356, + "m_bomber": 29520, + "m_burnedByFlamesTimer": 29560, + "m_checkedHidingSpotCount": 28824, + "m_closestVisibleFriend": 29528, + "m_closestVisibleHumanFriend": 29532, + "m_combatRange": 300, + "m_currentEnemyAcquireTimestamp": 28980, + "m_desiredTeam": 27088, + "m_diedLastRound": 340, + "m_enemy": 28952, + "m_enemyDeathTimestamp": 28984, + "m_enemyQueueAttendIndex": 29850, + "m_enemyQueueCount": 29849, + "m_enemyQueueIndex": 29848, + "m_equipTimer": 29584, + "m_eyePosition": 224, + "m_fireWeaponTimestamp": 29624, + "m_firstSawEnemyTimestamp": 28976, + "m_followTimestamp": 392, + "m_forwardAngle": 27240, + "m_friendDeathTimestamp": 28988, + "m_goalEntity": 1280, + "m_goalPosition": 1268, + "m_hasJoined": 27092, + "m_hasVisitedEnemySpawn": 1293, + "m_hostageEscortCount": 27080, + "m_hostageEscortCountTimestamp": 27084, + "m_hurryTimer": 400, + "m_ignoreEnemiesTimer": 28928, + "m_inhibitLookAroundTimestamp": 27244, + "m_inhibitWaitingForHostageTimer": 27096, + "m_isAimingAtEnemy": 29580, + "m_isAttacking": 1244, + "m_isAvoidingGrenade": 27760, + "m_isEnemySniperVisible": 29657, + "m_isEnemyVisible": 28956, + "m_isFollowing": 385, + "m_isFriendInTheWay": 26192, + "m_isLastEnemyDead": 28992, + "m_isOpeningDoor": 1245, + "m_isRapidFiring": 29581, + "m_isRogue": 304, + "m_isStopping": 1292, + "m_isStuck": 29851, + "m_isWaitingBehindFriend": 26224, + "m_isWaitingForHostage": 27093, + "m_lastCoopSpawnPoint": 208, + "m_lastEnemyPosition": 28960, + "m_lastOrigin": 29972, + "m_lastRadioRecievedTimestamp": 29988, + "m_lastRadioSentTimestamp": 29992, + "m_lastSawEnemyTimestamp": 28972, + "m_lastValidReactionQueueFrame": 30024, + "m_lastVictimID": 29576, + "m_leader": 388, + "m_lookAheadAngle": 27236, + "m_lookAroundStateTimestamp": 27232, + "m_lookAtDesc": 27288, + "m_lookAtSpot": 27252, + "m_lookAtSpotAngleTolerance": 27276, + "m_lookAtSpotAttack": 27281, + "m_lookAtSpotClearIfClose": 27280, + "m_lookAtSpotDuration": 27268, + "m_lookAtSpotTimestamp": 27272, + "m_lookForWeaponsOnGroundTimer": 29632, + "m_lookPitch": 28828, + "m_lookPitchVel": 28832, + "m_lookYaw": 28836, + "m_lookYawVel": 28840, + "m_mustRunTimer": 26344, + "m_name": 236, + "m_nearbyEnemyCount": 28996, + "m_nearbyFriendCount": 29524, + "m_nextCleanupCheckTimestamp": 29920, + "m_noiseBendTimer": 27192, + "m_noisePosition": 27144, + "m_noiseSource": 27168, + "m_noiseTimestamp": 27160, + "m_noiseTravelDistance": 27156, + "m_panicTimer": 472, + "m_pathIndex": 26136, + "m_pathLadderEnd": 26268, + "m_peripheralTimestamp": 27296, + "m_playerTravelDistance": 26416, + "m_politeTimer": 26200, + "m_radioPosition": 30000, + "m_radioSubject": 29996, + "m_repathTimer": 26144, + "m_rogueTimer": 312, + "m_safeTime": 344, + "m_sawEnemySniperTimer": 29664, + "m_sneakTimer": 448, + "m_spotCheckTimestamp": 27792, + "m_stateTimestamp": 1240, + "m_stillTimer": 1296, + "m_stuckJumpTimer": 29896, + "m_stuckSpot": 29856, + "m_stuckTimestamp": 29852, + "m_surpriseTimer": 360, + "m_targetSpot": 28844, + "m_targetSpotPredicted": 28868, + "m_targetSpotTime": 28904, + "m_targetSpotVelocity": 28856, + "m_taskEntity": 1252, + "m_tossGrenadeTimer": 27728, + "m_travelDistancePhase": 26672, + "m_updateTravelDistanceTimer": 26392, + "m_viewSteadyTimer": 27704, + "m_visibleEnemyParts": 28957, + "m_voiceEndTimestamp": 30012, + "m_waitForHostageTimer": 27120, + "m_waitTimer": 26368, + "m_wasSafe": 348, + "m_wiggleTimer": 29872, + "m_zoomTimer": 29600 + }, + "CCSEnvGunfire": { + "m_bAllowNullTarget": 1296, + "m_bAlwaysWallbangTracer": 1297, + "m_bCollide": 1288, + "m_bDisabled": 1248, + "m_flAdditionalSpread": 1304, + "m_flBias": 1284, + "m_flDamageScaleValue": 1300, + "m_flMaxBurstDelay": 1212, + "m_flMinBurstDelay": 1208, + "m_flRateOfFire": 1216, + "m_flTargetDist": 1280, + "m_hTarget": 1292, + "m_iMaxBurstSize": 1204, + "m_iMinBurstSize": 1200, + "m_iShotsRemaining": 1252, + "m_iSpread": 1256, + "m_iszShootSound": 1224, + "m_iszTracerType": 1232, + "m_iszWeaponName": 1240, + "m_vecSpread": 1260, + "m_vecTargetPosition": 1268 + }, + "CCSGOViewModel": { + "m_bShouldIgnoreOffsetAndAccuracy": 2424, + "m_nOldWeaponParity": 2432, + "m_nWeaponParity": 2428 + }, + "CCSGO_TeamPreviewCharacterPosition": { + "m_nOrdinal": 1208, + "m_nRandom": 1204, + "m_nVariant": 1200, + "m_sWeaponName": 1216, + "m_weaponItem": 1232, + "m_xuid": 1224 + }, + "CCSGameModeRules": { + "__m_pChainEntity": 8 + }, + "CCSGameModeRules_Deathmatch": { + "m_bFirstThink": 48, + "m_bFirstThinkAfterConnected": 49, + "m_flDMBonusStartTime": 52, + "m_flDMBonusTimeLength": 56, + "m_nDMBonusWeaponLoadoutSlot": 60 + }, + "CCSGameRules": { + "__m_pChainEntity": 152, + "mTeamDMLastThinkTime": 4720, + "mTeamDMLastWinningTeamNumber": 4716, + "m_BtGlobalBlackboard": 13656, + "m_CTSpawnPoints": 4968, + "m_CTSpawnPointsMasterList": 4912, + "m_GGProgressiveWeaponKillUpgradeOrderCT": 796, + "m_GGProgressiveWeaponKillUpgradeOrderT": 1036, + "m_GGProgressiveWeaponOrderCT": 316, + "m_GGProgressiveWeaponOrderT": 556, + "m_GuardianBotSkillLevelMax": 14252, + "m_GuardianBotSkillLevelMin": 14256, + "m_MatchDevice": 1276, + "m_MinimapVerticalSectionHeights": 4304, + "m_RetakeRules": 13768, + "m_SurvivalRules": 6336, + "m_TeamRespawnWaveTimes": 4020, + "m_TerroristSpawnPoints": 4992, + "m_TerroristSpawnPointsMasterList": 4936, + "m_arrFeaturedGiftersAccounts": 3384, + "m_arrFeaturedGiftersGifts": 3400, + "m_arrProhibitedItemIndices": 3416, + "m_arrSelectedHostageSpawnIndices": 4504, + "m_arrTeamUniqueKillWeaponsMatch": 14264, + "m_arrTournamentActiveCasterAccounts": 3616, + "m_bAllowWeaponSwitch": 5640, + "m_bAnyHostageReached": 288, + "m_bBombDefused": 4865, + "m_bBombDropped": 3640, + "m_bBombPlanted": 3641, + "m_bBuyTimeEnded": 4856, + "m_bCTCantBuy": 3653, + "m_bCTTimeOutActive": 219, + "m_bCanDonateWeapons": 4791, + "m_bCompleteReset": 4529, + "m_bDontIncrementCoopWave": 4336, + "m_bFirstConnected": 4528, + "m_bForceTeamChangeSilent": 4616, + "m_bFreezePeriod": 196, + "m_bGamePaused": 217, + "m_bGameRestart": 256, + "m_bGunGameRespawnWithBomb": 4867, + "m_bHasHostageBeenTouched": 4456, + "m_bHasMatchStarted": 1280, + "m_bHasTriggeredCoopSpawnReset": 6298, + "m_bHasTriggeredRoundStartMusic": 6297, + "m_bIsDroppingItems": 3348, + "m_bIsQuestEligible": 3349, + "m_bIsQueuedMatchmaking": 292, + "m_bIsUnreservedGameServer": 5016, + "m_bIsValveDS": 300, + "m_bLevelInitialized": 4468, + "m_bLoadingRoundBackupData": 4617, + "m_bLogoMap": 301, + "m_bMapHasBombTarget": 289, + "m_bMapHasBombZone": 4866, + "m_bMapHasBuyZone": 291, + "m_bMapHasRescueZone": 290, + "m_bMatchAbortedDueToPlayerBan": 6296, + "m_bMatchWaitingForResume": 237, + "m_bNeedToAskPlayersForContinueVote": 4572, + "m_bNoCTsKilled": 4789, + "m_bNoEnemiesKilled": 4790, + "m_bNoTerroristsKilled": 4788, + "m_bPickNewTeamsOnReset": 4530, + "m_bPlayAllStepSoundsOnServer": 302, + "m_bPlayedTeamIntroVO": 14420, + "m_bRoundTimeWarningTriggered": 5641, + "m_bScrambleTeamsOnRestart": 4531, + "m_bServerPaused": 216, + "m_bServerVoteOnReset": 4849, + "m_bSpawnedTerrorHuntHeavy": 4337, + "m_bSwapTeamsOnRestart": 4532, + "m_bSwitchingTeamsAtRoundReset": 6299, + "m_bTCantBuy": 3652, + "m_bTargetBombed": 4864, + "m_bTeamIntroPeriod": 14412, + "m_bTeamLastKillUsedUniqueWeaponMatch": 14360, + "m_bTechnicalTimeOut": 236, + "m_bTerroristTimeOutActive": 218, + "m_bVoiceWonMatchBragFired": 4764, + "m_bVoteCalled": 4848, + "m_bWarmupPeriod": 197, + "m_coopBonusCoinsFound": 4708, + "m_coopBonusPistolsOnly": 4712, + "m_coopMissionDeadPlayerRespawnEnabled": 4714, + "m_coopMissionManager": 192, + "m_coopPlayersInDeploymentZone": 4713, + "m_eRoundWinReason": 3648, + "m_endMatchOnRoundReset": 4480, + "m_endMatchOnThink": 4481, + "m_fAccumulatedRoundOffDamage": 5656, + "m_fAutobalanceDisplayTime": 5020, + "m_fGunGameBombRespawnTimer": 4868, + "m_fMatchStartTime": 244, + "m_fNextUpdateTeamClanNamesTime": 5648, + "m_fRoundStartTime": 248, + "m_fTeamIntroPeriodEnd": 14416, + "m_fWarmupNextChatNoticeTime": 4768, + "m_fWarmupPeriodEnd": 200, + "m_fWarmupPeriodStart": 204, + "m_firstBloodTime": 4804, + "m_firstKillTime": 4796, + "m_flCMMItemDropRevealEndTime": 3344, + "m_flCMMItemDropRevealStartTime": 3340, + "m_flCTTimeOutRemaining": 224, + "m_flCoopRespawnAndHealTime": 4704, + "m_flGameStartTime": 260, + "m_flGuardianBuyUntilTime": 3656, + "m_flIntermissionEndTime": 4464, + "m_flIntermissionStartTime": 4460, + "m_flLastThinkTime": 5652, + "m_flMatchInfoDecidedTime": 4676, + "m_flNextHostageAnnouncement": 4784, + "m_flNextRespawnWave": 4148, + "m_flRestartRoundTime": 252, + "m_flTeamDMLastAnnouncementTime": 4724, + "m_flTerroristTimeOutRemaining": 220, + "m_flVoteCheckThrottle": 4852, + "m_gamePhase": 268, + "m_hPlayerResource": 13760, + "m_hostageWasInjured": 4832, + "m_hostageWasKilled": 4833, + "m_iAccountCT": 4732, + "m_iAccountTerrorist": 4728, + "m_iFreezeTime": 4484, + "m_iHostagesRemaining": 284, + "m_iHostagesRescued": 4776, + "m_iHostagesTouched": 4780, + "m_iLoserBonus": 4752, + "m_iLoserBonusMostRecentTeam": 4756, + "m_iMatchStats_PlayersAlive_CT": 3780, + "m_iMatchStats_PlayersAlive_T": 3900, + "m_iMatchStats_RoundResults": 3660, + "m_iMaxGunGameProgressiveWeaponIndex": 6300, + "m_iMaxNumCTs": 4748, + "m_iMaxNumTerrorists": 4744, + "m_iNextCTSpawnPoint": 4960, + "m_iNextTerroristSpawnPoint": 4964, + "m_iNumCT": 4492, + "m_iNumConsecutiveCTLoses": 4424, + "m_iNumConsecutiveTerroristLoses": 4428, + "m_iNumGunGameProgressiveWeaponsCT": 304, + "m_iNumGunGameProgressiveWeaponsT": 308, + "m_iNumSpawnableCT": 4500, + "m_iNumSpawnableTerrorist": 4496, + "m_iNumTerrorist": 4488, + "m_iRoundTime": 240, + "m_iRoundWinStatus": 3644, + "m_iSpawnPointCount_CT": 4740, + "m_iSpawnPointCount_Terrorist": 4736, + "m_iSpectatorSlotCount": 312, + "m_iTotalRoundsPlayed": 4472, + "m_iUnBalancedRounds": 4476, + "m_nCTTeamIntroVariant": 14408, + "m_nCTTimeOuts": 232, + "m_nEndMatchMapGroupVoteOptions": 4380, + "m_nEndMatchMapGroupVoteTypes": 4340, + "m_nEndMatchMapVoteWinner": 4420, + "m_nEndMatchTiedVotes": 4544, + "m_nGuardianGrenadesToGiveBots": 3364, + "m_nGuardianModeSpecialKillsRemaining": 3356, + "m_nGuardianModeSpecialWeaponNeeded": 3360, + "m_nGuardianModeWaveNumber": 3352, + "m_nHalloweenMaskListSeed": 3636, + "m_nLastFreezeEndBeep": 4860, + "m_nMatchEndCount": 14400, + "m_nMatchInfoShowType": 4672, + "m_nNextMapInMapgroup": 1284, + "m_nNumHeaviesToSpawn": 3368, + "m_nOvertimePlaying": 280, + "m_nPauseStartTick": 212, + "m_nQueuedMatchmakingMode": 296, + "m_nRoundsPlayedThisPhase": 276, + "m_nServerQuestID": 4276, + "m_nShorthandedBonusLastEvalRound": 5660, + "m_nTTeamIntroVariant": 14404, + "m_nTerroristTimeOuts": 228, + "m_nTotalPausedTicks": 208, + "m_nTournamentPredictionsPct": 3336, + "m_numBestOfMaps": 3632, + "m_numGlobalGifters": 3376, + "m_numGlobalGiftsGiven": 3372, + "m_numGlobalGiftsPeriodSeconds": 3380, + "m_numQueuedMatchmakingAccounts": 4576, + "m_numSpectatorsCountMax": 4596, + "m_numSpectatorsCountMaxLnk": 4604, + "m_numSpectatorsCountMaxTV": 4600, + "m_numTotalTournamentDrops": 4592, + "m_pGameModeRules": 6328, + "m_pQueuedMatchmakingReservationString": 4584, + "m_phaseChangeAnnouncementTime": 5644, + "m_szMatchStatTxt": 2312, + "m_szTournamentEventName": 1288, + "m_szTournamentEventStage": 1800, + "m_szTournamentPredictionsTxt": 2824, + "m_timeUntilNextPhaseStarts": 264, + "m_tmNextPeriodicThink": 4760, + "m_totalRoundsPlayed": 272, + "m_vMinimapMaxs": 4292, + "m_vMinimapMins": 4280, + "m_vecMainCTSpawnPos": 4900 + }, + "CCSGameRulesProxy": { + "m_pGameRules": 1200 + }, + "CCSPlace": { + "m_name": 1800 + }, + "CCSPlayerController": { + "m_DesiredObserverMode": 2036, + "m_bAbandonAllowsSurrender": 1997, + "m_bAbandonOffersInstantSurrender": 1998, + "m_bAttemptedToGetColor": 1757, + "m_bCanControlObservedBot": 2024, + "m_bControllingBot": 2016, + "m_bDisconnection1MinWarningPrinted": 1999, + "m_bEverFullyConnected": 1996, + "m_bEverPlayedOnTeam": 1756, + "m_bHasBeenControlledByPlayerThisRound": 2018, + "m_bHasCommunicationAbuseMute": 1732, + "m_bHasControlledBotThisRound": 2017, + "m_bHasSeenJoinGame": 1766, + "m_bInSwitchTeam": 1765, + "m_bJustBecameSpectator": 1767, + "m_bPawnHasDefuser": 2056, + "m_bPawnHasHelmet": 2057, + "m_bPawnIsAlive": 2044, + "m_bRemoveAllItemsOnNextRoundReset": 1769, + "m_bScoreReported": 2000, + "m_bShowHints": 63744, + "m_bSwitchTeamsOnNextRoundReset": 1768, + "m_bTeamChanged": 1764, + "m_flForceTeamTime": 1748, + "m_hDesiredObserverTarget": 2040, + "m_hObserverPawn": 2032, + "m_hOriginalControllerOfCurrentPawn": 2076, + "m_hPlayerPawn": 2028, + "m_iCoachingTeam": 1816, + "m_iCompTeammateColor": 1752, + "m_iCompetitiveRankType": 1848, + "m_iCompetitiveRanking": 1840, + "m_iCompetitiveRankingPredicted_Loss": 1856, + "m_iCompetitiveRankingPredicted_Tie": 1860, + "m_iCompetitiveRankingPredicted_Win": 1852, + "m_iCompetitiveWins": 1844, + "m_iDraftIndex": 1984, + "m_iMVPs": 2112, + "m_iNextTimeCheck": 63748, + "m_iPawnArmor": 2052, + "m_iPawnBotDifficulty": 2072, + "m_iPawnGunGameLevel": 2068, + "m_iPawnHealth": 2048, + "m_iPawnLifetimeEnd": 2064, + "m_iPawnLifetimeStart": 2060, + "m_iPendingTeamNum": 1744, + "m_iPing": 1728, + "m_iRoundScore": 2084, + "m_iScore": 2080, + "m_iTeammatePreferredColor": 1760, + "m_lastHeldVoteTimer": 63720, + "m_msQueuedModeDisconnectionTimestamp": 1988, + "m_nBotsControlledThisRound": 2020, + "m_nDisconnectionTick": 2004, + "m_nEndMatchNextMapVote": 1864, + "m_nPawnCharacterDefIndex": 2058, + "m_nPlayerDominated": 1824, + "m_nPlayerDominatingMe": 1832, + "m_nQuestProgressReason": 1872, + "m_nUpdateCounter": 2116, + "m_pActionTrackingServices": 1712, + "m_pDamageServices": 1720, + "m_pInGameMoneyServices": 1696, + "m_pInventoryServices": 1704, + "m_szClan": 1776, + "m_szClanName": 1784, + "m_szCrosshairCodes": 1736, + "m_uiAbandonRecordedReason": 1992, + "m_unActiveQuestId": 1868, + "m_unPlayerTvControlFlags": 1876, + "m_vecKills": 2088 + }, + "CCSPlayerController_ActionTrackingServices": { + "m_iNumRoundKills": 328, + "m_iNumRoundKillsHeadshots": 332, + "m_matchStats": 144, + "m_perRoundStats": 64 + }, + "CCSPlayerController_DamageServices": { + "m_DamageList": 72, + "m_nSendUpdate": 64 + }, + "CCSPlayerController_InGameMoneyServices": { + "m_bReceivesMoneyNextRound": 64, + "m_iAccount": 72, + "m_iAccountMoneyEarnedForNextRound": 68, + "m_iCashSpentThisRound": 84, + "m_iStartAccount": 76, + "m_iTotalCashSpent": 80 + }, + "CCSPlayerController_InventoryServices": { + "m_nPersonaDataPublicCommendsFriendly": 104, + "m_nPersonaDataPublicCommendsLeader": 96, + "m_nPersonaDataPublicCommendsTeacher": 100, + "m_nPersonaDataPublicLevel": 92, + "m_rank": 68, + "m_unEquippedPlayerSprayIDs": 3912, + "m_unMusicID": 64, + "m_vecCounterTerroristLoadoutCache": 4000, + "m_vecTerroristLoadoutCache": 3920 + }, + "CCSPlayerPawn": { + "m_EconGloves": 7624, + "m_RetakesMVPBoostExtraUtility": 6120, + "m_bIsBuyMenuOpen": 6124, + "m_bLastHeadBoneTransformIsValid": 7504, + "m_bRagdollDamageHeadshot": 7616, + "m_bRetakesHasDefuseKit": 6112, + "m_bRetakesMVPLastRound": 6113, + "m_bSkipOneHeadConstraintUpdate": 8268, + "m_flNextSprayDecalTime": 7516, + "m_iPlayerLocked": 7508, + "m_iRetakesMVPBoostItem": 6116, + "m_iRetakesOffering": 6104, + "m_iRetakesOfferingCard": 6108, + "m_nRagdollDamageBone": 7524, + "m_pBulletServices": 5856, + "m_pBuyServices": 5872, + "m_pDamageReactServices": 5896, + "m_pHostageServices": 5864, + "m_pParachuteServices": 5848, + "m_pPingServices": 5880, + "m_pRadioServices": 5888, + "m_qDeathEyeAngles": 8256, + "m_szRagdollDamageWeaponName": 7552, + "m_vRagdollDamageForce": 7528, + "m_vRagdollDamagePosition": 7540, + "m_xLastHeadBoneTransform": 7472 + }, + "CCSPlayerPawnBase": { + "m_ArmorValue": 4884, + "m_CTouchExpansionComponent": 3072, + "m_LastHealth": 5804, + "m_LastHitBox": 5800, + "m_MenuStringBuffer": 3680, + "m_NumEnemiesAtRoundStart": 5188, + "m_NumEnemiesKilledThisRound": 5184, + "m_NumEnemiesKilledThisSpawn": 5176, + "m_aimPunchAngle": 5720, + "m_aimPunchAngleVel": 5732, + "m_aimPunchCache": 5752, + "m_aimPunchTickBase": 5744, + "m_aimPunchTickFraction": 5748, + "m_allowAutoFollowTime": 3188, + "m_angEyeAngles": 5060, + "m_angShootAngleHistory": 4780, + "m_angStashedShootAngles": 4744, + "m_bBotAllowActive": 5840, + "m_bCanMoveDuringFreezePeriod": 3545, + "m_bCommittingSuicideOnTeamChange": 5841, + "m_bDiedAirborne": 4854, + "m_bGrenadeParametersStashed": 4740, + "m_bGunGameImmunity": 3520, + "m_bHasDeathInfo": 5776, + "m_bHasFemaleVoice": 3192, + "m_bHasMovedSinceSpawn": 3544, + "m_bHasNightVision": 3668, + "m_bHideTargetID": 5101, + "m_bHud_MiniScoreHidden": 5108, + "m_bHud_RadarHidden": 5109, + "m_bInBombZone": 4716, + "m_bInBombZoneTrigger": 4864, + "m_bInBuyZone": 4717, + "m_bInHostageRescueZone": 4868, + "m_bInNoDefuseArea": 4718, + "m_bInvalidSteamLogonDelayed": 3630, + "m_bIsDefusing": 3507, + "m_bIsGrabbingHostage": 3508, + "m_bIsScoped": 3504, + "m_bIsSpawnRappelling": 3560, + "m_bIsSpawning": 5100, + "m_bIsWalking": 3505, + "m_bJustKilledTeammate": 3628, + "m_bKilledByHeadshot": 5796, + "m_bKilledByTaser": 4719, + "m_bMadeFinalGunGameProgressiveKill": 3521, + "m_bNightVisionOn": 3669, + "m_bPunishedForTK": 3629, + "m_bResetArmorNextSpawn": 3608, + "m_bRespawning": 3480, + "m_bResumeZoom": 3506, + "m_bShouldProgressGunGameTRBombModeWeapon": 3488, + "m_bStrafing": 4944, + "m_bTDGaveProtectionWarning": 5140, + "m_bTDGaveProtectionWarningThisRound": 5141, + "m_bVCollisionInitted": 5072, + "m_bWaitForNoAttack": 4936, + "m_bWasInBombZoneTrigger": 4865, + "m_bWasInBuyZone": 4867, + "m_bWasInHostageRescueZone": 4866, + "m_blindStartTime": 3184, + "m_blindUntilTime": 3180, + "m_chickenIdleSoundTimer": 3248, + "m_chickenJumpSoundTimer": 3272, + "m_currentDeafnessFilter": 5148, + "m_enemyPlayersKilledThisRound": 5152, + "m_entitySpottedState": 3200, + "m_fImmuneToGunGameDamageTime": 3516, + "m_fIntroCamTime": 4708, + "m_fLastGivenBombTime": 3664, + "m_fLastGivenDefuserTime": 3660, + "m_fMolotovDamageTime": 3540, + "m_fNextRadarUpdateTime": 3672, + "m_flAccumulatedDistanceTraveled": 3472, + "m_flDealtDamageToEnemyMostRecentTimestamp": 3588, + "m_flDeathInfoTime": 5780, + "m_flDetectedByEnemySensorTime": 3556, + "m_flEmitSoundTime": 3616, + "m_flFlashDuration": 4920, + "m_flFlashMaxAlpha": 4924, + "m_flFlinchStack": 4888, + "m_flGuardianTooFarDistFrac": 3548, + "m_flHealthShotBoostExpirationTime": 3592, + "m_flHitHeading": 4896, + "m_flLandseconds": 5824, + "m_flLastAction": 3636, + "m_flLastAttackedTeammate": 3172, + "m_flLastBumpMineBumpTime": 3612, + "m_flLastCollisionCeiling": 5808, + "m_flLastCollisionCeilingChangeTime": 5812, + "m_flLastDistanceTraveledNotice": 3468, + "m_flLastEquippedArmorTime": 3600, + "m_flLastEquippedHelmetTime": 3596, + "m_flLastFriendlyFireDamageReductionRatio": 3476, + "m_flLastMoneyUpdateTime": 3676, + "m_flLastPickupPriorityTime": 3496, + "m_flLastTHWarningTime": 5144, + "m_flLowerBodyYawTarget": 4940, + "m_flNameChangeHistory": 3640, + "m_flNextGuardianTooFarHurtTime": 3552, + "m_flProgressBarStartTime": 4928, + "m_flSlopeDropHeight": 5032, + "m_flSlopeDropOffset": 5028, + "m_flStamina": 4872, + "m_flTimeOfLastInjury": 3228, + "m_flVelocityModifier": 4892, + "m_grenadeParameterStashTime": 4736, + "m_hOriginalController": 3176, + "m_hPet": 5228, + "m_hSurvivalAssassinationTarget": 3580, + "m_iAddonBits": 5124, + "m_iBlockingUseActionInProgress": 3512, + "m_iBombSiteIndex": 4856, + "m_iDeathFlags": 5224, + "m_iDirection": 4876, + "m_iDisplayHistoryBits": 3168, + "m_iGunGameProgressiveWeaponIndex": 3524, + "m_iHostagesKilled": 4904, + "m_iLastWeaponFireUsercmd": 5056, + "m_iMoveState": 4720, + "m_iNumGunGameKillsWithCurrentWeapon": 3532, + "m_iNumGunGameTRBombTotalPoints": 3484, + "m_iNumGunGameTRKillPoints": 3528, + "m_iNumSpawns": 3620, + "m_iPlayerState": 3236, + "m_iPrimaryAddon": 5128, + "m_iProgressBarDuration": 4932, + "m_iRoundsWon": 5192, + "m_iSecondaryAddon": 5132, + "m_iShotsFired": 4880, + "m_iShouldHaveCash": 3624, + "m_iTeamKills": 3632, + "m_ignoreLadderJumpTime": 4960, + "m_isCurrentGunGameLeader": 3546, + "m_isCurrentGunGameTeamLeader": 3547, + "m_ladderSurpressionTimer": 4968, + "m_lastLadderNormal": 4992, + "m_lastLadderPos": 5004, + "m_lastRoundResult": 5196, + "m_lastStandingPos": 4948, + "m_maxNumEnemiesKillStreak": 5180, + "m_nCharacterDefIndex": 4852, + "m_nCompletedSurvivalAssassinations": 3584, + "m_nDeathCamMusic": 5120, + "m_nHeavyAssaultSuitCooldownRemaining": 3604, + "m_nHitBodyPart": 4900, + "m_nLastConcurrentKilled": 5116, + "m_nLastKillerIndex": 5112, + "m_nLastPickupPriority": 3492, + "m_nMyCollisionGroup": 4712, + "m_nNumDangerZoneDamageHits": 5104, + "m_nPreviousModelIndex": 4728, + "m_nRelativeDirectionOfLastInjury": 3232, + "m_nSpotRules": 3224, + "m_nSuicides": 5712, + "m_nSurvivalTeam": 3576, + "m_nSurvivalTeamNumber": 5716, + "m_nTeamDamageGivenForMatch": 5136, + "m_nWhichBombZone": 4860, + "m_pActionTrackingServices": 3152, + "m_pBot": 5832, + "m_pIntroCamera": 4704, + "m_pViewModelServices": 3160, + "m_passiveItems": 3500, + "m_storedSpawnAngle": 5088, + "m_storedSpawnPosition": 5076, + "m_strVOPrefix": 5816, + "m_szLastPlaceName": 5694, + "m_thirdPersonHeading": 5016, + "m_unCurrentEquipmentValue": 5688, + "m_unFreezetimeEndEquipmentValue": 5692, + "m_unRoundStartEquipmentValue": 5690, + "m_unTotalRoundDamageDealt": 3536, + "m_vHeadConstraintOffset": 5036, + "m_vecDeathInfoOrigin": 5784, + "m_vecLastBookmarkedPosition": 3456, + "m_vecPlayerPatchEconIndices": 5204, + "m_vecSpawnRappellingRopeOrigin": 3564, + "m_vecStashedGrenadeThrowPosition": 4756, + "m_vecStashedVelocity": 4768, + "m_vecThrowPositionHistory": 4804, + "m_vecTotalBulletForce": 4908, + "m_vecVelocityHistory": 4828, + "m_wasNotKilledNaturally": 5200 + }, + "CCSPlayerResource": { + "m_bEndMatchNextMapAllVoted": 1344, + "m_bHostageAlive": 1200, + "m_bombsiteCenterA": 1272, + "m_bombsiteCenterB": 1284, + "m_foundGoalPositions": 1345, + "m_hostageRescueX": 1296, + "m_hostageRescueY": 1312, + "m_hostageRescueZ": 1328, + "m_iHostageEntityIDs": 1224, + "m_isHostageFollowingSomeone": 1212 + }, + "CCSPlayer_ActionTrackingServices": { + "m_bIsRescuing": 612, + "m_hLastWeaponBeforeC4AutoSwitch": 560, + "m_weaponPurchasesThisMatch": 616, + "m_weaponPurchasesThisRound": 704 + }, + "CCSPlayer_BulletServices": { + "m_totalHitsOnServer": 64 + }, + "CCSPlayer_BuyServices": { + "m_vecSellbackPurchaseEntries": 200 + }, + "CCSPlayer_CameraServices": { + "m_flFOVRate": 380, + "m_flFOVTime": 376, + "m_hLastFogTrigger": 416, + "m_hTriggerFogList": 392, + "m_hZoomOwner": 384, + "m_iFOV": 368, + "m_iFOVStart": 372 + }, + "CCSPlayer_HostageServices": { + "m_hCarriedHostage": 64, + "m_hCarriedHostageProp": 68 + }, + "CCSPlayer_ItemServices": { + "m_bHasDefuser": 64, + "m_bHasHeavyArmor": 66, + "m_bHasHelmet": 65 + }, + "CCSPlayer_MovementServices": { + "m_StuckLast": 1148, + "m_bDesiresDuck": 573, + "m_bDuckOverride": 572, + "m_bHasWalkMovedSinceLastJump": 617, + "m_bInStuckTest": 618, + "m_bMadeFootstepNoise": 1212, + "m_bOldJumpPressed": 1224, + "m_bSpeedCropped": 1152, + "m_duckUntilOnGround": 616, + "m_fStashGrenadeParameterWhen": 1240, + "m_flDuckAmount": 564, + "m_flDuckOffset": 576, + "m_flDuckSpeed": 568, + "m_flJumpPressedTime": 1228, + "m_flJumpUntil": 1232, + "m_flJumpVel": 1236, + "m_flLastDuckTime": 592, + "m_flMaxFallVelocity": 544, + "m_flOffsetTickCompleteTime": 1256, + "m_flOffsetTickStashedSpeed": 1260, + "m_flStuckCheckTime": 632, + "m_flWaterEntryTime": 1160, + "m_iFootsteps": 1216, + "m_nButtonDownMaskPrev": 1248, + "m_nDuckJumpTimeMsecs": 584, + "m_nDuckTimeMsecs": 580, + "m_nJumpTimeMsecs": 588, + "m_nLadderSurfacePropIndex": 560, + "m_nOldWaterLevel": 1156, + "m_nRoundFootstepsMade": 1220, + "m_nTraceCount": 1144, + "m_vecForward": 1164, + "m_vecLadderNormal": 548, + "m_vecLastPositionAtFullCrouchSpeed": 608, + "m_vecLeft": 1176, + "m_vecPreviouslyPredictedOrigin": 1200, + "m_vecUp": 1188 + }, + "CCSPlayer_PingServices": { + "m_flPlayerPingTokens": 64, + "m_hPlayerPing": 84 + }, + "CCSPlayer_RadioServices": { + "m_bIgnoreRadio": 88, + "m_flC4PlantTalkTimer": 72, + "m_flDefusingTalkTimer": 68, + "m_flGotHostageTalkTimer": 64, + "m_flRadioTokenSlots": 76 + }, + "CCSPlayer_UseServices": { + "m_flLastUseTimeStamp": 68, + "m_flTimeLastUsedWindow": 76, + "m_flTimeStartedHoldingUse": 72, + "m_hLastKnownUseEntity": 64 + }, + "CCSPlayer_ViewModelServices": { + "m_hViewModel": 64 + }, + "CCSPlayer_WaterServices": { + "m_AirFinishedTime": 72, + "m_NextDrownDamageTime": 64, + "m_flSwimSoundTime": 92, + "m_flWaterJumpTime": 76, + "m_nDrownDmgRate": 68, + "m_vecWaterJumpVel": 80 + }, + "CCSPlayer_WeaponServices": { + "m_bIsBeingGivenItem": 204, + "m_bIsHoldingLookAtWeapon": 181, + "m_bIsLookingAtWeapon": 180, + "m_bIsPickingUpItemWithUse": 205, + "m_bPickedUpWeapon": 206, + "m_flNextAttack": 176, + "m_hSavedWeapon": 184, + "m_nTimeToMelee": 188, + "m_nTimeToPrimary": 196, + "m_nTimeToSecondary": 192, + "m_nTimeToSniperRifle": 200 + }, + "CCSPropExplodingBarrel": { + "m_bExploded": 3108, + "m_hBarrelTop": 3104, + "m_nAccumulatedDamage": 3112 + }, + "CCSPropExplodingBarrelTop": { + "m_flOverrideAlpha": 3096 + }, + "CCSTeam": { + "m_bGGHasLeader_CT": 2104, + "m_bGGHasLeader_T": 2105, + "m_bSurrendered": 1392, + "m_flLastPlayerSortTime": 2084, + "m_flNextResourceTime": 2076, + "m_iClanID": 2056, + "m_iLastUpdateSentAt": 2080, + "m_nGGLeaderSlot_CT": 2096, + "m_nGGLeaderSlot_T": 2100, + "m_nLastGGLeader_CT": 2088, + "m_nLastGGLeader_T": 2092, + "m_nLastRecievedShorthandedRoundBonus": 1384, + "m_nShorthandedRoundBonusStartRound": 1388, + "m_numMapVictories": 1908, + "m_scoreFirstHalf": 1912, + "m_scoreOvertime": 1920, + "m_scoreSecondHalf": 1916, + "m_szClanTeamname": 1924, + "m_szTeamFlagImage": 2060, + "m_szTeamLogoImage": 2068, + "m_szTeamMatchStat": 1393 + }, + "CChangeLevel": { + "m_OnChangeLevel": 2232, + "m_bNewChapter": 2274, + "m_bNoTouch": 2273, + "m_bOnChangeLevelFired": 2275, + "m_bTouched": 2272, + "m_sLandmarkName": 2224, + "m_sMapName": 2216 + }, + "CChicken": { + "m_AttributeManager": 3016, + "m_BlockDirectionTimer": 12504, + "m_OriginalOwnerXuidHigh": 3732, + "m_OriginalOwnerXuidLow": 3728, + "m_activity": 3828, + "m_activityTimer": 3832, + "m_bInJump": 4012, + "m_collisionStuckTimer": 3800, + "m_flActiveFollowStartTime": 12428, + "m_flLastJumpTime": 4008, + "m_flWhenZombified": 3936, + "m_fleeFrom": 3860, + "m_followMinuteTimer": 12432, + "m_hasBeenUsed": 3976, + "m_inhibitDoorTimer": 12240, + "m_inhibitObstacleAvoidanceTimer": 12384, + "m_isOnGround": 3824, + "m_isWaitingForLeader": 4013, + "m_jumpTimer": 3984, + "m_jumpedThisFrame": 3940, + "m_leader": 3944, + "m_moveRateThrottleTimer": 3864, + "m_repathTimer": 12216, + "m_reuseTimer": 3952, + "m_startleTimer": 3888, + "m_stuckAnchor": 3760, + "m_stuckTimer": 3776, + "m_turnRate": 3856, + "m_updateTimer": 3736, + "m_vecEggsPooped": 12472, + "m_vecLastEggPoopPosition": 12456, + "m_vecPathGoal": 12416, + "m_vocalizeTimer": 3912 + }, + "CCollisionProperty": { + "m_CollisionGroup": 94, + "m_collisionAttribute": 16, + "m_flBoundingRadius": 96, + "m_flCapsuleRadius": 172, + "m_nEnablePhysics": 95, + "m_nSolidType": 91, + "m_nSurroundType": 93, + "m_triggerBloat": 92, + "m_usSolidFlags": 90, + "m_vCapsuleCenter1": 148, + "m_vCapsuleCenter2": 160, + "m_vecMaxs": 76, + "m_vecMins": 64, + "m_vecSpecifiedSurroundingMaxs": 112, + "m_vecSpecifiedSurroundingMins": 100, + "m_vecSurroundingMaxs": 124, + "m_vecSurroundingMins": 136 + }, + "CColorCorrection": { + "m_MaxFalloff": 1240, + "m_MinFalloff": 1236, + "m_bClientSide": 1231, + "m_bEnabled": 1229, + "m_bExclusive": 1232, + "m_bMaster": 1230, + "m_bStartDisabled": 1228, + "m_flCurWeight": 1244, + "m_flFadeInDuration": 1200, + "m_flFadeOutDuration": 1204, + "m_flMaxWeight": 1224, + "m_flStartFadeInWeight": 1208, + "m_flStartFadeOutWeight": 1212, + "m_flTimeStartFadeIn": 1216, + "m_flTimeStartFadeOut": 1220, + "m_lookupFilename": 1760, + "m_netlookupFilename": 1248 + }, + "CColorCorrectionVolume": { + "m_FadeDuration": 2224, + "m_LastEnterTime": 2752, + "m_LastEnterWeight": 2748, + "m_LastExitTime": 2760, + "m_LastExitWeight": 2756, + "m_MaxWeight": 2220, + "m_Weight": 2232, + "m_bEnabled": 2216, + "m_bStartDisabled": 2228, + "m_lookupFilename": 2236 + }, + "CCommentaryAuto": { + "m_OnCommentaryMidGame": 1240, + "m_OnCommentaryMultiplayerSpawn": 1280, + "m_OnCommentaryNewGame": 1200 + }, + "CCommentarySystem": { + "m_bCheatState": 28, + "m_bCommentaryConvarsChanging": 17, + "m_bCommentaryEnabledMidGame": 18, + "m_bIsFirstSpawnGroupToLoad": 29, + "m_flNextTeleportTime": 20, + "m_hActiveCommentaryNode": 60, + "m_hCurrentNode": 56, + "m_hLastCommentaryNode": 64, + "m_iTeleportStage": 24, + "m_vecNodes": 72 + }, + "CConstantForceController": { + "m_angular": 24, + "m_angularSave": 48, + "m_linear": 12, + "m_linearSave": 36 + }, + "CConstraintAnchor": { + "m_massScale": 2352 + }, + "CCopyRecipientFilter": { + "m_Flags": 8, + "m_Recipients": 16 + }, + "CCredits": { + "m_OnCreditsDone": 1200, + "m_bRolledOutroCredits": 1240, + "m_flLogoLength": 1244 + }, + "CDZDoor": { + "m_bIsSecurityDoor": 3832, + "m_bPaidToUnlock": 3840, + "m_hSpawnPoint": 3836, + "m_nAttachmentIndex1": 3896, + "m_nAttachmentIndex2": 3897, + "m_nPlayDoorOpenSound": 3844 + }, + "CDamageRecord": { + "m_DamagerXuid": 72, + "m_PlayerDamager": 40, + "m_PlayerRecipient": 44, + "m_RecipientXuid": 80, + "m_bIsOtherEnemy": 104, + "m_hPlayerControllerDamager": 48, + "m_hPlayerControllerRecipient": 52, + "m_iActualHealthRemoved": 92, + "m_iDamage": 88, + "m_iLastBulletUpdate": 100, + "m_iNumHits": 96, + "m_killType": 105, + "m_szPlayerDamagerName": 56, + "m_szPlayerRecipientName": 64 + }, + "CDangerZone": { + "m_flBombLaunchTime": 1212, + "m_flExtraRadius": 1216, + "m_flExtraRadiusStartTime": 1220, + "m_flExtraRadiusTotalLerpTime": 1224, + "m_iWave": 1232, + "m_nDropOrder": 1228, + "m_nMyZoneIndex": 1236, + "m_nZoneNeighbors": 1240, + "m_vecDangerZoneOriginStartedAt": 1200 + }, + "CDangerZoneController": { + "m_DangerZones": 1236, + "m_bDangerZoneControllerEnabled": 1200, + "m_bFirstBombWarning": 1436, + "m_bMissionControlledExplosions": 1201, + "m_flFinalExpansionTime": 1232, + "m_flLastDangerZoneDamageTime": 1432, + "m_flLastDangerZoneStatusLogged": 1428, + "m_flStartTime": 1228, + "m_flWaveEndTimes": 1404, + "m_hTheFinalZone": 1424, + "m_numWaveRewardsGranted": 1440, + "m_pGasCanLaunchers": 1448, + "m_vecEndGameCircleEnd": 1216, + "m_vecEndGameCircleStart": 1204 + }, + "CDebugHistory": { + "m_nNpcEvents": 17648 + }, + "CDecoyProjectile": { + "m_decoyWeaponDefIndex": 2784, + "m_fExpireTime": 2772, + "m_shotsRemaining": 2768 + }, + "CDrone": { + "m_ActInjuredTimer": 3784, + "m_GroundCheckTimer": 3760, + "m_IntervalThinkTimer": 3864, + "m_WanderTimer": 3816, + "m_bDidDropOnRoofWarning": 3984, + "m_bDoIntervalThink": 3888, + "m_bHasAlwaysBeenInZone": 4000, + "m_bHovering": 3533, + "m_bInPlayArea": 3900, + "m_bPilotTakeoverAllowed": 3132, + "m_bQueuingOrders": 3584, + "m_bSelfDestructFire": 3992, + "m_bSelfDestructSpark": 3993, + "m_bUpgraded": 3952, + "m_bWasControlledByPlayer": 3532, + "m_flAvoidanceTime": 3948, + "m_flLastDroppedGrenadeAt": 3892, + "m_flLastKnownDistanceToDestination": 3648, + "m_flLastKnownGroundHeight": 3752, + "m_flLastKnownSpeed": 3628, + "m_flLastKnownWaypointAccuracy": 3652, + "m_flLastOrdersChangeTimestamp": 3588, + "m_flLastTimeSawAttackTarget": 3840, + "m_flLastUpdateTargetScanTime": 3528, + "m_flMaxSpeed": 3632, + "m_flPowerCutUntil": 3808, + "m_flRopeLength": 3980, + "m_flSelfDestructTime": 3988, + "m_flSpawnTimeStamp": 3896, + "m_flTimeArrivedAtMoveToEntity": 3932, + "m_hAttackTarget": 3856, + "m_hCargoOwner": 3956, + "m_hCurrentPilot": 3140, + "m_hDeliveryCargo": 3124, + "m_hLastKnownPilot": 3996, + "m_hMoveToThisEntity": 3120, + "m_hPlayerThatOrderedMe": 4008, + "m_hPotentialCargo": 3136, + "m_hRecentCargo": 3128, + "m_nJammedAmount": 4004, + "m_pStateSound": 3536, + "m_tCargoCollisionGroup": 3928, + "m_vecAvoidanceDir": 3936, + "m_vecCurrentDestination": 3636, + "m_vecGroundOffset": 3544, + "m_vecLastKnownAcceleration": 3592, + "m_vecLastKnownAngImpulse": 3616, + "m_vecLastKnownAttackTargetPosition": 3844, + "m_vecLastKnownMoveToEntityPosition": 3916, + "m_vecLastKnownVelocity": 3604, + "m_vecPlayerControlThrust": 3968, + "m_vecPositionHistory": 3704, + "m_vecSparsePositionHistory": 3680, + "m_vecSpawnPosition": 3904, + "m_vecTagIncrements": 3432, + "m_vecTagPositions": 3144, + "m_vecUnstuckQueue": 3728, + "m_vecWaypointQueue": 3656 + }, + "CDronegun": { + "m_bHasTarget": 2392, + "m_bVarInit": 2416, + "m_flDisorientEndTime": 2420, + "m_flLastShootTime": 2452, + "m_flLastSound1": 2456, + "m_flLastSound2": 2460, + "m_flLastSound3": 2464, + "m_hEnvGunfire": 2448, + "m_nAttachMuzzle": 2468, + "m_nPoseParamPitch": 2408, + "m_nPoseParamYaw": 2412, + "m_vecAttentionCurrent": 2396, + "m_vecAttentionTarget": 2368, + "m_vecTargetOffset": 2380 + }, + "CDynamicLight": { + "m_ActualFlags": 1792, + "m_Exponent": 1800, + "m_Flags": 1793, + "m_InnerAngle": 1804, + "m_LightStyle": 1794, + "m_On": 1795, + "m_OuterAngle": 1808, + "m_Radius": 1796, + "m_SpotRadius": 1812 + }, + "CDynamicProp": { + "m_OnAnimReachedEnd": 2904, + "m_OnAnimReachedStart": 2864, + "m_bAnimateOnServer": 2956, + "m_bCreateNavObstacle": 2736, + "m_bCreateNonSolid": 2962, + "m_bFiredStartEndOutput": 2960, + "m_bForceNpcExclude": 2961, + "m_bIsOverrideProp": 2963, + "m_bRandomizeCycle": 2957, + "m_bScriptedMovement": 2959, + "m_bStartDisabled": 2958, + "m_bUseAnimGraph": 2738, + "m_bUseHitboxesForRenderBox": 2737, + "m_glowColor": 2976, + "m_iInitialGlowState": 2964, + "m_iszDefaultAnim": 2944, + "m_nDefaultAnimLoopMode": 2952, + "m_nGlowRange": 2968, + "m_nGlowRangeMin": 2972, + "m_nGlowTeam": 2980, + "m_pOutputAnimBegun": 2744, + "m_pOutputAnimLoopCycleOver": 2824, + "m_pOutputAnimOver": 2784 + }, + "CEconEntity": { + "m_AttributeManager": 2512, + "m_OriginalOwnerXuidHigh": 3228, + "m_OriginalOwnerXuidLow": 3224, + "m_flFallbackWear": 3240, + "m_hOldProvidee": 3248, + "m_iOldOwnerClass": 3252, + "m_nFallbackPaintKit": 3232, + "m_nFallbackSeed": 3236, + "m_nFallbackStatTrak": 3244 + }, + "CEconItemAttribute": { + "m_bSetBonus": 64, + "m_flInitialValue": 56, + "m_flValue": 52, + "m_iAttributeDefinitionIndex": 48, + "m_nRefundableCurrency": 60 + }, + "CEconItemView": { + "m_AttributeList": 112, + "m_NetworkedDynamicAttributes": 208, + "m_bInitialized": 104, + "m_iAccountID": 88, + "m_iEntityLevel": 64, + "m_iEntityQuality": 60, + "m_iInventoryPosition": 92, + "m_iItemDefinitionIndex": 56, + "m_iItemID": 72, + "m_iItemIDHigh": 80, + "m_iItemIDLow": 84, + "m_szCustomName": 304, + "m_szCustomNameOverride": 465 + }, + "CEconWearable": { + "m_bAlwaysAllow": 3260, + "m_nForceSkin": 3256 + }, + "CEffectData": { + "m_fFlags": 99, + "m_flMagnitude": 68, + "m_flRadius": 72, + "m_flScale": 64, + "m_hEntity": 56, + "m_hOtherEntity": 60, + "m_iEffectName": 108, + "m_nAttachmentIndex": 100, + "m_nAttachmentName": 104, + "m_nColor": 98, + "m_nDamageType": 88, + "m_nEffectIndex": 80, + "m_nExplosionType": 110, + "m_nHitBox": 96, + "m_nMaterial": 94, + "m_nPenetrate": 92, + "m_nSurfaceProp": 76, + "m_vAngles": 44, + "m_vNormal": 32, + "m_vOrigin": 8, + "m_vStart": 20 + }, + "CEntityDissolve": { + "m_flFadeInLength": 1796, + "m_flFadeInStart": 1792, + "m_flFadeOutLength": 1812, + "m_flFadeOutModelLength": 1804, + "m_flFadeOutModelStart": 1800, + "m_flFadeOutStart": 1808, + "m_flStartTime": 1816, + "m_nDissolveType": 1820, + "m_nMagnitude": 1836, + "m_vDissolverOrigin": 1824 + }, + "CEntityFlame": { + "m_bCheapEffect": 1204, + "m_bUseHitboxes": 1212, + "m_flDirectDamagePerSecond": 1236, + "m_flHitboxFireScale": 1220, + "m_flLifetime": 1224, + "m_flSize": 1208, + "m_hAttacker": 1228, + "m_hEntAttached": 1200, + "m_iCustomDamageType": 1240, + "m_iDangerSound": 1232, + "m_iNumHitboxFires": 1216 + }, + "CEntityIdentity": { + "m_PathIndex": 64, + "m_designerName": 32, + "m_fDataObjectTypes": 60, + "m_flags": 48, + "m_name": 24, + "m_nameStringableIndex": 20, + "m_pNext": 96, + "m_pNextByClass": 112, + "m_pPrev": 88, + "m_pPrevByClass": 104, + "m_worldGroupId": 56 + }, + "CEntityInstance": { + "m_CScriptComponent": 40, + "m_iszPrivateVScripts": 8, + "m_pEntity": 16 + }, + "CEnvBeam": { + "m_OnTouchedByEntity": 2080, + "m_TouchType": 2048, + "m_active": 1952, + "m_boltWidth": 1988, + "m_frameStart": 2016, + "m_hFilter": 2064, + "m_iFilterName": 2056, + "m_iszDecal": 2072, + "m_iszEndEntity": 1976, + "m_iszSpriteName": 2008, + "m_iszStartEntity": 1968, + "m_life": 1984, + "m_noiseAmplitude": 1992, + "m_radius": 2044, + "m_restrike": 2000, + "m_speed": 1996, + "m_spriteTexture": 1960, + "m_vEndPointRelative": 2032, + "m_vEndPointWorld": 2020 + }, + "CEnvBeverage": { + "m_CanInDispenser": 1200, + "m_nBeverageType": 1204 + }, + "CEnvCombinedLightProbeVolume": { + "m_Color": 5504, + "m_LightGroups": 5584, + "m_bCustomCubemapTexture": 5520, + "m_bEnabled": 5673, + "m_bMoveable": 5592, + "m_bStartDisabled": 5608, + "m_flBrightness": 5508, + "m_flEdgeFadeDist": 5612, + "m_hCubemapTexture": 5512, + "m_hLightProbeDirectLightIndicesTexture": 5536, + "m_hLightProbeDirectLightScalarsTexture": 5544, + "m_hLightProbeDirectLightShadowsTexture": 5552, + "m_hLightProbeTexture": 5528, + "m_nEnvCubeMapArrayIndex": 5600, + "m_nHandshake": 5596, + "m_nLightProbeAtlasX": 5640, + "m_nLightProbeAtlasY": 5644, + "m_nLightProbeAtlasZ": 5648, + "m_nLightProbeSizeX": 5628, + "m_nLightProbeSizeY": 5632, + "m_nLightProbeSizeZ": 5636, + "m_nPriority": 5604, + "m_vBoxMaxs": 5572, + "m_vBoxMins": 5560, + "m_vEdgeFadeDists": 5616 + }, + "CEnvCubemap": { + "m_LightGroups": 1480, + "m_bCopyDiffuseFromDefaultCubemap": 1528, + "m_bCustomCubemapTexture": 1448, + "m_bDefaultEnvMap": 1525, + "m_bDefaultSpecEnvMap": 1526, + "m_bEnabled": 1544, + "m_bIndoorCubeMap": 1527, + "m_bMoveable": 1488, + "m_bStartDisabled": 1524, + "m_flDiffuseScale": 1520, + "m_flEdgeFadeDist": 1504, + "m_flInfluenceRadius": 1452, + "m_hCubemapTexture": 1440, + "m_nEnvCubeMapArrayIndex": 1496, + "m_nHandshake": 1492, + "m_nPriority": 1500, + "m_vBoxProjectMaxs": 1468, + "m_vBoxProjectMins": 1456, + "m_vEdgeFadeDists": 1508 + }, + "CEnvCubemapFog": { + "m_bActive": 1236, + "m_bFirstTime": 1273, + "m_bHasHeightFogEnd": 1272, + "m_bHeightFogEnabled": 1212, + "m_bStartDisabled": 1237, + "m_flEndDistance": 1200, + "m_flFogFalloffExponent": 1208, + "m_flFogHeightEnd": 1220, + "m_flFogHeightExponent": 1228, + "m_flFogHeightStart": 1224, + "m_flFogHeightWidth": 1216, + "m_flFogMaxOpacity": 1240, + "m_flLODBias": 1232, + "m_flStartDistance": 1204, + "m_hFogCubemapTexture": 1264, + "m_hSkyMaterial": 1248, + "m_iszSkyEntity": 1256, + "m_nCubemapSourceType": 1244 + }, + "CEnvDecal": { + "m_bProjectOnCharacters": 1817, + "m_bProjectOnWater": 1818, + "m_bProjectOnWorld": 1816, + "m_flDepth": 1808, + "m_flDepthSortBias": 1820, + "m_flHeight": 1804, + "m_flWidth": 1800, + "m_hDecalMaterial": 1792, + "m_nRenderOrder": 1812 + }, + "CEnvDetailController": { + "m_flFadeEndDist": 1204, + "m_flFadeStartDist": 1200 + }, + "CEnvEntityIgniter": { + "m_flLifetime": 1200 + }, + "CEnvEntityMaker": { + "m_angPostSpawnDirection": 1244, + "m_bPostSpawnUseAngles": 1264, + "m_flPostSpawnDirectionVariance": 1256, + "m_flPostSpawnSpeed": 1260, + "m_hCurrentBlocker": 1228, + "m_hCurrentInstance": 1224, + "m_iszTemplate": 1272, + "m_pOutputOnFailedSpawn": 1320, + "m_pOutputOnSpawned": 1280, + "m_vecBlockerOrigin": 1232, + "m_vecEntityMaxs": 1212, + "m_vecEntityMins": 1200 + }, + "CEnvExplosion": { + "m_flDamageForce": 1812, + "m_flInnerRadius": 1804, + "m_flPlayerDamage": 1796, + "m_hEntityIgnore": 1872, + "m_hInflictor": 1816, + "m_iClassIgnore": 1856, + "m_iClassIgnore2": 1860, + "m_iCustomDamageType": 1820, + "m_iMagnitude": 1792, + "m_iRadiusOverride": 1800, + "m_iszCustomEffectName": 1840, + "m_iszCustomSoundName": 1848, + "m_iszEntityIgnoreName": 1864, + "m_iszExplosionType": 1832, + "m_spriteScale": 1808 + }, + "CEnvFade": { + "m_Duration": 1204, + "m_HoldDuration": 1208, + "m_OnBeginFade": 1216, + "m_fadeColor": 1200 + }, + "CEnvFireSensor": { + "m_OnHeatLevelEnd": 1264, + "m_OnHeatLevelStart": 1224, + "m_bEnabled": 1200, + "m_bHeatAtLevel": 1201, + "m_levelTime": 1216, + "m_radius": 1204, + "m_targetLevel": 1208, + "m_targetTime": 1212 + }, + "CEnvFireSource": { + "m_bEnabled": 1200, + "m_damage": 1208, + "m_radius": 1204 + }, + "CEnvGasCanister": { + "m_OnImpacted": 2408, + "m_OnLaunched": 2368, + "m_OnOpened": 2448, + "m_bDoImpactEffects": 2609, + "m_bHasDetonated": 2365, + "m_bInSkybox": 2608, + "m_bIncomingSoundStarted": 2364, + "m_bLanded": 2352, + "m_bLaunched": 2366, + "m_bLaunchedFromWithinWorld": 2572, + "m_flDamage": 2360, + "m_flDamageRadius": 2356, + "m_flFlightSpeed": 2552, + "m_flFlightTime": 2548, + "m_flHorizSpeed": 2568, + "m_flInitialZSpeed": 2560, + "m_flLaunchHeight": 2620, + "m_flLaunchTime": 2556, + "m_flSkyboxScale": 2604, + "m_flWorldEnterTime": 2588, + "m_flZAcceleration": 2564, + "m_hSkyboxCopy": 2616, + "m_nMyZoneIndex": 2612, + "m_vecDirection": 2524, + "m_vecEnterWorldPosition": 2512, + "m_vecImpactPosition": 2488, + "m_vecParabolaDirection": 2576, + "m_vecSkyboxOrigin": 2592, + "m_vecStartAngles": 2536, + "m_vecStartPosition": 2500 + }, + "CEnvGlobal": { + "m_counter": 1256, + "m_globalstate": 1240, + "m_initialstate": 1252, + "m_outCounter": 1200, + "m_triggermode": 1248 + }, + "CEnvHudHint": { + "m_iszMessage": 1200 + }, + "CEnvInstructorHint": { + "m_Color": 1264, + "m_bAllowNoDrawTarget": 1304, + "m_bAutoStart": 1305, + "m_bForceCaption": 1281, + "m_bLocalPlayerOnly": 1306, + "m_bNoOffscreen": 1280, + "m_bStatic": 1279, + "m_bSuppressRest": 1288, + "m_fIconOffset": 1268, + "m_fRange": 1272, + "m_iAlphaOption": 1277, + "m_iDisplayLimit": 1228, + "m_iInstanceType": 1284, + "m_iPulseOption": 1276, + "m_iShakeOption": 1278, + "m_iTimeout": 1224, + "m_iszActivatorCaption": 1256, + "m_iszBinding": 1296, + "m_iszCaption": 1248, + "m_iszHintTargetEntity": 1216, + "m_iszIcon_Offscreen": 1240, + "m_iszIcon_Onscreen": 1232, + "m_iszName": 1200, + "m_iszReplace_Key": 1208 + }, + "CEnvInstructorVRHint": { + "m_flHeightOffset": 1260, + "m_iAttachType": 1256, + "m_iLayoutFileType": 1240, + "m_iTimeout": 1216, + "m_iszCaption": 1224, + "m_iszCustomLayoutFile": 1248, + "m_iszHintTargetEntity": 1208, + "m_iszName": 1200, + "m_iszStartSound": 1232 + }, + "CEnvLaser": { + "m_firePosition": 1976, + "m_flStartFrame": 1988, + "m_iszLaserTarget": 1952, + "m_iszSpriteName": 1968, + "m_pSprite": 1960 + }, + "CEnvLightProbeVolume": { + "m_LightGroups": 5320, + "m_bEnabled": 5377, + "m_bMoveable": 5328, + "m_bStartDisabled": 5340, + "m_hLightProbeDirectLightIndicesTexture": 5272, + "m_hLightProbeDirectLightScalarsTexture": 5280, + "m_hLightProbeDirectLightShadowsTexture": 5288, + "m_hLightProbeTexture": 5264, + "m_nHandshake": 5332, + "m_nLightProbeAtlasX": 5356, + "m_nLightProbeAtlasY": 5360, + "m_nLightProbeAtlasZ": 5364, + "m_nLightProbeSizeX": 5344, + "m_nLightProbeSizeY": 5348, + "m_nLightProbeSizeZ": 5352, + "m_nPriority": 5336, + "m_vBoxMaxs": 5308, + "m_vBoxMins": 5296 + }, + "CEnvMicrophone": { + "m_OnHeardSound": 1344, + "m_OnRoutedSound": 1304, + "m_SoundLevel": 1264, + "m_bAvoidFeedback": 1236, + "m_bDisabled": 1200, + "m_flMaxRange": 1220, + "m_flSensitivity": 1212, + "m_flSmoothFactor": 1216, + "m_hListenFilter": 1256, + "m_hMeasureTarget": 1204, + "m_hSpeaker": 1232, + "m_iLastRoutedFrame": 1640, + "m_iSpeakerDSPPreset": 1240, + "m_iszListenFilter": 1248, + "m_iszSpeakerName": 1224, + "m_nSoundMask": 1208, + "m_szLastSound": 1384 + }, + "CEnvMuzzleFlash": { + "m_flScale": 1200, + "m_iszParentAttachment": 1208 + }, + "CEnvParticleGlow": { + "m_ColorTint": 3204, + "m_flAlphaScale": 3192, + "m_flRadiusScale": 3196, + "m_flSelfIllumScale": 3200, + "m_hTextureOverride": 3208 + }, + "CEnvProjectedTexture": { + "m_LightColor": 1816, + "m_SpotlightTextureName": 1864, + "m_bAlwaysUpdate": 1797, + "m_bCameraSpace": 1808, + "m_bEnableShadows": 1804, + "m_bFlipHorizontal": 2400, + "m_bLightOnlyTarget": 1806, + "m_bLightWorld": 1807, + "m_bSimpleProjection": 1805, + "m_bState": 1796, + "m_bVolumetric": 1832, + "m_flAmbient": 1860, + "m_flBrightnessScale": 1812, + "m_flColorTransitionTime": 1856, + "m_flFarZ": 2388, + "m_flFlashlightTime": 1840, + "m_flIntensity": 1820, + "m_flLightFOV": 1800, + "m_flLinearAttenuation": 1824, + "m_flNearZ": 2384, + "m_flNoiseStrength": 1836, + "m_flPlaneOffset": 1848, + "m_flProjectionSize": 2392, + "m_flQuadraticAttenuation": 1828, + "m_flRotation": 2396, + "m_flVolumetricIntensity": 1852, + "m_hTargetEntity": 1792, + "m_nNumPlanes": 1844, + "m_nShadowQuality": 2380, + "m_nSpotlightTextureFrame": 2376 + }, + "CEnvScreenOverlay": { + "m_bIsActive": 1328, + "m_flOverlayTimes": 1280, + "m_flStartTime": 1320, + "m_iDesiredOverlay": 1324, + "m_iszOverlayNames": 1200 + }, + "CEnvShake": { + "m_Amplitude": 1208, + "m_Duration": 1216, + "m_Frequency": 1212, + "m_Radius": 1220, + "m_currentAmp": 1232, + "m_limitToEntity": 1200, + "m_maxForce": 1236, + "m_nextShake": 1228, + "m_shakeCallback": 1256, + "m_stopTime": 1224 + }, + "CEnvSky": { + "m_bEnabled": 1844, + "m_bStartDisabled": 1808, + "m_flBrightnessScale": 1820, + "m_flFogMaxEnd": 1840, + "m_flFogMaxStart": 1836, + "m_flFogMinEnd": 1832, + "m_flFogMinStart": 1828, + "m_hSkyMaterial": 1792, + "m_hSkyMaterialLightingOnly": 1800, + "m_nFogType": 1824, + "m_vTintColor": 1809, + "m_vTintColorLightingOnly": 1813 + }, + "CEnvSoundscape": { + "m_OnPlay": 1200, + "m_bDisabled": 1348, + "m_bOverrideWithEvent": 1264, + "m_flRadius": 1240, + "m_hProxySoundscape": 1344, + "m_positionNames": 1280, + "m_soundEventHash": 1276, + "m_soundEventName": 1256, + "m_soundscapeEntityListId": 1272, + "m_soundscapeIndex": 1268, + "m_soundscapeName": 1248 + }, + "CEnvSoundscapeProxy": { + "m_MainSoundscapeName": 1352 + }, + "CEnvSpark": { + "m_OnSpark": 1216, + "m_flDelay": 1200, + "m_nMagnitude": 1204, + "m_nTrailLength": 1208, + "m_nType": 1212 + }, + "CEnvSplash": { + "m_flScale": 1200 + }, + "CEnvTilt": { + "m_Duration": 1200, + "m_Radius": 1204, + "m_TiltTime": 1208, + "m_stopTime": 1212 + }, + "CEnvTracer": { + "m_flDelay": 1212, + "m_vecEnd": 1200 + }, + "CEnvViewPunch": { + "m_angViewPunch": 1204, + "m_flRadius": 1200 + }, + "CEnvVolumetricFogController": { + "m_bActive": 1264, + "m_bEnableIndirect": 1305, + "m_bFirstTime": 1324, + "m_bIsMaster": 1306, + "m_bStartDisabled": 1304, + "m_flAnisotropy": 1204, + "m_flDefaultAnisotropy": 1292, + "m_flDefaultDrawDistance": 1300, + "m_flDefaultScattering": 1296, + "m_flDrawDistance": 1212, + "m_flFadeInEnd": 1220, + "m_flFadeInStart": 1216, + "m_flFadeSpeed": 1208, + "m_flIndirectStrength": 1224, + "m_flScattering": 1200, + "m_flStartAnisoTime": 1268, + "m_flStartAnisotropy": 1280, + "m_flStartDrawDistance": 1288, + "m_flStartDrawDistanceTime": 1276, + "m_flStartScatterTime": 1272, + "m_flStartScattering": 1284, + "m_hFogIndirectTexture": 1312, + "m_nForceRefreshCount": 1320, + "m_nIndirectTextureDimX": 1228, + "m_nIndirectTextureDimY": 1232, + "m_nIndirectTextureDimZ": 1236, + "m_vBoxMaxs": 1252, + "m_vBoxMins": 1240 + }, + "CEnvVolumetricFogVolume": { + "m_bActive": 1200, + "m_bStartDisabled": 1228, + "m_flFalloffExponent": 1240, + "m_flStrength": 1232, + "m_nFalloffShape": 1236, + "m_vBoxMaxs": 1216, + "m_vBoxMins": 1204 + }, + "CEnvWind": { + "m_EnvWindShared": 1200 + }, + "CEnvWindShared": { + "m_CurrentSwayVector": 80, + "m_OnGustEnd": 152, + "m_OnGustStart": 112, + "m_PrevSwayVector": 92, + "m_bGusting": 212, + "m_currentWindVector": 68, + "m_flAveWindSpeed": 208, + "m_flGustDuration": 36, + "m_flInitialWindSpeed": 108, + "m_flMaxGustDelay": 32, + "m_flMinGustDelay": 28, + "m_flSimTime": 200, + "m_flStartTime": 8, + "m_flSwayTime": 196, + "m_flSwitchTime": 204, + "m_flVariationTime": 192, + "m_flWindAngleVariation": 216, + "m_flWindSpeed": 64, + "m_flWindSpeedVariation": 220, + "m_iEntIndex": 224, + "m_iGustDirChange": 40, + "m_iInitialWindDir": 104, + "m_iMaxGust": 26, + "m_iMaxWind": 18, + "m_iMinGust": 24, + "m_iMinWind": 16, + "m_iWindDir": 60, + "m_iWindSeed": 12, + "m_iszGustSound": 56, + "m_location": 44, + "m_windRadius": 20 + }, + "CEnvWindShared::WindAveEvent_t": { + "m_flAveWindSpeed": 4, + "m_flStartWindSpeed": 0 + }, + "CEnvWindShared::WindVariationEvent_t": { + "m_flWindAngleVariation": 0, + "m_flWindSpeedVariation": 4 + }, + "CFilterAttributeInt": { + "m_sAttributeName": 1288 + }, + "CFilterClass": { + "m_iFilterClass": 1288 + }, + "CFilterContext": { + "m_iFilterContext": 1288 + }, + "CFilterEnemy": { + "m_flOuterRadius": 1300, + "m_flRadius": 1296, + "m_iszEnemyName": 1288, + "m_iszPlayerName": 1312, + "m_nMaxSquadmatesPerEnemy": 1304 + }, + "CFilterMassGreater": { + "m_fFilterMass": 1288 + }, + "CFilterModel": { + "m_iFilterModel": 1288 + }, + "CFilterMultiple": { + "m_hFilter": 1376, + "m_iFilterName": 1296, + "m_nFilterCount": 1416, + "m_nFilterType": 1288 + }, + "CFilterName": { + "m_iFilterName": 1288 + }, + "CFilterProximity": { + "m_flRadius": 1288 + }, + "CFire": { + "m_OnExtinguished": 1896, + "m_OnIgnited": 1856, + "m_bDidActivate": 1850, + "m_bEnabled": 1848, + "m_bStartDisabled": 1849, + "m_flAttackTime": 1844, + "m_flDamageScale": 1832, + "m_flDamageTime": 1808, + "m_flFireSize": 1816, + "m_flFuel": 1804, + "m_flHeatAbsorb": 1828, + "m_flHeatLevel": 1824, + "m_flLastHeatLevel": 1840, + "m_flLastNavUpdateTime": 1820, + "m_flMaxHeat": 1836, + "m_hEffect": 1792, + "m_hOwner": 1796, + "m_lastDamage": 1812, + "m_nFireType": 1800 + }, + "CFireSmoke": { + "m_nFlameFromAboveModelIndex": 1220, + "m_nFlameModelIndex": 1216 + }, + "CFiringModeFloat": { + "m_flValues": 0 + }, + "CFiringModeInt": { + "m_nValues": 0 + }, + "CFish": { + "m_angle": 2372, + "m_angleChange": 2376, + "m_avoidRange": 2436, + "m_calmSpeed": 2428, + "m_desiredSpeed": 2424, + "m_disperseTimer": 2544, + "m_forward": 2380, + "m_goTimer": 2472, + "m_id": 2356, + "m_moveTimer": 2496, + "m_panicSpeed": 2432, + "m_panicTimer": 2520, + "m_perp": 2392, + "m_pool": 2352, + "m_poolOrigin": 2404, + "m_proximityTimer": 2568, + "m_speed": 2420, + "m_turnClockwise": 2464, + "m_turnTimer": 2440, + "m_visible": 2592, + "m_waterLevel": 2416, + "m_x": 2360, + "m_y": 2364, + "m_z": 2368 + }, + "CFishPool": { + "m_fishCount": 1216, + "m_fishes": 1240, + "m_isDormant": 1232, + "m_maxRange": 1220, + "m_swimDepth": 1224, + "m_visTimer": 1264, + "m_waterLevel": 1228 + }, + "CFists": { + "m_bDelayedHardPunchIncoming": 3732, + "m_bDestroyAfterTaunt": 3733, + "m_bPlayingUninterruptableAct": 3712, + "m_bRestorePrevWep": 3720, + "m_hWeaponBeforePrevious": 3724, + "m_hWeaponPrevious": 3728, + "m_nUninterruptableActivity": 3716 + }, + "CFlashbangProjectile": { + "m_flTimeToDetonate": 2760, + "m_numOpponentsHit": 2764, + "m_numTeammatesHit": 2765 + }, + "CFogController": { + "m_bUseAngles": 1304, + "m_fog": 1200, + "m_iChangedVariables": 1308 + }, + "CFogTrigger": { + "m_fog": 2216 + }, + "CFogVolume": { + "m_bDisabled": 1824, + "m_bInFogVolumesList": 1825, + "m_colorCorrectionName": 1808, + "m_fogName": 1792, + "m_postProcessName": 1800 + }, + "CFootstepControl": { + "m_destination": 2224, + "m_source": 2216 + }, + "CFuncBrush": { + "m_bInvertExclusion": 1816, + "m_bScriptedMovement": 1817, + "m_bSolidBsp": 1800, + "m_iDisabled": 1796, + "m_iSolidity": 1792, + "m_iszExcludedClass": 1808 + }, + "CFuncConveyor": { + "m_angMoveEntitySpace": 1804, + "m_flTargetSpeed": 1828, + "m_flTransitionDurationSeconds": 1800, + "m_flTransitionStartSpeed": 1840, + "m_hConveyorModels": 1848, + "m_nTransitionDurationTicks": 1836, + "m_nTransitionStartTick": 1832, + "m_szConveyorModels": 1792, + "m_vecMoveDirEntitySpace": 1816 + }, + "CFuncElectrifiedVolume": { + "m_EffectInterpenetrateName": 1832, + "m_EffectName": 1824, + "m_EffectZapName": 1840, + "m_iszEffectSource": 1848 + }, + "CFuncInteractionLayerClip": { + "m_bDisabled": 1792, + "m_iszInteractsAs": 1800, + "m_iszInteractsWith": 1808 + }, + "CFuncLadder": { + "m_Dismounts": 1808, + "m_OnPlayerGotOffLadder": 1928, + "m_OnPlayerGotOnLadder": 1888, + "m_bDisabled": 1872, + "m_bFakeLadder": 1873, + "m_bHasSlack": 1874, + "m_flAutoRideSpeed": 1868, + "m_surfacePropName": 1880, + "m_vecLadderDir": 1792, + "m_vecLocalTop": 1832, + "m_vecPlayerMountPositionBottom": 1856, + "m_vecPlayerMountPositionTop": 1844 + }, + "CFuncMonitor": { + "m_bDraw3DSkybox": 1853, + "m_bEnabled": 1852, + "m_bRenderShadows": 1836, + "m_bStartEnabled": 1854, + "m_bUseUniqueColorTarget": 1837, + "m_brushModelName": 1840, + "m_hTargetCamera": 1848, + "m_nResolutionEnum": 1832, + "m_targetCamera": 1824 + }, + "CFuncMoveLinear": { + "m_OnFullyClosed": 2040, + "m_OnFullyOpen": 2000, + "m_angMoveEntitySpace": 1924, + "m_authoredPosition": 1920, + "m_bCreateMovableNavMesh": 2080, + "m_bCreateNavObstacle": 2081, + "m_currentSound": 1968, + "m_flBlockDamage": 1976, + "m_flMoveDistance": 1984, + "m_flStartPosition": 1980, + "m_soundStart": 1952, + "m_soundStop": 1960, + "m_vecMoveDirParentSpace": 1936 + }, + "CFuncNavBlocker": { + "m_bDisabled": 1792, + "m_nBlockedTeamNumber": 1796 + }, + "CFuncNavObstruction": { + "m_bDisabled": 1800 + }, + "CFuncPlat": { + "m_sNoise": 1960 + }, + "CFuncPlatRot": { + "m_end": 1968, + "m_start": 1980 + }, + "CFuncRotating": { + "m_NoiseRunning": 1832, + "m_angStart": 1852, + "m_bReversed": 1840, + "m_bStopAtStartPos": 1864, + "m_flAttenuation": 1808, + "m_flBlockDamage": 1824, + "m_flFanFriction": 1804, + "m_flMaxSpeed": 1820, + "m_flTargetSpeed": 1816, + "m_flTimeScale": 1828, + "m_flVolume": 1812, + "m_vecClientAngles": 1880, + "m_vecClientOrigin": 1868, + "m_vecMoveAng": 1792 + }, + "CFuncShatterglass": { + "m_OnBroken": 2088, + "m_PanelSize": 1952, + "m_bBreakShardless": 1997, + "m_bBreakSilent": 1996, + "m_bBroken": 1998, + "m_bGlassInFrame": 2001, + "m_bGlassNavIgnore": 2000, + "m_bHasRateLimitedShards": 1999, + "m_bStartBroken": 2002, + "m_flGlassThickness": 1988, + "m_flInitAtTime": 1984, + "m_flLastCleanupTime": 1980, + "m_flLastShatterSoundEmitTime": 1976, + "m_flSpawnInvulnerability": 1992, + "m_hConcreteMaterialEdgeCaps": 1816, + "m_hConcreteMaterialEdgeFace": 1808, + "m_hConcreteMaterialEdgeFins": 1824, + "m_hGlassMaterialDamaged": 1792, + "m_hGlassMaterialUndamaged": 1800, + "m_iInitialDamageType": 2003, + "m_iSurfaceType": 2129, + "m_matPanelTransform": 1832, + "m_matPanelTransformWsTemp": 1880, + "m_nNumShardsEverCreated": 1972, + "m_szDamagePositioningEntityName01": 2008, + "m_szDamagePositioningEntityName02": 2016, + "m_szDamagePositioningEntityName03": 2024, + "m_szDamagePositioningEntityName04": 2032, + "m_vExtraDamagePositions": 2064, + "m_vInitialDamagePositions": 2040, + "m_vecPanelNormalWs": 1960, + "m_vecShatterGlassShards": 1928 + }, + "CFuncTankTrain": { + "m_OnDeath": 2128 + }, + "CFuncTimescale": { + "m_flAcceleration": 1204, + "m_flBlendDeltaMultiplier": 1212, + "m_flDesiredTimescale": 1200, + "m_flMinBlendRate": 1208, + "m_isStarted": 1216 + }, + "CFuncTrackChange": { + "m_code": 2040, + "m_targetState": 2044, + "m_trackBottom": 2000, + "m_trackBottomName": 2024, + "m_trackTop": 1992, + "m_trackTopName": 2016, + "m_train": 2008, + "m_trainName": 2032, + "m_use": 2048 + }, + "CFuncTrackTrain": { + "m_OnArrivedAtDestinationNode": 2056, + "m_OnNext": 2016, + "m_OnStart": 1976, + "m_angPrev": 1812, + "m_bAccelToSpeed": 2116, + "m_bManualSpeedChanges": 2096, + "m_controlMaxs": 1836, + "m_controlMins": 1824, + "m_dir": 1888, + "m_eOrientationType": 1956, + "m_eVelocityType": 1960, + "m_flAccelSpeed": 2108, + "m_flBank": 1868, + "m_flBlockDamage": 1876, + "m_flDecelSpeed": 2112, + "m_flDesiredSpeed": 2100, + "m_flMoveSoundMaxDuration": 1940, + "m_flMoveSoundMaxPitch": 1952, + "m_flMoveSoundMinDuration": 1936, + "m_flMoveSoundMinPitch": 1948, + "m_flNextMPSoundTime": 2124, + "m_flNextMoveSoundTime": 1944, + "m_flSpeedChangeTime": 2104, + "m_flTimeScale": 2120, + "m_flVolume": 1864, + "m_height": 1880, + "m_iszSoundMove": 1896, + "m_iszSoundMovePing": 1904, + "m_iszSoundStart": 1912, + "m_iszSoundStop": 1920, + "m_lastBlockPos": 1848, + "m_lastBlockTick": 1860, + "m_length": 1796, + "m_maxSpeed": 1884, + "m_oldSpeed": 1872, + "m_ppath": 1792, + "m_strPathTarget": 1928, + "m_vPosPrev": 1800 + }, + "CFuncTrain": { + "m_activated": 1964, + "m_flBlockDamage": 1972, + "m_flNextBlockTime": 1976, + "m_hCurrentTarget": 1960, + "m_hEnemy": 1968, + "m_iszLastTarget": 1984 + }, + "CFuncVPhysicsClip": { + "m_bDisabled": 1792 + }, + "CFuncWall": { + "m_nState": 1792 + }, + "CFuncWater": { + "m_BuoyancyHelper": 1792 + }, + "CGameChoreoServices": { + "m_choreoState": 20, + "m_flTimeStartedState": 24, + "m_hOwner": 8, + "m_hScriptedSequence": 12, + "m_scriptState": 16 + }, + "CGameGibManager": { + "m_bAllowNewGibs": 1232, + "m_iCurrentMaxPieces": 1236, + "m_iLastFrame": 1244, + "m_iMaxPieces": 1240 + }, + "CGamePlayerEquip": { + "m_weaponCount": 2064, + "m_weaponNames": 1808 + }, + "CGamePlayerZone": { + "m_OnPlayerInZone": 1800, + "m_OnPlayerOutZone": 1840, + "m_PlayersInCount": 1880, + "m_PlayersOutCount": 1920 + }, + "CGameRules": { + "m_nQuestPhase": 136, + "m_szQuestName": 8 + }, + "CGameSceneNode": { + "m_angAbsRotation": 212, + "m_angRotation": 184, + "m_bBoneMergeFlex": 0, + "m_bDebugAbsOriginChanges": 230, + "m_bDirtyBoneMergeBoneToRoot": 0, + "m_bDirtyBoneMergeInfo": 0, + "m_bDirtyHierarchy": 0, + "m_bDormant": 231, + "m_bForceParentToBeNetworked": 232, + "m_bNetworkedAnglesChanged": 0, + "m_bNetworkedPositionChanged": 0, + "m_bNetworkedScaleChanged": 0, + "m_bNotifyBoneTransformsChanged": 0, + "m_bWillBeCallingPostDataUpdate": 0, + "m_flAbsScale": 224, + "m_flScale": 196, + "m_flZOffset": 308, + "m_hParent": 112, + "m_hierarchyAttachName": 304, + "m_nDoNotSetAnimTimeInInvalidatePhysicsCount": 237, + "m_nHierarchicalDepth": 235, + "m_nHierarchyType": 236, + "m_nLatchAbsOrigin": 0, + "m_nParentAttachmentOrBone": 228, + "m_name": 240, + "m_nodeToWorld": 16, + "m_pChild": 64, + "m_pNextSibling": 72, + "m_pOwner": 48, + "m_pParent": 56, + "m_vRenderOrigin": 312, + "m_vecAbsOrigin": 200, + "m_vecOrigin": 128 + }, + "CGameSceneNodeHandle": { + "m_hOwner": 8, + "m_name": 12 + }, + "CGameScriptedMoveData": { + "m_angCurrent": 48, + "m_angDst": 36, + "m_angSrc": 24, + "m_bActive": 73, + "m_bIgnoreCollisions": 88, + "m_bIgnoreRotation": 75, + "m_bSuccess": 80, + "m_bTeleportOnEnd": 74, + "m_flAngRate": 60, + "m_flDuration": 64, + "m_flStartTime": 68, + "m_nForcedCrouchState": 84, + "m_nPrevMoveType": 72, + "m_nType": 76, + "m_vDest": 0, + "m_vSrc": 12 + }, + "CGameText": { + "m_iszMessage": 1808, + "m_textParms": 1816 + }, + "CGameWeaponManager": { + "m_ManagedNonWeapons": 1232, + "m_bExpectingWeapon": 1224, + "m_flAmmoMod": 1220, + "m_iMaxPieces": 1216, + "m_iszWeaponName": 1200 + }, + "CGenericConstraint": { + "m_NotifyForceReachedX": 1472, + "m_NotifyForceReachedY": 1512, + "m_NotifyForceReachedZ": 1552, + "m_bAxisNotifiedX": 1416, + "m_bAxisNotifiedY": 1417, + "m_bAxisNotifiedZ": 1418, + "m_flAngularDampingRatioX": 1444, + "m_flAngularDampingRatioY": 1448, + "m_flAngularDampingRatioZ": 1452, + "m_flAngularFrequencyX": 1432, + "m_flAngularFrequencyY": 1436, + "m_flAngularFrequencyZ": 1440, + "m_flBreakAfterTimeStartTimeX": 1356, + "m_flBreakAfterTimeStartTimeY": 1360, + "m_flBreakAfterTimeStartTimeZ": 1364, + "m_flBreakAfterTimeThresholdX": 1368, + "m_flBreakAfterTimeThresholdY": 1372, + "m_flBreakAfterTimeThresholdZ": 1376, + "m_flBreakAfterTimeX": 1344, + "m_flBreakAfterTimeY": 1348, + "m_flBreakAfterTimeZ": 1352, + "m_flLinearDampingRatioX": 1320, + "m_flLinearDampingRatioY": 1324, + "m_flLinearDampingRatioZ": 1328, + "m_flLinearFrequencyX": 1308, + "m_flLinearFrequencyY": 1312, + "m_flLinearFrequencyZ": 1316, + "m_flMaxAngularImpulseX": 1456, + "m_flMaxAngularImpulseY": 1460, + "m_flMaxAngularImpulseZ": 1464, + "m_flMaxLinearImpulseX": 1332, + "m_flMaxLinearImpulseY": 1336, + "m_flMaxLinearImpulseZ": 1340, + "m_flNotifyForceLastTimeX": 1404, + "m_flNotifyForceLastTimeY": 1408, + "m_flNotifyForceLastTimeZ": 1412, + "m_flNotifyForceMinTimeX": 1392, + "m_flNotifyForceMinTimeY": 1396, + "m_flNotifyForceMinTimeZ": 1400, + "m_flNotifyForceX": 1380, + "m_flNotifyForceY": 1384, + "m_flNotifyForceZ": 1388, + "m_nAngularMotionX": 1420, + "m_nAngularMotionY": 1424, + "m_nAngularMotionZ": 1428, + "m_nLinearMotionX": 1296, + "m_nLinearMotionY": 1300, + "m_nLinearMotionZ": 1304 + }, + "CGlowProperty": { + "m_bEligibleForScreenHighlight": 80, + "m_bFlashing": 68, + "m_bGlowing": 81, + "m_fGlowColor": 8, + "m_flGlowStartTime": 76, + "m_flGlowTime": 72, + "m_glowColorOverride": 64, + "m_iGlowTeam": 52, + "m_iGlowType": 48, + "m_nGlowRange": 56, + "m_nGlowRangeMin": 60 + }, + "CGradientFog": { + "m_bGradientFogNeedsTextures": 1258, + "m_bHeightFogEnabled": 1216, + "m_bIsEnabled": 1257, + "m_bStartDisabled": 1256, + "m_flFadeTime": 1252, + "m_flFarZ": 1228, + "m_flFogEndDistance": 1212, + "m_flFogEndHeight": 1224, + "m_flFogFalloffExponent": 1236, + "m_flFogMaxOpacity": 1232, + "m_flFogStartDistance": 1208, + "m_flFogStartHeight": 1220, + "m_flFogStrength": 1248, + "m_flFogVerticalExponent": 1240, + "m_fogColor": 1244, + "m_hGradientFogTexture": 1200 + }, + "CGrassBurn": { + "m_flGrassBurnClearTime": 1200 + }, + "CGunTarget": { + "m_OnDeath": 1928, + "m_hTargetEnt": 1924, + "m_on": 1920 + }, + "CHandleTest": { + "m_Handle": 1200, + "m_bSendHandle": 1204 + }, + "CHintMessage": { + "m_args": 16, + "m_duration": 40, + "m_hintString": 8 + }, + "CHintMessageQueue": { + "m_messages": 16, + "m_pPlayerController": 40, + "m_tmMessageEnd": 8 + }, + "CHitboxComponent": { + "m_bvDisabledHitGroups": 36 + }, + "CHostage": { + "m_OnDroppedNotRescued": 2776, + "m_OnFirstPickedUp": 2736, + "m_OnHostageBeginGrab": 2696, + "m_OnRescued": 2816, + "m_accel": 2956, + "m_bHandsHaveBeenCut": 11437, + "m_bRemove": 2892, + "m_entitySpottedState": 2856, + "m_fLastGrabTime": 11444, + "m_flDropStartTime": 11480, + "m_flGrabSuccessTime": 11476, + "m_flRescueStartTime": 11472, + "m_hHostageGrabber": 11440, + "m_hasBeenUsed": 2952, + "m_inhibitDoorTimer": 11232, + "m_inhibitObstacleAvoidanceTimer": 11376, + "m_isAdjusted": 11436, + "m_isCrouching": 2969, + "m_isRescued": 2908, + "m_isRunning": 2968, + "m_isWaitingForLeader": 3000, + "m_jumpTimer": 2976, + "m_jumpedThisFrame": 2909, + "m_lastLeader": 2920, + "m_leader": 2916, + "m_nApproachRewardPayouts": 11484, + "m_nHostageSpawnRandomFactor": 2888, + "m_nHostageState": 2912, + "m_nPickupEventCount": 11488, + "m_nSpotRules": 2880, + "m_repathTimer": 11208, + "m_reuseTimer": 2928, + "m_uiHostageSpawnExclusionGroupMask": 2884, + "m_vecGrabbedPos": 11460, + "m_vecPositionWhenStartedDroppingToGround": 11448, + "m_vecSpawnGroundPos": 11492, + "m_vel": 2896, + "m_wiggleTimer": 11408 + }, + "CHostageExpresserShim": { + "m_pExpresser": 2672 + }, + "CInButtonState": { + "m_pButtonStates": 8 + }, + "CInferno": { + "m_BookkeepingTimer": 4864, + "m_BurnNormal": 3408, + "m_InitialSplashVelocity": 4804, + "m_NextSpreadTimer": 4888, + "m_activeTimer": 4840, + "m_bFireIsBurning": 3344, + "m_bInPostEffectTime": 4192, + "m_bWasCreatedInSmoke": 4200, + "m_damageRampTimer": 4768, + "m_damageTimer": 4744, + "m_extent": 4720, + "m_fireCount": 4176, + "m_fireParentXDelta": 2576, + "m_fireParentYDelta": 2832, + "m_fireParentZDelta": 3088, + "m_fireSpawnOffset": 4856, + "m_fireXDelta": 1808, + "m_fireYDelta": 2064, + "m_fireZDelta": 2320, + "m_nFireEffectTickBegin": 4184, + "m_nFireLifetime": 4188, + "m_nFiresExtinguishCount": 4196, + "m_nInfernoType": 4180, + "m_nMaxFlames": 4860, + "m_nSourceItemDefIndex": 4912, + "m_splashVelocity": 4792, + "m_startPos": 4816, + "m_vecOriginalSpawnLocation": 4828 + }, + "CInfoDynamicShadowHint": { + "m_bDisabled": 1200, + "m_flRange": 1204, + "m_hLight": 1216, + "m_nImportance": 1208, + "m_nLightChoice": 1212 + }, + "CInfoDynamicShadowHintBox": { + "m_vBoxMaxs": 1236, + "m_vBoxMins": 1224 + }, + "CInfoGameEventProxy": { + "m_flRange": 1208, + "m_iszEventName": 1200 + }, + "CInfoMapRegion": { + "m_flRadius": 1200, + "m_strLocToken": 1208, + "m_szLocToken": 1216 + }, + "CInfoOffscreenPanoramaTexture": { + "m_AdditionalTargetEntities": 1296, + "m_RenderAttrName": 1224, + "m_TargetEntities": 1232, + "m_bDisabled": 1200, + "m_nResolutionX": 1204, + "m_nResolutionY": 1208, + "m_nTargetChangeCount": 1256, + "m_szLayoutFileName": 1216, + "m_szTargetsName": 1288, + "m_vecCSSClasses": 1264 + }, + "CInfoPlayerStart": { + "m_bDisabled": 1200 + }, + "CInfoSpawnGroupLoadUnload": { + "m_OnSpawnGroupLoadFinished": 1240, + "m_OnSpawnGroupLoadStarted": 1200, + "m_OnSpawnGroupUnloadFinished": 1320, + "m_OnSpawnGroupUnloadStarted": 1280, + "m_bStreamingStarted": 1396, + "m_bUnloadingStarted": 1397, + "m_flTimeoutInterval": 1392, + "m_iszLandmarkName": 1376, + "m_iszSpawnGroupFilterName": 1368, + "m_iszSpawnGroupName": 1360, + "m_sFixedSpawnGroupName": 1384 + }, + "CInfoVisibilityBox": { + "m_bEnabled": 1220, + "m_nMode": 1204, + "m_vBoxSize": 1208 + }, + "CInfoWorldLayer": { + "m_bCreateAsChildSpawnGroup": 1258, + "m_bEntitiesSpawned": 1257, + "m_bWorldLayerVisible": 1256, + "m_hLayerSpawnGroup": 1260, + "m_layerName": 1248, + "m_pOutputOnEntitiesSpawned": 1200, + "m_worldName": 1240 + }, + "CInstancedSceneEntity": { + "m_bHadOwner": 2572, + "m_bIsBackground": 2584, + "m_flPostSpeakDelay": 2576, + "m_flPreDelay": 2580, + "m_hOwner": 2568 + }, + "CInstructorEventEntity": { + "m_hTargetPlayer": 1216, + "m_iszHintTargetEntity": 1208, + "m_iszName": 1200 + }, + "CIronSightController": { + "m_bIronSightAvailable": 8, + "m_flIronSightAmount": 12, + "m_flIronSightAmountBiased": 20, + "m_flIronSightAmountGained": 16 + }, + "CItem": { + "m_OnCacheInteraction": 2408, + "m_OnGlovePulled": 2488, + "m_OnPlayerPickup": 2448, + "m_OnPlayerTouch": 2360, + "m_bActivateWhenAtRest": 2400, + "m_bPhysStartAsleep": 2552, + "m_vOriginalSpawnAngles": 2540, + "m_vOriginalSpawnOrigin": 2528 + }, + "CItemCash": { + "m_bufCashOriginalSource": 2568, + "m_flAllowPickupTime": 2640, + "m_nBundleSize": 2632 + }, + "CItemDefuser": { + "m_entitySpottedState": 2568, + "m_nSpotRules": 2592 + }, + "CItemDogtags": { + "m_KillingPlayer": 2572, + "m_OwningPlayer": 2568 + }, + "CItemGeneric": { + "m_OnPickup": 2696, + "m_OnTimeout": 2736, + "m_OnTriggerEndTouch": 2856, + "m_OnTriggerStartTouch": 2776, + "m_OnTriggerTouch": 2816, + "m_bAutoStartAmbientSound": 2616, + "m_bGlowWhenInTrigger": 2920, + "m_bHasPickupRadius": 2577, + "m_bHasTriggerRadius": 2576, + "m_bPlayerCounterListenerAdded": 2592, + "m_bPlayerInTriggerRadius": 2593, + "m_bUseable": 2925, + "m_flLastPickupCheck": 2588, + "m_flPickupRadius": 2904, + "m_flPickupRadiusSqr": 2580, + "m_flTriggerRadius": 2908, + "m_flTriggerRadiusSqr": 2584, + "m_glowColor": 2921, + "m_hPickupFilter": 2688, + "m_hPickupParticleEffect": 2632, + "m_hSpawnParticleEffect": 2600, + "m_hTimeoutParticleEffect": 2656, + "m_hTriggerHelper": 2928, + "m_pAllowPickupScriptFunction": 2896, + "m_pAmbientSoundEffect": 2608, + "m_pPickupFilterName": 2680, + "m_pPickupScriptFunction": 2648, + "m_pPickupSoundEffect": 2640, + "m_pSpawnScriptFunction": 2624, + "m_pTimeoutScriptFunction": 2672, + "m_pTimeoutSoundEffect": 2664, + "m_pTriggerSoundEffect": 2912 + }, + "CItemGenericTriggerHelper": { + "m_hParentItem": 1792 + }, + "CKeepUpright": { + "m_angularLimit": 1252, + "m_attachedObject": 1248, + "m_bActive": 1256, + "m_bDampAllRotation": 1257, + "m_localTestAxis": 1220, + "m_nameAttach": 1240, + "m_worldGoalAxis": 1208 + }, + "CLightComponent": { + "__m_pChainEntity": 72, + "m_Color": 133, + "m_LightGroups": 304, + "m_Pattern": 232, + "m_SecondaryColor": 137, + "m_SkyAmbientBounce": 424, + "m_SkyColor": 416, + "m_bEnabled": 336, + "m_bFlicker": 337, + "m_bMixedShadows": 429, + "m_bPrecomputedFieldsValid": 338, + "m_bPvsModifyEntity": 456, + "m_bRenderDiffuse": 208, + "m_bRenderToCubemaps": 296, + "m_bRenderTransmissive": 216, + "m_bUseSecondaryColor": 428, + "m_bUsesBakedShadowing": 284, + "m_flAttenuation0": 164, + "m_flAttenuation1": 168, + "m_flAttenuation2": 172, + "m_flBrightness": 144, + "m_flBrightnessMult": 152, + "m_flBrightnessScale": 148, + "m_flCapsuleLength": 436, + "m_flFadeMaxDist": 324, + "m_flFadeMinDist": 320, + "m_flFalloff": 160, + "m_flFogContributionStength": 408, + "m_flLightStyleStartTime": 432, + "m_flMinRoughness": 440, + "m_flNearClipPlane": 412, + "m_flOrthoLightHeight": 224, + "m_flOrthoLightWidth": 220, + "m_flPhi": 180, + "m_flPrecomputedMaxRange": 400, + "m_flRange": 156, + "m_flShadowCascadeCrossFade": 244, + "m_flShadowCascadeDistance0": 252, + "m_flShadowCascadeDistance1": 256, + "m_flShadowCascadeDistance2": 260, + "m_flShadowCascadeDistance3": 264, + "m_flShadowCascadeDistanceFade": 248, + "m_flShadowFadeMaxDist": 332, + "m_flShadowFadeMinDist": 328, + "m_flSkyIntensity": 420, + "m_flTheta": 176, + "m_hLightCookie": 184, + "m_nBakedShadowIndex": 292, + "m_nCascadeRenderStaticObjects": 240, + "m_nCascades": 192, + "m_nCastShadows": 196, + "m_nDirectLight": 312, + "m_nFogLightingMode": 404, + "m_nIndirectLight": 316, + "m_nRenderSpecular": 212, + "m_nShadowCascadeResolution0": 268, + "m_nShadowCascadeResolution1": 272, + "m_nShadowCascadeResolution2": 276, + "m_nShadowCascadeResolution3": 280, + "m_nShadowHeight": 204, + "m_nShadowPriority": 288, + "m_nShadowWidth": 200, + "m_nStyle": 228, + "m_vPrecomputedBoundsMaxs": 352, + "m_vPrecomputedBoundsMins": 340, + "m_vPrecomputedOBBAngles": 376, + "m_vPrecomputedOBBExtent": 388, + "m_vPrecomputedOBBOrigin": 364 + }, + "CLightEntity": { + "m_CLightComponent": 1792 + }, + "CLightGlow": { + "m_flGlowProxySize": 1812, + "m_flHDRColorScale": 1816, + "m_nHorizontalSize": 1792, + "m_nMaxDist": 1804, + "m_nMinDist": 1800, + "m_nOuterMaxDist": 1808, + "m_nVerticalSize": 1796 + }, + "CLogicAchievement": { + "m_OnFired": 1216, + "m_bDisabled": 1200, + "m_iszAchievementEventID": 1208 + }, + "CLogicActiveAutosave": { + "m_TriggerHitPoints": 1216, + "m_flDangerousTime": 1228, + "m_flStartTime": 1224, + "m_flTimeToTrigger": 1220 + }, + "CLogicAuto": { + "m_OnBackgroundMap": 1400, + "m_OnDemoMapSpawn": 1240, + "m_OnLoadGame": 1320, + "m_OnMapSpawn": 1200, + "m_OnMapTransition": 1360, + "m_OnMultiNewMap": 1440, + "m_OnMultiNewRound": 1480, + "m_OnNewGame": 1280, + "m_OnVREnabled": 1520, + "m_OnVRNotEnabled": 1560, + "m_globalstate": 1600 + }, + "CLogicAutosave": { + "m_bForceNewLevelUnit": 1200, + "m_minHitPoints": 1204, + "m_minHitPointsToCommit": 1208 + }, + "CLogicBranch": { + "m_Listeners": 1208, + "m_OnFalse": 1272, + "m_OnTrue": 1232, + "m_bInValue": 1200 + }, + "CLogicBranchList": { + "m_LogicBranchList": 1328, + "m_OnAllFalse": 1400, + "m_OnAllTrue": 1360, + "m_OnMixed": 1440, + "m_eLastState": 1352, + "m_nLogicBranchNames": 1200 + }, + "CLogicCase": { + "m_OnCase": 1496, + "m_OnDefault": 2776, + "m_nCase": 1200, + "m_nLastShuffleCase": 1460, + "m_nShuffleCases": 1456, + "m_uchShuffleCaseMap": 1464 + }, + "CLogicCollisionPair": { + "m_disabled": 1216, + "m_nameAttach1": 1200, + "m_nameAttach2": 1208, + "m_succeeded": 1217 + }, + "CLogicCompare": { + "m_OnEqualTo": 1248, + "m_OnGreaterThan": 1328, + "m_OnLessThan": 1208, + "m_OnNotEqualTo": 1288, + "m_flCompareValue": 1204, + "m_flInValue": 1200 + }, + "CLogicDistanceAutosave": { + "m_bCheckCough": 1213, + "m_bForceNewLevelUnit": 1212, + "m_bThinkDangerous": 1214, + "m_flDangerousTime": 1216, + "m_flDistanceToPlayer": 1208, + "m_iszTargetEntity": 1200 + }, + "CLogicDistanceCheck": { + "m_InZone1": 1224, + "m_InZone2": 1264, + "m_InZone3": 1304, + "m_flZone1Distance": 1216, + "m_flZone2Distance": 1220, + "m_iszEntityA": 1200, + "m_iszEntityB": 1208 + }, + "CLogicEventListener": { + "m_OnEventFired": 1240, + "m_bFetchEventData": 1232, + "m_bIsEnabled": 1224, + "m_iszEventName": 1216, + "m_nTeam": 1228 + }, + "CLogicGameEvent": { + "m_iszEventName": 1200 + }, + "CLogicGameEventListener": { + "m_OnEventFired": 1216, + "m_bEnabled": 1272, + "m_bStartDisabled": 1273, + "m_iszGameEventItem": 1264, + "m_iszGameEventName": 1256 + }, + "CLogicLineToEntity": { + "m_EndEntity": 1252, + "m_Line": 1200, + "m_SourceName": 1240, + "m_StartEntity": 1248 + }, + "CLogicMeasureMovement": { + "m_flScale": 1240, + "m_hMeasureReference": 1228, + "m_hMeasureTarget": 1224, + "m_hTarget": 1232, + "m_hTargetReference": 1236, + "m_nMeasureType": 1244, + "m_strMeasureReference": 1208, + "m_strMeasureTarget": 1200, + "m_strTargetReference": 1216 + }, + "CLogicNPCCounter": { + "m_OnFactorAll": 1280, + "m_OnFactor_1": 1440, + "m_OnFactor_2": 1600, + "m_OnFactor_3": 1760, + "m_OnMaxCountAll": 1240, + "m_OnMaxCount_1": 1400, + "m_OnMaxCount_2": 1560, + "m_OnMaxCount_3": 1720, + "m_OnMinCountAll": 1200, + "m_OnMinCount_1": 1360, + "m_OnMinCount_2": 1520, + "m_OnMinCount_3": 1680, + "m_OnMinPlayerDistAll": 1320, + "m_OnMinPlayerDist_1": 1480, + "m_OnMinPlayerDist_2": 1640, + "m_OnMinPlayerDist_3": 1800, + "m_bDisabled": 1860, + "m_bInvertState_1": 1900, + "m_bInvertState_2": 1940, + "m_bInvertState_3": 1980, + "m_flDefaultDist_1": 1924, + "m_flDefaultDist_2": 1964, + "m_flDefaultDist_3": 2004, + "m_flDistanceMax": 1856, + "m_hSource": 1840, + "m_iszNPCClassname_1": 1888, + "m_iszNPCClassname_2": 1928, + "m_iszNPCClassname_3": 1968, + "m_iszSourceEntityName": 1848, + "m_nMaxCountAll": 1868, + "m_nMaxCount_1": 1908, + "m_nMaxCount_2": 1948, + "m_nMaxCount_3": 1988, + "m_nMaxFactorAll": 1876, + "m_nMaxFactor_1": 1916, + "m_nMaxFactor_2": 1956, + "m_nMaxFactor_3": 1996, + "m_nMinCountAll": 1864, + "m_nMinCount_1": 1904, + "m_nMinCount_2": 1944, + "m_nMinCount_3": 1984, + "m_nMinFactorAll": 1872, + "m_nMinFactor_1": 1912, + "m_nMinFactor_2": 1952, + "m_nMinFactor_3": 1992, + "m_nNPCState_1": 1896, + "m_nNPCState_2": 1936, + "m_nNPCState_3": 1976 + }, + "CLogicNPCCounterAABB": { + "m_vDistanceOuterMaxs": 2044, + "m_vDistanceOuterMins": 2032, + "m_vOuterMaxs": 2068, + "m_vOuterMins": 2056 + }, + "CLogicNavigation": { + "m_isOn": 1208, + "m_navProperty": 1212 + }, + "CLogicPlayerProxy": { + "m_PlayerDied": 1288, + "m_PlayerHasAmmo": 1208, + "m_PlayerHasNoAmmo": 1248, + "m_RequestedPlayerHealth": 1328, + "m_hPlayer": 1200 + }, + "CLogicRelay": { + "m_OnSpawn": 1240, + "m_OnTrigger": 1200, + "m_bDisabled": 1280, + "m_bFastRetrigger": 1283, + "m_bPassthoughCaller": 1284, + "m_bTriggerOnce": 1282, + "m_bWaitForRefire": 1281 + }, + "CMapInfo": { + "m_bDisableAutoGeneratedDMSpawns": 1213, + "m_bFadePlayerVisibilityFarZ": 1224, + "m_bUseNormalSpawnsForDM": 1212, + "m_flBombRadius": 1204, + "m_flBotMaxVisionDistance": 1216, + "m_iBuyingStatus": 1200, + "m_iHostageCount": 1220, + "m_iPetPopulation": 1208 + }, + "CMapVetoPickController": { + "m_OnLevelTransition": 3760, + "m_OnMapPicked": 3640, + "m_OnMapVetoed": 3600, + "m_OnNewPhaseStarted": 3720, + "m_OnSidesPicked": 3680, + "m_bNeedToPlayFiveSecondsRemaining": 1201, + "m_bPlayedIntroVcd": 1200, + "m_bPreMatchDraftStateChanged": 1240, + "m_dblPreMatchDraftSequenceTime": 1232, + "m_nAccountIDs": 1536, + "m_nCurrentPhase": 3584, + "m_nDraftType": 1244, + "m_nMapId0": 1792, + "m_nMapId1": 2048, + "m_nMapId2": 2304, + "m_nMapId3": 2560, + "m_nMapId4": 2816, + "m_nMapId5": 3072, + "m_nPhaseDurationTicks": 3592, + "m_nPhaseStartTick": 3588, + "m_nStartingSide0": 3328, + "m_nTeamWinningCoinToss": 1248, + "m_nTeamWithFirstChoice": 1252, + "m_nVoteMapIdsList": 1508 + }, + "CMarkupVolume": { + "m_bEnabled": 1792 + }, + "CMarkupVolumeTagged": { + "m_bGroupByPrefab": 1849, + "m_bGroupByVolume": 1850, + "m_bGroupOtherGroups": 1851, + "m_bIsGroup": 1848, + "m_bIsInGroup": 1852 + }, + "CMarkupVolumeTagged_NavGame": { + "m_bFloodFillAttribute": 1880 + }, + "CMarkupVolumeWithRef": { + "m_bUseRef": 1856, + "m_flRefDot": 1872, + "m_vRefPos": 1860 + }, + "CMathColorBlend": { + "m_OutColor1": 1208, + "m_OutColor2": 1212, + "m_OutValue": 1216, + "m_flInMax": 1204, + "m_flInMin": 1200 + }, + "CMathCounter": { + "m_OnChangedFromMax": 1416, + "m_OnChangedFromMin": 1376, + "m_OnGetValue": 1256, + "m_OnHitMax": 1336, + "m_OnHitMin": 1296, + "m_OutValue": 1216, + "m_bDisabled": 1210, + "m_bHitMax": 1209, + "m_bHitMin": 1208, + "m_flMax": 1204, + "m_flMin": 1200 + }, + "CMathRemap": { + "m_OnFellBelowMax": 1384, + "m_OnFellBelowMin": 1344, + "m_OnRoseAboveMax": 1304, + "m_OnRoseAboveMin": 1264, + "m_OutValue": 1224, + "m_bEnabled": 1220, + "m_flInMax": 1204, + "m_flInMin": 1200, + "m_flOldInValue": 1216, + "m_flOut1": 1208, + "m_flOut2": 1212 + }, + "CMelee": { + "m_bDidThrowDamage": 3720, + "m_flThrowAt": 3712, + "m_hThrower": 3716 + }, + "CMessage": { + "m_MessageAttenuation": 1212, + "m_MessageVolume": 1208, + "m_OnShowMessage": 1232, + "m_Radius": 1216, + "m_iszMessage": 1200, + "m_sNoise": 1224 + }, + "CMessageEntity": { + "m_bDeveloperOnly": 1217, + "m_bEnabled": 1218, + "m_drawText": 1216, + "m_messageText": 1208, + "m_radius": 1200 + }, + "CModelState": { + "m_MeshGroupMask": 384, + "m_ModelName": 168, + "m_bClientClothCreationSuppressed": 232, + "m_hModel": 160, + "m_nClothUpdateFlags": 548, + "m_nForceLOD": 547, + "m_nIdealMotionType": 546 + }, + "CMolotovProjectile": { + "m_bDetonated": 2772, + "m_bHasBouncedOffPlayer": 3000, + "m_bIsIncGrenade": 2760, + "m_stillTimer": 2776 + }, + "CMomentaryRotButton": { + "m_IdealYaw": 2476, + "m_OnFullyClosed": 2368, + "m_OnFullyOpen": 2328, + "m_OnReachedPosition": 2408, + "m_OnUnpressed": 2288, + "m_Position": 2248, + "m_bUpdateTarget": 2488, + "m_direction": 2492, + "m_end": 2464, + "m_flStartPosition": 2500, + "m_lastUsed": 2448, + "m_returnSpeed": 2496, + "m_sNoise": 2480, + "m_start": 2452 + }, + "CMotorController": { + "m_axis": 16, + "m_inertiaFactor": 28, + "m_maxTorque": 12, + "m_speed": 8 + }, + "CMultiLightProxy": { + "m_bPerformScreenFade": 1224, + "m_flBrightnessDelta": 1220, + "m_flCurrentBrightnessMultiplier": 1232, + "m_flLightRadiusFilter": 1216, + "m_flTargetBrightnessMultiplier": 1228, + "m_iszLightClassFilter": 1208, + "m_iszLightNameFilter": 1200, + "m_vecLights": 1240 + }, + "CMultiSource": { + "m_OnTrigger": 1456, + "m_globalstate": 1504, + "m_iTotal": 1496, + "m_rgEntities": 1200, + "m_rgTriggered": 1328 + }, + "CMultiplayer_Expresser": { + "m_bAllowMultipleScenes": 112 + }, + "CNavHullPresetVData": { + "m_vecNavHulls": 0 + }, + "CNavHullVData": { + "m_agentBorderErosion": 40, + "m_agentHeight": 8, + "m_agentMaxClimb": 20, + "m_agentMaxJumpDownDist": 28, + "m_agentMaxJumpHorizDistBase": 32, + "m_agentMaxJumpUpDist": 36, + "m_agentMaxSlope": 24, + "m_agentRadius": 4, + "m_agentShortHeight": 16, + "m_agentShortHeightEnabled": 12, + "m_bAgentEnabled": 0 + }, + "CNavLinkAnimgraphVar": { + "m_strAnimgraphVar": 0, + "m_unAlignmentDegrees": 8 + }, + "CNavLinkAreaEntity": { + "m_OnNavLinkFinish": 1320, + "m_OnNavLinkStart": 1280, + "m_bEnabled": 1256, + "m_bIsTerminus": 1360, + "m_flWidth": 1200, + "m_hFilter": 1272, + "m_nNavLinkIdForward": 1248, + "m_nNavLinkIdReverse": 1252, + "m_qLocatorAnglesOffset": 1216, + "m_strFilterName": 1264, + "m_strMovementForward": 1232, + "m_strMovementReverse": 1240, + "m_vLocatorOffset": 1204 + }, + "CNavLinkMovementVData": { + "m_bIsInterpolated": 0, + "m_unRecommendedDistance": 4, + "m_vecAnimgraphVars": 8 + }, + "CNavSpaceInfo": { + "m_bCreateFlightSpace": 1200 + }, + "CNavVolumeBreadthFirstSearch": { + "m_flSearchDist": 172, + "m_vStartPos": 160 + }, + "CNavVolumeSphere": { + "m_flRadius": 124, + "m_vCenter": 112 + }, + "CNavVolumeSphericalShell": { + "m_flRadiusInner": 128 + }, + "CNavVolumeVector": { + "m_bHasBeenPreFiltered": 120 + }, + "CNetworkOriginCellCoordQuantizedVector": { + "m_cellX": 16, + "m_cellY": 18, + "m_cellZ": 20, + "m_nOutsideWorld": 22, + "m_vecX": 24, + "m_vecY": 32, + "m_vecZ": 40 + }, + "CNetworkOriginQuantizedVector": { + "m_vecX": 16, + "m_vecY": 24, + "m_vecZ": 32 + }, + "CNetworkTransmitComponent": { + "m_nTransmitStateOwnedCounter": 364 + }, + "CNetworkVelocityVector": { + "m_vecX": 16, + "m_vecY": 24, + "m_vecZ": 32 + }, + "CNetworkViewOffsetVector": { + "m_vecX": 16, + "m_vecY": 24, + "m_vecZ": 32 + }, + "CNetworkedSequenceOperation": { + "m_bDiscontinuity": 29, + "m_bSequenceChangeNetworked": 28, + "m_flCycle": 16, + "m_flPrevCycle": 12, + "m_flPrevCycleForAnimEventDetection": 36, + "m_flPrevCycleFromDiscontinuity": 32, + "m_flWeight": 20, + "m_hSequence": 8 + }, + "COmniLight": { + "m_bShowLight": 2368, + "m_flInnerAngle": 2360, + "m_flOuterAngle": 2364 + }, + "COrnamentProp": { + "m_initialOwner": 2984 + }, + "CParadropChopper": { + "m_bCalledByPlayer": 2412, + "m_bDroppedParadrop": 2372, + "m_bPlayerIsFinishedRappelling": 2392, + "m_flFlightTime": 2388, + "m_flLastDistFromDrop": 2368, + "m_flPlayerFinishedRappellingTime": 2396, + "m_flSpawnTime": 2384, + "m_hCallingPlayer": 2408, + "m_pSoundLoop": 2376, + "m_strFlyoverDropEvent": 2400, + "m_vecDropPos": 2356 + }, + "CParticleSystem": { + "m_bActive": 2304, + "m_bAnimateDuringGameplayPause": 2316, + "m_bFrozen": 2305, + "m_bNoFreeze": 2645, + "m_bNoRamp": 2646, + "m_bNoSave": 2644, + "m_bStartActive": 2647, + "m_clrTint": 3188, + "m_flFreezeTransitionDuration": 2308, + "m_flPreSimTime": 2332, + "m_flStartTime": 2328, + "m_hControlPointEnts": 2388, + "m_iEffectIndex": 2320, + "m_iServerControlPointAssignments": 2384, + "m_iszControlPointNames": 2656, + "m_iszEffectName": 2648, + "m_nDataCP": 3168, + "m_nStopType": 2312, + "m_nTintCP": 3184, + "m_szSnapshotFileName": 1792, + "m_vServerControlPoints": 2336, + "m_vecDataCPValue": 3172 + }, + "CPathCorner": { + "m_OnPass": 1208, + "m_flRadius": 1204, + "m_flWait": 1200 + }, + "CPathKeyFrame": { + "m_Angles": 1212, + "m_Origin": 1200, + "m_flNextTime": 1256, + "m_flSpeed": 1280, + "m_iNextKey": 1248, + "m_pNextKey": 1264, + "m_pPrevKey": 1272, + "m_qAngle": 1232 + }, + "CPathParticleRope": { + "m_ColorTint": 1252, + "m_PathNodes_Color": 1344, + "m_PathNodes_Name": 1216, + "m_PathNodes_PinEnabled": 1368, + "m_PathNodes_Position": 1272, + "m_PathNodes_RadiusScale": 1392, + "m_PathNodes_TangentIn": 1296, + "m_PathNodes_TangentOut": 1320, + "m_bStartActive": 1200, + "m_flMaxSimulationTime": 1204, + "m_flParticleSpacing": 1240, + "m_flRadius": 1248, + "m_flSlack": 1244, + "m_iEffectIndex": 1264, + "m_iszEffectName": 1208, + "m_nEffectState": 1256 + }, + "CPathTrack": { + "m_OnPass": 1248, + "m_altName": 1232, + "m_eOrientationType": 1244, + "m_flRadius": 1224, + "m_length": 1228, + "m_nIterVal": 1240, + "m_paltpath": 1216, + "m_pnext": 1200, + "m_pprevious": 1208 + }, + "CPhysBallSocket": { + "m_bEnableSwingLimit": 1292, + "m_bEnableTwistLimit": 1300, + "m_flFriction": 1288, + "m_flMaxTwistAngle": 1308, + "m_flMinTwistAngle": 1304, + "m_flSwingLimit": 1296 + }, + "CPhysBox": { + "m_OnAwakened": 2064, + "m_OnDamaged": 2024, + "m_OnMotionEnabled": 2104, + "m_OnPlayerUse": 2144, + "m_OnStartTouch": 2184, + "m_angPreferredCarryAngles": 2000, + "m_bEnableUseOutput": 2013, + "m_bNotSolidToWorld": 2012, + "m_damageToEnableMotion": 1992, + "m_damageType": 1984, + "m_flForceToEnableMotion": 1996, + "m_flTouchOutputPerEntityDelay": 2020, + "m_hCarryingPlayer": 2224, + "m_iExploitableByPlayer": 2016, + "m_massScale": 1988 + }, + "CPhysConstraint": { + "m_OnBreak": 1248, + "m_breakSound": 1224, + "m_forceLimit": 1232, + "m_minTeleportDistance": 1244, + "m_nameAttach1": 1208, + "m_nameAttach2": 1216, + "m_teleportTick": 1240, + "m_torqueLimit": 1236 + }, + "CPhysExplosion": { + "m_OnPushedPlayer": 1240, + "m_bConvertToDebrisWhenPossible": 1232, + "m_bExplodeOnSpawn": 1200, + "m_flDamage": 1208, + "m_flInnerRadius": 1224, + "m_flMagnitude": 1204, + "m_flPushScale": 1228, + "m_radius": 1212, + "m_targetEntityName": 1216 + }, + "CPhysFixed": { + "m_bEnableAngularConstraint": 1305, + "m_bEnableLinearConstraint": 1304, + "m_flAngularDampingRatio": 1300, + "m_flAngularFrequency": 1296, + "m_flLinearDampingRatio": 1292, + "m_flLinearFrequency": 1288 + }, + "CPhysForce": { + "m_attachedObject": 1224, + "m_force": 1216, + "m_forceTime": 1220, + "m_integrator": 1232, + "m_nameAttach": 1208, + "m_wasRestored": 1228 + }, + "CPhysHinge": { + "m_NotifyMaxLimitReached": 1472, + "m_NotifyMinLimitReached": 1432, + "m_OnStartMoving": 1624, + "m_OnStopMoving": 1664, + "m_bAtMaxLimit": 1513, + "m_bAtMinLimit": 1512, + "m_bIsAxisLocal": 1588, + "m_flAngleSpeed": 1612, + "m_flAngleSpeedThreshold": 1616, + "m_flInitialRotation": 1600, + "m_flMaxRotation": 1596, + "m_flMinRotation": 1592, + "m_flMotorDampingRatio": 1608, + "m_flMotorFrequency": 1604, + "m_hinge": 1516, + "m_hingeFriction": 1580, + "m_soundInfo": 1296, + "m_systemLoadScale": 1584 + }, + "CPhysImpact": { + "m_damage": 1200, + "m_directionEntityName": 1208, + "m_distance": 1204 + }, + "CPhysLength": { + "m_addLength": 1324, + "m_bEnableCollision": 1336, + "m_minLength": 1328, + "m_offset": 1288, + "m_totalLength": 1332, + "m_vecAttach": 1312 + }, + "CPhysMagnet": { + "m_MagnettedEntities": 2448, + "m_OnMagnetAttach": 2352, + "m_OnMagnetDetach": 2392, + "m_bActive": 2472, + "m_bHasHitSomething": 2473, + "m_flNextSuckTime": 2484, + "m_flRadius": 2480, + "m_flTotalMass": 2476, + "m_forceLimit": 2436, + "m_iMaxObjectsAttached": 2488, + "m_massScale": 2432, + "m_torqueLimit": 2440 + }, + "CPhysMotor": { + "m_additionalAcceleration": 1216, + "m_angularAcceleration": 1220, + "m_hAttachedObject": 1208, + "m_lastTime": 1224, + "m_motor": 1248, + "m_nameAttach": 1200, + "m_spinUp": 1212 + }, + "CPhysPropAmmoBox": { + "m_flTimeLastUsed": 3140, + "m_nUsesRemaining": 3136 + }, + "CPhysPropLootCrate": { + "m_bOwnedByPlayer": 3164, + "m_bRenderInPSPM": 3136, + "m_bRenderInTablet": 3137, + "m_bTakeDamageFromDangerZone": 3144, + "m_flDampingOriginalRot": 3172, + "m_flDampingOriginalSpeed": 3168, + "m_flSpawnTime": 3140, + "m_hCrateOwner": 3160, + "m_pszCrateName": 3152 + }, + "CPhysPropMapPlacedLongUseEntity": { + "m_OnUseCompleted": 3168, + "m_flLongUseDuration": 3160, + "m_iszStartUseSound": 3144, + "m_nLongUseActionType": 3156, + "m_nPingType": 3152 + }, + "CPhysPropMoneyCrate": { + "m_flTimeLastUsed": 3184, + "m_nCashCount": 3180, + "m_nCurrentCashCount": 3176 + }, + "CPhysPropParadropCrate": { + "m_bFalling": 3176, + "m_nNumThinksAtZeroVerticalVelocity": 3180 + }, + "CPhysPropRadarJammer": { + "m_flLastSoundTime": 3148, + "m_flSpawnTime": 3144, + "m_vecJammedHexCenters": 3152, + "m_vecLastJammedOrigin": 3176 + }, + "CPhysPropWeaponUpgrade": { + "m_flTimeLastUsed": 3140, + "m_nEventPriority": 3136 + }, + "CPhysPulley": { + "m_addLength": 1324, + "m_gearRatio": 1328, + "m_offset": 1300, + "m_position2": 1288 + }, + "CPhysSlideConstraint": { + "m_axisEnd": 1296, + "m_bEnableAngularConstraint": 1321, + "m_bEnableLinearConstraint": 1320, + "m_bUseEntityPivot": 1332, + "m_flMotorDampingRatio": 1328, + "m_flMotorFrequency": 1324, + "m_initialOffset": 1316, + "m_slideFriction": 1308, + "m_soundInfo": 1336, + "m_systemLoadScale": 1312 + }, + "CPhysThruster": { + "m_localOrigin": 1296 + }, + "CPhysTorque": { + "m_axis": 1296 + }, + "CPhysWheelConstraint": { + "m_bEnableSteeringLimit": 1312, + "m_bEnableSuspensionLimit": 1300, + "m_flMaxSteeringAngle": 1320, + "m_flMaxSuspensionOffset": 1308, + "m_flMinSteeringAngle": 1316, + "m_flMinSuspensionOffset": 1304, + "m_flSpinAxisFriction": 1328, + "m_flSteeringAxisFriction": 1324, + "m_flSuspensionDampingRatio": 1292, + "m_flSuspensionFrequency": 1288, + "m_flSuspensionHeightOffset": 1296 + }, + "CPhysicsEntitySolver": { + "m_cancelTime": 1220, + "m_hMovingEntity": 1208, + "m_hPhysicsBlocker": 1212, + "m_separationDuration": 1216 + }, + "CPhysicsProp": { + "m_MotionEnabled": 2736, + "m_OnAsleep": 2856, + "m_OnAwake": 2816, + "m_OnAwakened": 2776, + "m_OnOutOfWorld": 2976, + "m_OnPlayerPickup": 2936, + "m_OnPlayerUse": 2896, + "m_bAcceptDamageFromHeldObjects": 3084, + "m_bAwake": 3086, + "m_bDroppedByPlayer": 3041, + "m_bEnableUseOutput": 3085, + "m_bFirstCollisionAfterLaunch": 3043, + "m_bForceNavIgnore": 3072, + "m_bForceNpcExclude": 3074, + "m_bHasBeenAwakened": 3048, + "m_bIsOverrideProp": 3049, + "m_bMuteImpactEffects": 3076, + "m_bNoNavmeshBlocker": 3073, + "m_bShouldAutoConvertBackFromDebris": 3075, + "m_bThrownByPlayer": 3040, + "m_bTouchedByPlayer": 3042, + "m_buoyancyScale": 3024, + "m_damageToEnableMotion": 3032, + "m_damageType": 3028, + "m_fNextCheckDisableMotionContactsTime": 3052, + "m_flForceToEnableMotion": 3036, + "m_glowColor": 3068, + "m_iExploitableByPlayer": 3044, + "m_iInitialGlowState": 3056, + "m_inertiaScale": 3020, + "m_massScale": 3016, + "m_nCollisionGroupOverride": 3088, + "m_nGlowRange": 3060, + "m_nGlowRangeMin": 3064 + }, + "CPhysicsPropRespawnable": { + "m_flRespawnDuration": 3144, + "m_vOriginalMaxs": 3132, + "m_vOriginalMins": 3120, + "m_vOriginalSpawnAngles": 3108, + "m_vOriginalSpawnOrigin": 3096 + }, + "CPhysicsShake": { + "m_force": 8 + }, + "CPhysicsSpring": { + "m_end": 1252, + "m_flDampingRatio": 1212, + "m_flFrequency": 1208, + "m_flRestLength": 1216, + "m_nameAttachEnd": 1232, + "m_nameAttachStart": 1224, + "m_start": 1240, + "m_teleportTick": 1264 + }, + "CPhysicsWire": { + "m_nDensity": 1200 + }, + "CPlantedC4": { + "m_OnBombBeginDefuse": 2408, + "m_OnBombDefuseAborted": 2448, + "m_OnBombDefused": 2368, + "m_angCatchUpToPlayerEye": 2592, + "m_bBeingDefused": 2532, + "m_bBombDefused": 2556, + "m_bBombTicking": 2353, + "m_bCannotBeDefused": 2488, + "m_bHasExploded": 2525, + "m_bPlantedAfterPickup": 2588, + "m_bPlantedAtQuestTarget": 2352, + "m_bTrainingPlacedByPlayer": 2524, + "m_bVoiceAlertFired": 2572, + "m_bVoiceAlertPlayed": 2573, + "m_entitySpottedState": 2496, + "m_fLastDefuseTime": 2540, + "m_flC4Blow": 2356, + "m_flDefuseCountDown": 2552, + "m_flDefuseLength": 2548, + "m_flLastSpinDetectionTime": 2604, + "m_flNextBotBeepTime": 2580, + "m_flTimerLength": 2528, + "m_hBombDefuser": 2560, + "m_hControlPanel": 2564, + "m_iProgressBarTime": 2568, + "m_nBombSite": 2360, + "m_nSourceSoundscapeHash": 2364, + "m_nSpotRules": 2520 + }, + "CPlatTrigger": { + "m_pPlatform": 1792 + }, + "CPlayerControllerComponent": { + "__m_pChainEntity": 8 + }, + "CPlayerPawnComponent": { + "__m_pChainEntity": 8 + }, + "CPlayerPing": { + "m_bUrgent": 1220, + "m_hPingedEntity": 1212, + "m_hPlayer": 1208, + "m_iType": 1216, + "m_szPlaceName": 1221 + }, + "CPlayerSprayDecal": { + "m_flCreationTime": 1868, + "m_nEntity": 1860, + "m_nHitbox": 1864, + "m_nPlayer": 1856, + "m_nTintID": 1872, + "m_nUniqueID": 1792, + "m_nVersion": 1876, + "m_rtGcTime": 1804, + "m_ubSignature": 1877, + "m_unAccountID": 1796, + "m_unTraceID": 1800, + "m_vecEndPos": 1808, + "m_vecLeft": 1832, + "m_vecNormal": 1844, + "m_vecStart": 1820 + }, + "CPlayerVisibility": { + "m_bIsEnabled": 1217, + "m_bStartDisabled": 1216, + "m_flFadeTime": 1212, + "m_flFogDistanceMultiplier": 1204, + "m_flFogMaxDensityMultiplier": 1208, + "m_flVisibilityStrength": 1200 + }, + "CPlayer_CameraServices": { + "m_PlayerFog": 88, + "m_PostProcessingVolumes": 288, + "m_audio": 168, + "m_flCsViewPunchAngleTickRatio": 80, + "m_flOldPlayerViewOffsetZ": 316, + "m_flOldPlayerZ": 312, + "m_hColorCorrectionCtrl": 152, + "m_hTonemapController": 160, + "m_hTriggerSoundscapeList": 344, + "m_hViewEntity": 156, + "m_nCsViewPunchAngleTick": 76, + "m_vecCsViewPunchAngle": 64 + }, + "CPlayer_MovementServices": { + "m_arrForceSubtickMoveWhen": 404, + "m_flForwardMove": 420, + "m_flLeftMove": 424, + "m_flMaxspeed": 400, + "m_flUpMove": 428, + "m_nButtonDoublePressed": 120, + "m_nButtons": 72, + "m_nImpulse": 64, + "m_nLastCommandNumberProcessed": 384, + "m_nQueuedButtonChangeMask": 112, + "m_nQueuedButtonDownMask": 104, + "m_nToggleButtonDownMask": 392, + "m_pButtonPressedCmdNumber": 128, + "m_vecLastMovementImpulses": 432, + "m_vecOldViewAngles": 444 + }, + "CPlayer_MovementServices_Humanoid": { + "m_bDucked": 484, + "m_bDucking": 485, + "m_bInCrouch": 472, + "m_bInDuckJump": 486, + "m_flCrouchTransitionStartTime": 480, + "m_flFallVelocity": 468, + "m_flStepSoundTime": 464, + "m_flSurfaceFriction": 500, + "m_groundNormal": 488, + "m_iTargetVolume": 524, + "m_nCrouchState": 476, + "m_nStepside": 520, + "m_surfaceProps": 504, + "m_vecSmoothedVelocity": 528 + }, + "CPlayer_ObserverServices": { + "m_bForcedObserverMode": 76, + "m_hObserverTarget": 68, + "m_iObserverLastMode": 72, + "m_iObserverMode": 64 + }, + "CPlayer_WeaponServices": { + "m_bAllowSwitchToNoWeapon": 64, + "m_bPreventWeaponPickup": 168, + "m_hActiveWeapon": 96, + "m_hLastWeapon": 100, + "m_hMyWeapons": 72, + "m_iAmmo": 104 + }, + "CPointAngleSensor": { + "m_FacingPercentage": 1360, + "m_OnFacingLookat": 1240, + "m_OnNotFacingLookat": 1280, + "m_TargetDir": 1320, + "m_bDisabled": 1200, + "m_bFired": 1236, + "m_flDotTolerance": 1228, + "m_flDuration": 1224, + "m_flFacingTime": 1232, + "m_hLookAtEntity": 1220, + "m_hTargetEntity": 1216, + "m_nLookAtName": 1208 + }, + "CPointAngularVelocitySensor": { + "m_AngularVelocity": 1256, + "m_OnEqualTo": 1456, + "m_OnGreaterThan": 1376, + "m_OnGreaterThanOrEqualTo": 1416, + "m_OnLessThan": 1296, + "m_OnLessThanOrEqualTo": 1336, + "m_bUseHelper": 1252, + "m_flFireInterval": 1220, + "m_flFireTime": 1216, + "m_flLastAngVelocity": 1224, + "m_flThreshold": 1204, + "m_hTargetEntity": 1200, + "m_lastOrientation": 1228, + "m_nLastCompareResult": 1208, + "m_nLastFireResult": 1212, + "m_vecAxis": 1240 + }, + "CPointCamera": { + "m_DegreesPerSecond": 1280, + "m_FOV": 1200, + "m_FogColor": 1209, + "m_Resolution": 1204, + "m_TargetFOV": 1276, + "m_bActive": 1228, + "m_bDofEnabled": 1252, + "m_bFogEnable": 1208, + "m_bIsOn": 1284, + "m_bNoSky": 1236, + "m_bUseScreenAspectRatio": 1229, + "m_fBrightness": 1240, + "m_flAspectRatio": 1232, + "m_flDofFarBlurry": 1268, + "m_flDofFarCrisp": 1264, + "m_flDofNearBlurry": 1256, + "m_flDofNearCrisp": 1260, + "m_flDofTiltToGround": 1272, + "m_flFogEnd": 1220, + "m_flFogMaxDensity": 1224, + "m_flFogStart": 1216, + "m_flZFar": 1244, + "m_flZNear": 1248, + "m_pNext": 1288 + }, + "CPointCameraVFOV": { + "m_flVerticalFOV": 1296 + }, + "CPointClientUIDialog": { + "m_bStartEnabled": 2228, + "m_hActivator": 2224 + }, + "CPointClientUIWorldPanel": { + "m_bAllowInteractionFromAllSceneWorlds": 2264, + "m_bDisableMipGen": 2303, + "m_bExcludeFromSaveGames": 2300, + "m_bFollowPlayerAcrossTeleport": 2226, + "m_bGrabbable": 2301, + "m_bIgnoreInput": 2224, + "m_bLit": 2225, + "m_bNoDepth": 2297, + "m_bOnlyRenderToTexture": 2302, + "m_bOpaque": 2296, + "m_bRenderBackface": 2298, + "m_bUseOffScreenIndicator": 2299, + "m_flDPI": 2236, + "m_flDepthOffset": 2244, + "m_flHeight": 2232, + "m_flInteractDistance": 2240, + "m_flWidth": 2228, + "m_nExplicitImageLayout": 2304, + "m_unHorizontalAlign": 2252, + "m_unOrientation": 2260, + "m_unOwnerContext": 2248, + "m_unVerticalAlign": 2256, + "m_vecCSSClasses": 2272 + }, + "CPointClientUIWorldTextPanel": { + "m_messageText": 2312 + }, + "CPointCommentaryNode": { + "m_bActive": 2552, + "m_bDisabled": 2453, + "m_bListenedTo": 2592, + "m_bPreventChangesWhileMoving": 2452, + "m_bPreventMovement": 2408, + "m_bUnderCrosshair": 2409, + "m_bUnstoppable": 2410, + "m_flAbortedPlaybackAt": 2468, + "m_flFinishedTime": 2412, + "m_flStartTime": 2556, + "m_flStartTimeInCommentary": 2560, + "m_hViewPosition": 2400, + "m_hViewPositionMover": 2404, + "m_hViewTarget": 2384, + "m_hViewTargetAngles": 2388, + "m_iNodeNumber": 2584, + "m_iNodeNumberMax": 2588, + "m_iszCommentaryFile": 2368, + "m_iszPostCommands": 2360, + "m_iszPreCommands": 2352, + "m_iszSpeakers": 2576, + "m_iszTitle": 2568, + "m_iszViewPosition": 2392, + "m_iszViewTarget": 2376, + "m_pOnCommentaryStarted": 2472, + "m_pOnCommentaryStopped": 2512, + "m_vecFinishAngles": 2440, + "m_vecFinishOrigin": 2416, + "m_vecOriginalAngles": 2428, + "m_vecTeleportOrigin": 2456 + }, + "CPointDZDroneGunSpawn": { + "m_bSpawnAutomatically": 1208 + }, + "CPointDZItemSpawnGroup": { + "m_flRadius": 1200 + }, + "CPointDZParadropDenialRegion": { + "m_flRadius": 1208 + }, + "CPointDZWeaponSpawn": { + "m_flCurrentWeight": 1224, + "m_flDefaultWeight": 1220, + "m_hDoor": 1240, + "m_hItem": 1228, + "m_iszDoorName": 1232, + "m_nGroupID": 1216, + "m_nPrice": 1244 + }, + "CPointEntityFinder": { + "m_FindMethod": 1236, + "m_OnFoundEntity": 1240, + "m_hEntity": 1200, + "m_hFilter": 1216, + "m_hReference": 1232, + "m_iFilterName": 1208, + "m_iRefName": 1224 + }, + "CPointGamestatsCounter": { + "m_bDisabled": 1208, + "m_strStatisticName": 1200 + }, + "CPointGiveAmmo": { + "m_pActivator": 1200 + }, + "CPointHurt": { + "m_bitsDamageType": 1204, + "m_flDelay": 1212, + "m_flRadius": 1208, + "m_nDamage": 1200, + "m_pActivator": 1224, + "m_strTarget": 1216 + }, + "CPointPrefab": { + "m_fixupNames": 1216, + "m_forceWorldGroupID": 1208, + "m_targetMapName": 1200 + }, + "CPointProximitySensor": { + "m_Distance": 1208, + "m_bDisabled": 1200, + "m_hTargetEntity": 1204 + }, + "CPointPush": { + "m_bEnabled": 1200, + "m_flConeOfInfluence": 1216, + "m_flInnerRadius": 1212, + "m_flMagnitude": 1204, + "m_flRadius": 1208, + "m_hFilter": 1232, + "m_iszFilterName": 1224 + }, + "CPointTeleport": { + "m_bTeleportParentedEntities": 1224, + "m_bTeleportUseCurrentAngle": 1225, + "m_vSaveAngles": 1212, + "m_vSaveOrigin": 1200 + }, + "CPointTemplate": { + "m_ScriptCallbackScope": 1336, + "m_ScriptSpawnCallback": 1328, + "m_SpawnedEntityHandles": 1304, + "m_bAsynchronouslySpawnEntities": 1228, + "m_clientOnlyEntityBehavior": 1272, + "m_createdSpawnGroupHandles": 1280, + "m_flTimeoutInterval": 1224, + "m_iszEntityFilterName": 1216, + "m_iszSource2EntityLumpName": 1208, + "m_iszWorldName": 1200, + "m_ownerSpawnGroupType": 1276, + "m_pOutputOnSpawned": 1232 + }, + "CPointValueRemapper": { + "m_OnDisengage": 1664, + "m_OnEngage": 1624, + "m_OnReachedValueCustom": 1584, + "m_OnReachedValueOne": 1544, + "m_OnReachedValueZero": 1504, + "m_Position": 1424, + "m_PositionDelta": 1464, + "m_bDisabled": 1200, + "m_bEngaged": 1344, + "m_bFirstUpdate": 1345, + "m_bRequiresUseKey": 1244, + "m_bUpdateOnClient": 1201, + "m_flCurrentMomentum": 1328, + "m_flCustomOutputValue": 1372, + "m_flDisengageDistance": 1236, + "m_flEngageDistance": 1240, + "m_flInputOffset": 1340, + "m_flMaximumChangePerSecond": 1232, + "m_flMomentumModifier": 1320, + "m_flPreviousUpdateTickTime": 1352, + "m_flPreviousValue": 1348, + "m_flRatchetOffset": 1336, + "m_flSnapValue": 1324, + "m_hOutputEntities": 1288, + "m_hRemapLineEnd": 1228, + "m_hRemapLineStart": 1224, + "m_hUsingPlayer": 1368, + "m_iszOutputEntity2Name": 1264, + "m_iszOutputEntity3Name": 1272, + "m_iszOutputEntity4Name": 1280, + "m_iszOutputEntityName": 1256, + "m_iszRemapLineEndName": 1216, + "m_iszRemapLineStartName": 1208, + "m_iszSoundDisengage": 1384, + "m_iszSoundEngage": 1376, + "m_iszSoundMovingLoop": 1408, + "m_iszSoundReachedValueOne": 1400, + "m_iszSoundReachedValueZero": 1392, + "m_nHapticsType": 1312, + "m_nInputType": 1204, + "m_nMomentumType": 1316, + "m_nOutputType": 1248, + "m_nRatchetType": 1332, + "m_vecPreviousTestPoint": 1356 + }, + "CPointVelocitySensor": { + "m_Velocity": 1232, + "m_bEnabled": 1216, + "m_fPrevVelocity": 1220, + "m_flAvgInterval": 1224, + "m_hTargetEntity": 1200, + "m_vecAxis": 1204 + }, + "CPointWorldText": { + "m_Color": 2384, + "m_FontName": 2304, + "m_bEnabled": 2368, + "m_bFullbright": 2369, + "m_flDepthOffset": 2380, + "m_flFontSize": 2376, + "m_flWorldUnitsPerPx": 2372, + "m_messageText": 1792, + "m_nJustifyHorizontal": 2388, + "m_nJustifyVertical": 2392, + "m_nReorientMode": 2396 + }, + "CPostProcessingVolume": { + "m_bExposureControl": 2277, + "m_bMaster": 2276, + "m_flExposureCompensation": 2260, + "m_flExposureFadeSpeedDown": 2268, + "m_flExposureFadeSpeedUp": 2264, + "m_flFadeDuration": 2240, + "m_flMaxExposure": 2256, + "m_flMaxLogExposure": 2248, + "m_flMinExposure": 2252, + "m_flMinLogExposure": 2244, + "m_flRate": 2280, + "m_flTonemapEVSmoothingRange": 2272, + "m_flTonemapMinAvgLum": 2292, + "m_flTonemapPercentBrightPixels": 2288, + "m_flTonemapPercentTarget": 2284, + "m_hPostSettings": 2232 + }, + "CPrecipitationVData": { + "m_bBatchSameVolumeType": 272, + "m_flInnerDistance": 264, + "m_nAttachType": 268, + "m_nRTEnvCP": 276, + "m_nRTEnvCPComponent": 280, + "m_szModifier": 288, + "m_szParticlePrecipitationEffect": 40 + }, + "CProjectedDecal": { + "m_flDistance": 1204, + "m_nTexture": 1200 + }, + "CPropCounter": { + "m_flDisplayValue": 2352, + "m_nInitialValue": 2356 + }, + "CPropDoorRotating": { + "m_angGoal": 3720, + "m_angRotationAjarDeprecated": 3672, + "m_angRotationClosed": 3684, + "m_angRotationOpenBack": 3708, + "m_angRotationOpenForward": 3696, + "m_bAjarDoorShouldntAlwaysOpen": 3780, + "m_eCurrentOpenDirection": 3664, + "m_eOpenDirection": 3660, + "m_eSpawnPosition": 3656, + "m_flAjarAngle": 3668, + "m_flDistance": 3652, + "m_hEntityBlocker": 3784, + "m_vecAxis": 3640, + "m_vecBackBoundsMax": 3768, + "m_vecBackBoundsMin": 3756, + "m_vecForwardBoundsMax": 3744, + "m_vecForwardBoundsMin": 3732 + }, + "CPropDoorRotatingBreakable": { + "m_bBreakable": 3792, + "m_currentDamageState": 3796, + "m_damageStates": 3800, + "m_isAbleToCloseAreaPortals": 3793 + }, + "CPulseCell_Inflow_GameEvent": { + "m_EventName": 112 + }, + "CPulseCell_Outflow_PlayVCD": { + "m_OnFinished": 80, + "m_Triggers": 96, + "m_vcdFilename": 72 + }, + "CPulseCell_SoundEventStart": { + "m_Type": 72 + }, + "CPulseCell_Step_EntFire": { + "m_Input": 72 + }, + "CPulseCell_Step_SetAnimGraphParam": { + "m_ParamName": 72 + }, + "CPulseCell_Value_FindEntByName": { + "m_EntityType": 72 + }, + "CRR_Response": { + "m_Followup": 384, + "m_Params": 328, + "m_Type": 0, + "m_fMatchScore": 360, + "m_pchCriteriaNames": 440, + "m_pchCriteriaValues": 464, + "m_szMatchingRule": 193, + "m_szResponseName": 1, + "m_szSpeakerContext": 368, + "m_szWorldContext": 376 + }, + "CRagdollConstraint": { + "m_xfriction": 1312, + "m_xmax": 1292, + "m_xmin": 1288, + "m_yfriction": 1316, + "m_ymax": 1300, + "m_ymin": 1296, + "m_zfriction": 1320, + "m_zmax": 1308, + "m_zmin": 1304 + }, + "CRagdollMagnet": { + "m_axis": 1212, + "m_bDisabled": 1200, + "m_force": 1208, + "m_radius": 1204 + }, + "CRagdollManager": { + "m_bSaveImportant": 1208, + "m_iCurrentMaxRagdollCount": 1200, + "m_iMaxRagdollCount": 1204 + }, + "CRagdollProp": { + "m_allAsleep": 2480, + "m_bFirstCollisionAfterLaunch": 2481, + "m_bHasBeenPhysgunned": 2552, + "m_bShouldDeleteActivationRecord": 2616, + "m_bShouldTeleportPhysics": 2553, + "m_bStartDisabled": 2416, + "m_bValidatePoweredRagdollPose": 2712, + "m_flAwakeTime": 2520, + "m_flBlendWeight": 2556, + "m_flDefaultFadeScale": 2560, + "m_flFadeOutStartTime": 2500, + "m_flFadeTime": 2504, + "m_flLastOriginChangeTime": 2524, + "m_flLastPhysicsInfluenceTime": 2496, + "m_hDamageEntity": 2484, + "m_hKiller": 2488, + "m_hPhysicsAttacker": 2492, + "m_hRagdollSource": 2472, + "m_lastUpdateTickCount": 2476, + "m_nBloodColor": 2528, + "m_ragAngles": 2448, + "m_ragPos": 2424, + "m_ragdoll": 2360, + "m_ragdollMaxs": 2592, + "m_ragdollMins": 2568, + "m_strOriginClassName": 2536, + "m_strSourceClassName": 2544, + "m_vecLastOrigin": 2508 + }, + "CRagdollPropAttached": { + "m_attachmentPointBoneSpace": 2784, + "m_attachmentPointRagdollSpace": 2796, + "m_bShouldDeleteAttachedActivationRecord": 2824, + "m_bShouldDetach": 2808, + "m_boneIndexAttached": 2776, + "m_ragdollAttachedObjectIndex": 2780 + }, + "CRandSimTimer": { + "m_maxInterval": 12, + "m_minInterval": 8 + }, + "CRandStopwatch": { + "m_maxInterval": 16, + "m_minInterval": 12 + }, + "CRangeFloat": { + "m_pValue": 0 + }, + "CRangeInt": { + "m_pValue": 0 + }, + "CRectLight": { + "m_bShowLight": 2360 + }, + "CRemapFloat": { + "m_pValue": 0 + }, + "CRenderComponent": { + "__m_pChainEntity": 16, + "m_bEnableRendering": 96, + "m_bInterpolationReadyToDraw": 176, + "m_bIsRenderingWithViewModels": 80, + "m_nSplitscreenFlags": 84 + }, + "CResponseCriteriaSet": { + "m_bOverrideOnAppend": 44, + "m_nNumPrefixedContexts": 40 + }, + "CResponseQueue": { + "m_ExpresserTargets": 80 + }, + "CResponseQueue::CDeferredResponse": { + "m_bResponseValid": 568, + "m_contexts": 16, + "m_fDispatchTime": 64, + "m_hIssuer": 68, + "m_response": 80 + }, + "CRetakeGameRules": { + "m_bBlockersPresent": 252, + "m_bRoundInProgress": 253, + "m_iBombSite": 260, + "m_iFirstSecondHalfRound": 256, + "m_nMatchSeed": 248 + }, + "CRevertSaved": { + "m_Duration": 1796, + "m_HoldTime": 1800, + "m_loadTime": 1792 + }, + "CRopeKeyframe": { + "m_RopeFlags": 1800, + "m_RopeLength": 1850, + "m_Slack": 1816, + "m_Subdiv": 1848, + "m_TextureScale": 1824, + "m_Width": 1820, + "m_bConstrainBetweenEndpoints": 1829, + "m_bCreatedFromMapFile": 1853, + "m_bEndPointValid": 1861, + "m_bStartPointValid": 1860, + "m_fLockedPoints": 1852, + "m_flScrollSpeed": 1856, + "m_hEndPoint": 1868, + "m_hStartPoint": 1864, + "m_iEndAttachment": 1873, + "m_iNextLinkName": 1808, + "m_iRopeMaterialModelIndex": 1840, + "m_iStartAttachment": 1872, + "m_nChangeCount": 1849, + "m_nSegments": 1828, + "m_strRopeMaterialModel": 1832 + }, + "CRotDoor": { + "m_bSolidBsp": 2440 + }, + "CRuleEntity": { + "m_iszMaster": 1792 + }, + "CRulePointEntity": { + "m_Score": 1800 + }, + "CSAdditionalMatchStats_t": { + "m_iRoundsWonWithoutPurchase": 32, + "m_iRoundsWonWithoutPurchaseTotal": 36, + "m_maxNumRoundsSurvived": 24, + "m_numClutchKills": 44, + "m_numFirstKills": 40, + "m_numPistolKills": 48, + "m_numRoundsSurvived": 20, + "m_numRoundsSurvivedTotal": 28, + "m_numSniperKills": 52 + }, + "CSAdditionalPerRoundStats_t": { + "m_bombCarrierkills": 8, + "m_iBurnDamageInflicted": 12, + "m_iDinks": 16, + "m_killsWhileBlind": 4, + "m_numChickensKilled": 0 + }, + "CSMatchStats_t": { + "m_i1v1Count": 156, + "m_i1v1Wins": 160, + "m_i1v2Count": 164, + "m_i1v2Wins": 168, + "m_iEnemy2Ks": 116, + "m_iEnemy3Ks": 112, + "m_iEnemy4Ks": 108, + "m_iEnemy5Ks": 104, + "m_iEntryCount": 172, + "m_iEntryWins": 176, + "m_iFlash_Count": 132, + "m_iFlash_Successes": 136, + "m_iUtility_Count": 120, + "m_iUtility_Enemies": 128, + "m_iUtility_Successes": 124, + "m_nHealthPointsDealtTotal": 144, + "m_nHealthPointsRemovedTotal": 140, + "m_nShotsFiredTotal": 148, + "m_nShotsOnTargetTotal": 152 + }, + "CSPerRoundStats_t": { + "m_iAssists": 56, + "m_iCashEarned": 88, + "m_iDamage": 60, + "m_iDeaths": 52, + "m_iEnemiesFlashed": 96, + "m_iEquipmentValue": 64, + "m_iHeadShotKills": 80, + "m_iKillReward": 72, + "m_iKills": 48, + "m_iLiveTime": 76, + "m_iMoneySaved": 68, + "m_iObjective": 84, + "m_iUtilityDamage": 92 + }, + "CSceneEntity": { + "m_BusyActor": 2552, + "m_OnCanceled": 1528, + "m_OnCompletion": 1488, + "m_OnPaused": 1568, + "m_OnResumed": 1608, + "m_OnStart": 1448, + "m_OnTrigger": 1648, + "m_bAutogenerated": 1323, + "m_bAutomated": 1344, + "m_bBreakOnNonIdle": 1370, + "m_bCancelAtNextInterrupt": 1336, + "m_bCompletedEarly": 2442, + "m_bInterruptSceneFinished": 2443, + "m_bInterrupted": 2441, + "m_bInterruptedActorsScenes": 1369, + "m_bIsPlayingBack": 1320, + "m_bMultiplayer": 1322, + "m_bPauseAtNextInterrupt": 1366, + "m_bPaused": 1321, + "m_bPausedViaInput": 1365, + "m_bRestoring": 2444, + "m_bSceneMissing": 2440, + "m_bWaitingForActor": 1367, + "m_bWaitingForInterrupt": 1368, + "m_bWaitingForResumeScene": 1364, + "m_fPitch": 1340, + "m_flAutomationDelay": 1352, + "m_flAutomationTime": 1356, + "m_flCurrentTime": 1328, + "m_flForceClientTime": 1324, + "m_flFrameTime": 1332, + "m_hActivator": 2548, + "m_hActor": 2544, + "m_hActorList": 1376, + "m_hInterruptScene": 2432, + "m_hListManagers": 2472, + "m_hNotifySceneCompletion": 2448, + "m_hRemoveActorList": 1400, + "m_hTarget1": 1288, + "m_hTarget2": 1292, + "m_hTarget3": 1296, + "m_hTarget4": 1300, + "m_hTarget5": 1304, + "m_hTarget6": 1308, + "m_hTarget7": 1312, + "m_hTarget8": 1316, + "m_hWaitingForThisResumeScene": 1360, + "m_iPlayerDeathBehavior": 2556, + "m_iszResumeSceneFile": 1216, + "m_iszSceneFile": 1208, + "m_iszSoundName": 2536, + "m_iszTarget1": 1224, + "m_iszTarget2": 1232, + "m_iszTarget3": 1240, + "m_iszTarget4": 1248, + "m_iszTarget5": 1256, + "m_iszTarget6": 1264, + "m_iszTarget7": 1272, + "m_iszTarget8": 1280, + "m_nAutomatedAction": 1348, + "m_nInterruptCount": 2436, + "m_nSceneFlushCounter": 1440, + "m_nSceneStringIndex": 1444 + }, + "CSceneEventInfo": { + "m_bClientSide": 92, + "m_bHasArrived": 17, + "m_bIsGesture": 40, + "m_bIsMoving": 16, + "m_bShouldRemove": 41, + "m_bStarted": 93, + "m_flFacingYaw": 28, + "m_flInitialYaw": 20, + "m_flNext": 36, + "m_flTargetYaw": 24, + "m_flWeight": 12, + "m_hSequence": 8, + "m_hTarget": 84, + "m_iLayer": 0, + "m_iPriority": 4, + "m_nSceneEventId": 88, + "m_nType": 32 + }, + "CSceneListManager": { + "m_hListManagers": 1200, + "m_hScenes": 1352, + "m_iszScenes": 1224 + }, + "CScriptComponent": { + "m_scriptClassName": 48 + }, + "CScriptItem": { + "m_MoveTypeOverride": 2608, + "m_OnPlayerPickup": 2568 + }, + "CScriptNavBlocker": { + "m_vExtent": 1808 + }, + "CScriptTriggerHurt": { + "m_vExtent": 2376 + }, + "CScriptTriggerMultiple": { + "m_vExtent": 2256 + }, + "CScriptTriggerOnce": { + "m_vExtent": 2256 + }, + "CScriptTriggerPush": { + "m_vExtent": 2256 + }, + "CScriptUniformRandomStream": { + "m_hScriptScope": 8, + "m_nInitialSeed": 156 + }, + "CScriptedSequence": { + "m_ConflictResponse": 1364, + "m_OnActionStartOrLoop": 1408, + "m_OnBeginSequence": 1368, + "m_OnCancelFailedSequence": 1568, + "m_OnCancelSequence": 1528, + "m_OnEndSequence": 1448, + "m_OnPostIdleEndSequence": 1488, + "m_OnScriptEvent": 1608, + "m_bAllowCustomInterruptConditions": 1343, + "m_bDisableNPCCollisions": 1277, + "m_bDontAddModifiers": 1279, + "m_bDontCancelOtherSequences": 1352, + "m_bEnsureOnNavmeshOnFinish": 1356, + "m_bForceSynch": 1353, + "m_bForcedAnimatedEveryTick": 1327, + "m_bIgnoreGravity": 1276, + "m_bInitiatedSelfDelete": 1341, + "m_bIsPlayingAction": 1270, + "m_bIsPlayingEntry": 1269, + "m_bIsPlayingPostIdle": 1271, + "m_bIsPlayingPreIdle": 1268, + "m_bIsTeleportingDueToMoveTo": 1342, + "m_bKeepAnimgraphLockedPost": 1278, + "m_bLoopActionSequence": 1273, + "m_bLoopPostIdleSequence": 1274, + "m_bLoopPreIdleSequence": 1272, + "m_bPositionRelativeToOtherEntity": 1328, + "m_bPrevAnimatedEveryTick": 1326, + "m_bPreventUpdateYawOnFinish": 1355, + "m_bSynchPostIdles": 1275, + "m_bTargetWasAsleep": 1354, + "m_bThinking": 1340, + "m_bWaitForBeginSequence": 1308, + "m_flAngRate": 1296, + "m_flMoveInterpTime": 1292, + "m_flPlayAnimFadeInTime": 1288, + "m_flRadius": 1280, + "m_flRepeat": 1284, + "m_hForcedTarget": 1348, + "m_hInteractionMainEntity": 1968, + "m_hLastFoundEntity": 1344, + "m_hNextCine": 1336, + "m_hTargetEnt": 1332, + "m_iDelay": 1300, + "m_iPlayerDeathBehavior": 1972, + "m_interruptable": 1324, + "m_iszEntity": 1248, + "m_iszEntry": 1200, + "m_iszModifierToAddOnPlay": 1232, + "m_iszNextScript": 1240, + "m_iszPlay": 1216, + "m_iszPostIdle": 1224, + "m_iszPreIdle": 1208, + "m_iszSyncGroup": 1256, + "m_matOtherToMain": 1936, + "m_nMoveTo": 1264, + "m_onDeathBehavior": 1360, + "m_savedCollisionGroup": 1320, + "m_savedFlags": 1316, + "m_saved_effects": 1312, + "m_sequenceStarted": 1325, + "m_startTime": 1304 + }, + "CSensorGrenadeProjectile": { + "m_fExpireTime": 2760, + "m_fNextDetectPlayerSound": 2764, + "m_hDisplayGrenade": 2768 + }, + "CShatterGlassShard": { + "m_ShatterStressType": 68, + "m_bAverageVertPositionIsValid": 132, + "m_bCreatedModel": 84, + "m_bFlaggedForRemoval": 154, + "m_bShatterRateLimited": 160, + "m_bStressPositionAIsValid": 152, + "m_bStressPositionBIsValid": 153, + "m_flArea": 108, + "m_flLongestAcross": 96, + "m_flLongestEdge": 88, + "m_flPhysicsEntitySpawnedAtTime": 156, + "m_flShortestAcross": 100, + "m_flShortestEdge": 92, + "m_flSumOfAllEdges": 104, + "m_hEntityHittingMe": 164, + "m_hModel": 48, + "m_hParentPanel": 60, + "m_hParentShard": 64, + "m_hPhysicsEntity": 56, + "m_hShardHandle": 8, + "m_nOnFrameEdge": 112, + "m_nParentPanelsNthShard": 116, + "m_nSubShardGeneration": 120, + "m_vLocalPanelSpaceOrigin": 40, + "m_vecAverageVertPosition": 124, + "m_vecNeighbors": 168, + "m_vecPanelSpaceStressPositionA": 136, + "m_vecPanelSpaceStressPositionB": 144, + "m_vecPanelVertices": 16, + "m_vecStressVelocity": 72 + }, + "CShatterGlassShardPhysics": { + "m_ShardDesc": 3104, + "m_bDebris": 3096, + "m_hParentShard": 3100 + }, + "CSimTimer": { + "m_interval": 8 + }, + "CSimpleSimTimer": { + "m_nWorldGroupId": 4, + "m_next": 0 + }, + "CSingleplayRules": { + "m_bSinglePlayerGameEnding": 144 + }, + "CSkeletonAnimationController": { + "m_pSkeletonInstance": 8 + }, + "CSkeletonInstance": { + "m_bDirtyMotionType": 0, + "m_bDisableSolidCollisionsForHierarchy": 914, + "m_bIsAnimationEnabled": 912, + "m_bIsGeneratingLatchedParentSpaceState": 0, + "m_bUseParentRenderBounds": 913, + "m_materialGroup": 916, + "m_modelState": 352, + "m_nHitboxSet": 920 + }, + "CSkillDamage": { + "m_flDamage": 0, + "m_flPhysicsForceDamage": 16 + }, + "CSkillFloat": { + "m_pValue": 0 + }, + "CSkillInt": { + "m_pValue": 0 + }, + "CSkyCamera": { + "m_bUseAngles": 1348, + "m_pNext": 1352, + "m_skyboxData": 1200, + "m_skyboxSlotToken": 1344 + }, + "CSkyboxReference": { + "m_hSkyCamera": 1204, + "m_worldGroupId": 1200 + }, + "CSmokeGrenadeProjectile": { + "m_VoxelFrameData": 2824, + "m_bDidSmokeEffect": 2788, + "m_flLastBounce": 2848, + "m_fllastSimulationTime": 2852, + "m_nRandomSeed": 2792, + "m_nSmokeEffectTickBegin": 2784, + "m_vSmokeColor": 2796, + "m_vSmokeDetonationPos": 2808 + }, + "CSmoothFunc": { + "m_flSmoothAmplitude": 8, + "m_flSmoothBias": 12, + "m_flSmoothDuration": 16, + "m_flSmoothRemainingTime": 20, + "m_nSmoothDir": 24 + }, + "CSound": { + "m_bHasOwner": 48, + "m_bNoExpirationTime": 30, + "m_flExpireTime": 24, + "m_flOcclusionScale": 12, + "m_hOwner": 0, + "m_hTarget": 4, + "m_iNext": 28, + "m_iNextAudible": 20, + "m_iType": 16, + "m_iVolume": 8, + "m_ownerChannelIndex": 32, + "m_vecOrigin": 36 + }, + "CSoundAreaEntityBase": { + "m_bDisabled": 1200, + "m_iszSoundAreaType": 1208, + "m_vPos": 1216 + }, + "CSoundAreaEntityOrientedBox": { + "m_vMax": 1244, + "m_vMin": 1232 + }, + "CSoundAreaEntitySphere": { + "m_flRadius": 1232 + }, + "CSoundEnt": { + "m_SoundPool": 1212, + "m_cLastActiveSounds": 1208, + "m_iActiveSound": 1204, + "m_iFreeSound": 1200 + }, + "CSoundEnvelope": { + "m_current": 0, + "m_forceupdate": 12, + "m_rate": 8, + "m_target": 4 + }, + "CSoundEventAABBEntity": { + "m_vMaxs": 1380, + "m_vMins": 1368 + }, + "CSoundEventEntity": { + "m_bSaveRestore": 1203, + "m_bSavedIsPlaying": 1204, + "m_bStartOnSpawn": 1200, + "m_bStopOnNew": 1202, + "m_bToLocalPlayer": 1201, + "m_flSavedElapsedTime": 1208, + "m_hSource": 1360, + "m_iszAttachmentName": 1224, + "m_iszSoundName": 1344, + "m_iszSourceEntityName": 1216, + "m_onGUIDChanged": 1232, + "m_onSoundFinished": 1272 + }, + "CSoundEventOBBEntity": { + "m_vMaxs": 1380, + "m_vMins": 1368 + }, + "CSoundEventParameter": { + "m_flFloatValue": 1216, + "m_iszParamName": 1208 + }, + "CSoundEventPathCornerEntity": { + "bPlaying": 1392, + "m_flDistMaxSqr": 1384, + "m_flDistanceMax": 1380, + "m_flDotProductMax": 1388, + "m_iCountMax": 1376, + "m_iszPathCorner": 1368 + }, + "CSoundOpvarSetAABBEntity": { + "m_nAABBDirection": 1656, + "m_vDistanceInnerMaxs": 1620, + "m_vDistanceInnerMins": 1608, + "m_vDistanceOuterMaxs": 1644, + "m_vDistanceOuterMins": 1632, + "m_vInnerMaxs": 1672, + "m_vInnerMins": 1660, + "m_vOuterMaxs": 1696, + "m_vOuterMins": 1684 + }, + "CSoundOpvarSetEntity": { + "m_OpvarValueString": 1248, + "m_bSetOnSpawn": 1256, + "m_flOpvarValue": 1240, + "m_iszOperatorName": 1216, + "m_iszOpvarName": 1224, + "m_iszStackName": 1208, + "m_nOpvarIndex": 1236, + "m_nOpvarType": 1232 + }, + "CSoundOpvarSetOBBWindEntity": { + "m_flWindMapMax": 1412, + "m_flWindMapMin": 1408, + "m_flWindMax": 1404, + "m_flWindMin": 1400, + "m_vDistanceMaxs": 1388, + "m_vDistanceMins": 1376, + "m_vMaxs": 1364, + "m_vMins": 1352 + }, + "CSoundOpvarSetPathCornerEntity": { + "m_flDistMaxSqr": 1636, + "m_flDistMinSqr": 1632, + "m_iszPathCornerEntityName": 1640 + }, + "CSoundOpvarSetPointBase": { + "m_bDisabled": 1200, + "m_bUseAutoCompare": 1348, + "m_hSource": 1204, + "m_iOpvarIndex": 1344, + "m_iszOperatorName": 1328, + "m_iszOpvarName": 1336, + "m_iszSourceEntityName": 1216, + "m_iszStackName": 1320, + "m_vLastPosition": 1304 + }, + "CSoundOpvarSetPointEntity": { + "m_OnEnter": 1352, + "m_OnExit": 1392, + "m_bAutoDisable": 1432, + "m_bSetValueOnDisable": 1532, + "m_flDistanceMapMax": 1512, + "m_flDistanceMapMin": 1508, + "m_flDistanceMax": 1504, + "m_flDistanceMin": 1500, + "m_flDynamicMaximumOcclusion": 1556, + "m_flOcclusionMax": 1524, + "m_flOcclusionMin": 1520, + "m_flOcclusionRadius": 1516, + "m_flPathingDistanceNormFactor": 1576, + "m_flValSetOnDisable": 1528, + "m_hDynamicEntity": 1560, + "m_iszDynamicEntityName": 1568, + "m_nPathingSourceIndex": 1604, + "m_nSimulationMode": 1536, + "m_nVisibilitySamples": 1540, + "m_vDynamicProxyPoint": 1544, + "m_vPathingListenerPos": 1592, + "m_vPathingSourcePos": 1580 + }, + "CSoundPatch": { + "m_Filter": 88, + "m_bUpdatedSoundOrigin": 132, + "m_flCloseCaptionDuration": 128, + "m_flLastTime": 52, + "m_hEnt": 64, + "m_isPlaying": 84, + "m_iszClassName": 136, + "m_iszSoundScriptName": 56, + "m_pitch": 8, + "m_shutdownTime": 48, + "m_soundEntityIndex": 68, + "m_soundOrigin": 72, + "m_volume": 24 + }, + "CSoundStackSave": { + "m_iszStackName": 1200 + }, + "CSpotlightEnd": { + "m_Radius": 1796, + "m_flLightScale": 1792, + "m_vSpotlightDir": 1800, + "m_vSpotlightOrg": 1812 + }, + "CSprite": { + "m_bWorldSpaceScale": 1848, + "m_flBrightnessDuration": 1836, + "m_flBrightnessTimeStart": 1888, + "m_flDestScale": 1872, + "m_flDieTime": 1816, + "m_flFrame": 1812, + "m_flGlowProxySize": 1852, + "m_flHDRColorScale": 1856, + "m_flLastTime": 1860, + "m_flMaxFrame": 1864, + "m_flScaleDuration": 1844, + "m_flScaleTimeStart": 1876, + "m_flSpriteFramerate": 1808, + "m_flSpriteScale": 1840, + "m_flStartScale": 1868, + "m_hAttachedToEntity": 1800, + "m_hSpriteMaterial": 1792, + "m_nAttachment": 1804, + "m_nBrightness": 1832, + "m_nDestBrightness": 1884, + "m_nSpriteHeight": 1896, + "m_nSpriteWidth": 1892, + "m_nStartBrightness": 1880 + }, + "CStopwatch": { + "m_interval": 12 + }, + "CStopwatchBase": { + "m_fIsRunning": 8 + }, + "CSun": { + "m_bOn": 1824, + "m_bmaxColor": 1825, + "m_clrOverlay": 1804, + "m_flAlphaHaze": 1840, + "m_flAlphaHdr": 1844, + "m_flAlphaScale": 1848, + "m_flFarZScale": 1856, + "m_flHDRColorScale": 1852, + "m_flHazeScale": 1836, + "m_flRotation": 1832, + "m_flSize": 1828, + "m_iszEffectName": 1808, + "m_iszSSEffectName": 1816, + "m_vDirection": 1792 + }, + "CSurvivalGameRules": { + "m_SpawnTileState": 292, + "m_SurvivalGameRuleDecisionTypes": 1568, + "m_SurvivalGameRuleDecisionValues": 1632, + "m_bBoundsInitialized": 8, + "m_bSurvivalEventFired_FadeEveryoneOutFromMapSelection": 1961, + "m_bSurvivalEventFired_FirstParadropIncoming": 1963, + "m_bSurvivalEventFired_PlayedWinnerSurrenderAnim": 2040, + "m_bSurvivalEventFired_TimeForSmokeBeacons": 1962, + "m_bSurvivalEventFired_WarnedEveryoneAboutRespawnEnding": 1964, + "m_bWaitingForMoreThanOnePlayer": 1960, + "m_flLastDroneSpawnTime": 2120, + "m_flLastThinkTime": 1700, + "m_flLastWinConditionDetectedTime": 1968, + "m_flSpawnSelectionTimeEndCurrentStage": 520, + "m_flSpawnSelectionTimeEndLastStage": 524, + "m_flSpawnSelectionTimeStartCurrentStage": 516, + "m_flSurvivalStartTime": 1696, + "m_flTabletHexOriginX": 532, + "m_flTabletHexOriginY": 536, + "m_flTabletHexSize": 540, + "m_flTimeOfLastParadrop": 1984, + "m_hSpawnChopper": 2152, + "m_hWinnerPlayer": 2044, + "m_iPlayerSpawnHexIndices": 36, + "m_nBlockedTileIndices": 1704, + "m_nEntIndexOfKilledPlayerCheckingWinConditions": 1980, + "m_nEntIndexOfRunnerUpPlayer": 1976, + "m_nWinConditionStageProgress": 1972, + "m_roundData_playerPositions": 1056, + "m_roundData_playerTeams": 1312, + "m_roundData_playerXuids": 544, + "m_spawnStage": 528, + "m_vecLoadedOutPlayers": 2048, + "m_vecMetalCrates": 2096, + "m_vecPlayAreaMaxs": 24, + "m_vecPlayAreaMins": 12, + "m_vecPlayerSpawnLocations": 1936, + "m_vecRespawnedPlayers": 2072 + }, + "CSurvivalSpawnChopper": { + "m_bCircling": 2370, + "m_bFlipX": 2368, + "m_bFlipY": 2369, + "m_flFlightPathRotationOffset": 2364, + "m_flLastPassengerCheckTime": 2372, + "m_flSpawnTimeStamp": 2360, + "m_pSoundLoop": 2352 + }, + "CTablet": { + "m_bPendingBuyMenu": 3720, + "m_bTabletReceptionIsBlocked": 3916, + "m_flBootTime": 3924, + "m_flLastClosePoseParamVal": 4496, + "m_flLastPlayerOccupiedGridUpdate": 4316, + "m_flLastTabletBlockedTime": 4320, + "m_flNextCheckForIncomingDronesTime": 4312, + "m_flScanProgress": 3920, + "m_flShowMapTime": 3928, + "m_flUpgradeExpirationTime": 3724, + "m_nContractKillGridHighResIndex": 3912, + "m_nContractKillGridIndex": 3908, + "m_nLastPurchaseIndex": 4012, + "m_skinState": 3944, + "m_vecLastPlayerPosition": 4304, + "m_vecLocalHexFlags": 3740, + "m_vecNearestMetalCratePos": 3932, + "m_vecNotificationIds": 3948, + "m_vecNotificationTimestamps": 3980, + "m_vecPlayerPositionHistory": 4016 + }, + "CTakeDamageInfo": { + "m_bInTakeDamageFlow": 152, + "m_bShouldBleed": 100, + "m_bShouldSpark": 101, + "m_bitsDamageType": 72, + "m_flDamage": 68, + "m_flOriginalDamage": 96, + "m_hAbility": 64, + "m_hAttacker": 60, + "m_hInflictor": 56, + "m_hScriptInstance": 120, + "m_iAmmoType": 80, + "m_iDamageCustom": 76, + "m_nDamageFlags": 112, + "m_nNumObjectsPenetrated": 116, + "m_vecDamageDirection": 44, + "m_vecDamageForce": 8, + "m_vecDamagePosition": 20, + "m_vecReportedPosition": 32 + }, + "CTakeDamageResult": { + "m_nDamageTaken": 4, + "m_nHealthLost": 0 + }, + "CTakeDamageSummaryScopeGuard": { + "m_vecSummaries": 8 + }, + "CTankTargetChange": { + "m_newTarget": 1200, + "m_newTargetName": 1216 + }, + "CTankTrainAI": { + "m_engineSoundName": 1240, + "m_hTargetEntity": 1204, + "m_hTrain": 1200, + "m_movementSoundName": 1248, + "m_soundPlaying": 1208, + "m_startSoundName": 1232, + "m_targetEntityName": 1256 + }, + "CTeam": { + "m_aPlayerControllers": 1200, + "m_aPlayers": 1224, + "m_iScore": 1248, + "m_szTeamname": 1252 + }, + "CTestEffect": { + "m_flBeamTime": 1400, + "m_flStartTime": 1496, + "m_iBeam": 1204, + "m_iLoop": 1200, + "m_pBeam": 1208 + }, + "CTextureBasedAnimatable": { + "m_bLoop": 1792, + "m_flFPS": 1796, + "m_flStartFrame": 1844, + "m_flStartTime": 1840, + "m_hPositionKeys": 1800, + "m_hRotationKeys": 1808, + "m_vAnimationBoundsMax": 1828, + "m_vAnimationBoundsMin": 1816 + }, + "CTimeline": { + "m_bStopped": 544, + "m_flFinalValue": 536, + "m_flInterval": 532, + "m_flValues": 16, + "m_nBucketCount": 528, + "m_nCompressionType": 540, + "m_nValueCounts": 272 + }, + "CTimerEntity": { + "m_OnTimer": 1200, + "m_OnTimerHigh": 1240, + "m_OnTimerLow": 1280, + "m_bPauseAfterFiring": 1340, + "m_bPaused": 1356, + "m_bUpDownState": 1332, + "m_flInitialDelay": 1324, + "m_flLowerRandomBound": 1344, + "m_flRefireTime": 1328, + "m_flRemainingTime": 1352, + "m_flUpperRandomBound": 1348, + "m_iDisabled": 1320, + "m_iUseRandomTime": 1336 + }, + "CTonemapController2": { + "m_flAutoExposureMax": 1204, + "m_flAutoExposureMin": 1200, + "m_flExposureAdaptationSpeedDown": 1224, + "m_flExposureAdaptationSpeedUp": 1220, + "m_flTonemapEVSmoothingRange": 1228, + "m_flTonemapMinAvgLum": 1216, + "m_flTonemapPercentBrightPixels": 1212, + "m_flTonemapPercentTarget": 1208 + }, + "CTonemapTrigger": { + "m_hTonemapController": 2224, + "m_tonemapControllerName": 2216 + }, + "CTriggerActiveWeaponDetect": { + "m_OnTouchedActiveWeapon": 2216, + "m_iszWeaponClassName": 2256 + }, + "CTriggerBrush": { + "m_OnEndTouch": 1832, + "m_OnStartTouch": 1792, + "m_OnUse": 1872, + "m_iDontMessageParent": 1916, + "m_iInputFilter": 1912 + }, + "CTriggerBuoyancy": { + "m_BuoyancyHelper": 2216, + "m_flFluidDensity": 2256 + }, + "CTriggerDetectBulletFire": { + "m_OnDetectedBulletFire": 2224, + "m_bPlayerFireOnly": 2216 + }, + "CTriggerDetectExplosion": { + "m_OnDetectedExplosion": 2272 + }, + "CTriggerFan": { + "m_RampTimer": 2272, + "m_bAddNoise": 2267, + "m_bFalloff": 2264, + "m_bPushPlayer": 2265, + "m_bRampDown": 2266, + "m_flForce": 2252, + "m_flPlayerForce": 2256, + "m_flRampTime": 2260, + "m_vFanEnd": 2228, + "m_vFanOrigin": 2216, + "m_vNoise": 2240 + }, + "CTriggerGameEvent": { + "m_strEndTouchEventName": 2224, + "m_strStartTouchEventName": 2216, + "m_strTriggerID": 2232 + }, + "CTriggerHurt": { + "m_OnHurt": 2272, + "m_OnHurtPlayer": 2312, + "m_bNoDmgForce": 2244, + "m_bitsDamageInflict": 2236, + "m_damageModel": 2240, + "m_flDamage": 2220, + "m_flDamageCap": 2224, + "m_flForgivenessDelay": 2232, + "m_flLastDmgTime": 2228, + "m_flOriginalDamage": 2216, + "m_hurtEntities": 2352, + "m_hurtThinkPeriod": 2264, + "m_thinkAlways": 2260, + "m_vDamageForce": 2248 + }, + "CTriggerImpact": { + "m_flMagnitude": 2256, + "m_flNoise": 2260, + "m_flViewkick": 2264, + "m_pOutputForce": 2272 + }, + "CTriggerLerpObject": { + "m_OnLerpFinished": 2336, + "m_OnLerpStarted": 2296, + "m_bLerpRestoreMoveType": 2248, + "m_bSingleLerpObject": 2249, + "m_flLerpDuration": 2244, + "m_hLerpTarget": 2224, + "m_hLerpTargetAttachment": 2240, + "m_iszLerpEffect": 2280, + "m_iszLerpSound": 2288, + "m_iszLerpTarget": 2216, + "m_iszLerpTargetAttachment": 2232, + "m_vecLerpingObjects": 2256 + }, + "CTriggerLook": { + "m_OnEndLook": 2376, + "m_OnStartLook": 2336, + "m_OnTimeout": 2296, + "m_b2DFOV": 2282, + "m_bIsLooking": 2281, + "m_bTestOcclusion": 2288, + "m_bTimeoutFired": 2280, + "m_bUseVelocity": 2283, + "m_flFieldOfView": 2260, + "m_flLookTime": 2264, + "m_flLookTimeLast": 2272, + "m_flLookTimeTotal": 2268, + "m_flTimeoutDuration": 2276, + "m_hActivator": 2284, + "m_hLookTarget": 2256 + }, + "CTriggerMultiple": { + "m_OnTrigger": 2216 + }, + "CTriggerPhysics": { + "m_angularDamping": 2248, + "m_angularLimit": 2244, + "m_bCollapseToForcePoint": 2276, + "m_bConvertToDebrisWhenPossible": 2304, + "m_flDampingRatio": 2260, + "m_flFrequency": 2256, + "m_gravityScale": 2232, + "m_linearDamping": 2240, + "m_linearForce": 2252, + "m_linearLimit": 2236, + "m_vecLinearForceDirection": 2292, + "m_vecLinearForcePointAt": 2264, + "m_vecLinearForcePointAtWorld": 2280 + }, + "CTriggerProximity": { + "m_NearestEntityDistance": 2240, + "m_fRadius": 2232, + "m_hMeasureTarget": 2216, + "m_iszMeasureTarget": 2224, + "m_nTouchers": 2236 + }, + "CTriggerPush": { + "m_angPushEntitySpace": 2216, + "m_bTriggerOnStartTouch": 2240, + "m_flAlternateTicksFix": 2244, + "m_flPushSpeed": 2248, + "m_vecPushDirEntitySpace": 2228 + }, + "CTriggerRemove": { + "m_OnRemove": 2216 + }, + "CTriggerSafeMoneyGather": { + "m_vecCashBundles": 2216 + }, + "CTriggerSave": { + "m_bForceNewLevelUnit": 2216, + "m_fDangerousTimer": 2220, + "m_minHitPoints": 2224 + }, + "CTriggerSndSosOpvar": { + "m_VecNormPos": 3068, + "m_bVolIs2D": 2296, + "m_flCenterSize": 2252, + "m_flMaxVal": 2260, + "m_flMinVal": 2256, + "m_flNormCenterSize": 3080, + "m_flPosition": 2240, + "m_flWait": 2264, + "m_hTouchingPlayers": 2216, + "m_operatorName": 2288, + "m_operatorNameChar": 2809, + "m_opvarName": 2272, + "m_opvarNameChar": 2297, + "m_stackName": 2280, + "m_stackNameChar": 2553 + }, + "CTriggerSoundscape": { + "m_SoundscapeName": 2224, + "m_hSoundscape": 2216, + "m_spectators": 2232 + }, + "CTriggerTeleport": { + "m_bMirrorPlayer": 2225, + "m_bUseLandmarkAngles": 2224, + "m_iLandmark": 2216 + }, + "CTriggerToggleSave": { + "m_bDisabled": 2216 + }, + "CTriggerVolume": { + "m_hFilter": 1800, + "m_iFilterName": 1792 + }, + "CTripWireFireProjectile": { + "m_bTripWireEndPositionsUsed": 2788, + "m_flAttachTime": 2664, + "m_hStuckToEnt": 2800, + "m_nLastStuckToEntModelIndex": 2804, + "m_nWireSoundsPlayed": 2860, + "m_vecTrapSetPosition": 2848, + "m_vecTripWireEndPositions": 2668, + "m_xformStuckToEnt": 2816 + }, + "CVoteController": { + "m_VoteOptions": 1632, + "m_acceptingVotesTimer": 1240, + "m_arrVotedUsers": 1312, + "m_bIsYesNoVote": 1232, + "m_executeCommandTimer": 1264, + "m_iActiveIssueIndex": 1200, + "m_iOnlyTeamToVote": 1204, + "m_nHighestCountIndex": 1600, + "m_nPotentialVotes": 1228, + "m_nVoteOptionCount": 1208, + "m_nVotesCast": 1336, + "m_playerHoldingVote": 1592, + "m_playerOverrideForVote": 1596, + "m_potentialIssues": 1608, + "m_resetVoteTimer": 1288 + }, + "CWeaponBaseItem": { + "m_SequenceCompleteTimer": 3712, + "m_bRedraw": 3736 + }, + "CWeaponCSBase": { + "m_IronSightController": 3672, + "m_OnPlayerPickup": 3472, + "m_bBurstMode": 3560, + "m_bCanBePickedUp": 3600, + "m_bFireOnEmpty": 3468, + "m_bFiredOutOfAmmoEvent": 3662, + "m_bInReload": 3568, + "m_bIsHauledBack": 3576, + "m_bPlayerAmmoStockOnPickup": 3416, + "m_bPlayerFireEventIsPrimary": 3388, + "m_bReloadVisuallyComplete": 3569, + "m_bReloadsWithClips": 3432, + "m_bRequireUseToTouch": 3417, + "m_bSilencerOn": 3577, + "m_bUseCanOverrideNextOwnerTouchTime": 3601, + "m_bWasOwnedByCT": 3660, + "m_bWasOwnedByTerrorist": 3661, + "m_donated": 3652, + "m_fAccuracyPenalty": 3536, + "m_fAccuracySmoothedForZoom": 3544, + "m_fLastShotTime": 3656, + "m_fScopeZoomEndTime": 3548, + "m_flDroppedAtTime": 3572, + "m_flFireSequenceStartTime": 3376, + "m_flLastAccuracyUpdateTime": 3540, + "m_flLastDeployTime": 3424, + "m_flLastLOSTraceFailureTime": 3700, + "m_flLastTimeInAir": 3420, + "m_flNextAttackRenderTimeOffset": 3588, + "m_flPostponeFireReadyTime": 3564, + "m_flRecoilIndex": 3556, + "m_flTimeSilencerSwitchComplete": 3580, + "m_flTimeWeaponIdle": 3464, + "m_flTurningInaccuracy": 3532, + "m_flTurningInaccuracyDelta": 3516, + "m_hPrevOwner": 3612, + "m_iIronSightMode": 3696, + "m_iNumEmptyAttacks": 3704, + "m_iOriginalTeamNumber": 3584, + "m_iRecoilIndex": 3552, + "m_nDropTick": 3616, + "m_nFireSequenceStartTimeAck": 3384, + "m_nFireSequenceStartTimeChange": 3380, + "m_nViewModelIndex": 3428, + "m_nextOwnerTouchTime": 3604, + "m_nextPrevOwnerTouchTime": 3608, + "m_numRemoveUnownedWeaponThink": 3664, + "m_seqFirePrimary": 3396, + "m_seqFireSecondary": 3400, + "m_seqIdle": 3392, + "m_vecTurningInaccuracyEyeDirLast": 3520, + "m_weaponMode": 3512 + }, + "CWeaponCSBaseGun": { + "m_bNeedsBoltAction": 3733, + "m_bSkillBoltInterruptAvailable": 3736, + "m_bSkillBoltLiftedFireKey": 3737, + "m_bSkillReloadAvailable": 3734, + "m_bSkillReloadLiftedReloadKey": 3735, + "m_iBurstShotsRemaining": 3716, + "m_inPrecache": 3732, + "m_silencedModelIndex": 3728, + "m_zoomLevel": 3712 + }, + "CWeaponCSBaseVData": { + "m_DefaultLoadoutSlot": 3056, + "m_GearSlot": 3048, + "m_GearSlotPosition": 3052, + "m_WeaponCategory": 580, + "m_WeaponType": 576, + "m_angPivotAngle": 3352, + "m_bCannotShootUnderwater": 3091, + "m_bHasBurstMode": 3089, + "m_bHideViewModelWhenZoomed": 3305, + "m_bIsRevolver": 3090, + "m_bMeleeWeapon": 3088, + "m_bUnzoomsAfterShot": 3304, + "m_eSilencerType": 3112, + "m_flArmorRatio": 3384, + "m_flAttackMovespeedFactor": 3272, + "m_flBotAudibleRange": 3288, + "m_flCycleTime": 3124, + "m_flFlinchVelocityModifierLarge": 3400, + "m_flFlinchVelocityModifierSmall": 3404, + "m_flHeadshotMultiplier": 3380, + "m_flHeatPerShot": 3276, + "m_flIdleInterval": 3268, + "m_flInaccuracyAltSoundThreshold": 3284, + "m_flInaccuracyCrouch": 3148, + "m_flInaccuracyFire": 3188, + "m_flInaccuracyJump": 3164, + "m_flInaccuracyJumpApex": 3248, + "m_flInaccuracyJumpInitial": 3244, + "m_flInaccuracyLadder": 3180, + "m_flInaccuracyLand": 3172, + "m_flInaccuracyMove": 3196, + "m_flInaccuracyPitchShift": 3280, + "m_flInaccuracyReload": 3252, + "m_flInaccuracyStand": 3156, + "m_flIronSightFOV": 3340, + "m_flIronSightLooseness": 3348, + "m_flIronSightPivotForward": 3344, + "m_flIronSightPullUpSpeed": 3332, + "m_flIronSightPutDownSpeed": 3336, + "m_flMaxSpeed": 3132, + "m_flPenetration": 3388, + "m_flRange": 3392, + "m_flRangeModifier": 3396, + "m_flRecoilAngle": 3204, + "m_flRecoilAngleVariance": 3212, + "m_flRecoilMagnitude": 3220, + "m_flRecoilMagnitudeVariance": 3228, + "m_flRecoveryTimeCrouch": 3408, + "m_flRecoveryTimeCrouchFinal": 3416, + "m_flRecoveryTimeStand": 3412, + "m_flRecoveryTimeStandFinal": 3420, + "m_flSpread": 3140, + "m_flThrowVelocity": 3432, + "m_flTimeToIdleAfterFire": 3264, + "m_flZoomTime0": 3320, + "m_flZoomTime1": 3324, + "m_flZoomTime2": 3328, + "m_nCrosshairDeltaDistance": 3120, + "m_nCrosshairMinDistance": 3116, + "m_nDamage": 3376, + "m_nKillAward": 3076, + "m_nPrice": 3072, + "m_nPrimaryReserveAmmoMax": 3080, + "m_nRecoilSeed": 3256, + "m_nRecoveryTransitionEndBullet": 3428, + "m_nRecoveryTransitionStartBullet": 3424, + "m_nSecondaryReserveAmmoMax": 3084, + "m_nSpreadSeed": 3260, + "m_nTracerFrequency": 3236, + "m_nZoomFOV1": 3312, + "m_nZoomFOV2": 3316, + "m_nZoomLevels": 3308, + "m_sWrongTeamMsg": 3064, + "m_szAimsightLensMaskModel": 1256, + "m_szAnimClass": 3448, + "m_szAnimExtension": 3104, + "m_szEjectBrassEffect": 1928, + "m_szHeatEffect": 1704, + "m_szMagazineModel": 1480, + "m_szMuzzleFlashParticleAlt": 2152, + "m_szMuzzleFlashThirdPersonParticle": 2376, + "m_szMuzzleFlashThirdPersonParticleAlt": 2600, + "m_szName": 3096, + "m_szPlayerModel": 808, + "m_szTracerParticle": 2824, + "m_szUseRadioSubtitle": 3296, + "m_szViewModel": 584, + "m_szWorldDroppedModel": 1032, + "m_vSmokeColor": 3436, + "m_vecIronSightEyePos": 3364 + }, + "CWeaponShield": { + "m_flBulletDamageAbsorbed": 3744, + "m_flDisplayHealth": 3752, + "m_flLastBulletHitSoundTime": 3748 + }, + "CWeaponTaser": { + "m_fFireTime": 3744 + }, + "CommandToolCommand_t": { + "m_ClearDebugBits": 64, + "m_Commands": 48, + "m_EntitySpec": 40, + "m_ExecMode": 16, + "m_InternalId": 4, + "m_PeriodicExecDelay": 32, + "m_SetDebugBits": 56, + "m_ShortName": 8, + "m_SpawnGroup": 24, + "m_SpecType": 36, + "m_bEnabled": 0, + "m_bOpened": 1 + }, + "ConceptHistory_t": { + "m_response": 8, + "timeSpoken": 0 + }, + "ConstraintSoundInfo": { + "m_bPlayReversalSound": 129, + "m_bPlayTravelSound": 128, + "m_forwardAxis": 64, + "m_iszReversalSounds": 104, + "m_iszTravelSoundBack": 88, + "m_iszTravelSoundFwd": 80, + "m_soundProfile": 32, + "m_vSampler": 8 + }, + "CountdownTimer": { + "m_duration": 8, + "m_nWorldGroupId": 20, + "m_timescale": 16, + "m_timestamp": 12 + }, + "EngineCountdownTimer": { + "m_duration": 8, + "m_timescale": 16, + "m_timestamp": 12 + }, + "EntityRenderAttribute_t": { + "m_ID": 48, + "m_Values": 52 + }, + "EntitySpottedState_t": { + "m_bSpotted": 8, + "m_bSpottedByMask": 12 + }, + "Extent": { + "hi": 12, + "lo": 0 + }, + "FilterDamageType": { + "m_iDamageType": 1288 + }, + "FilterHealth": { + "m_bAdrenalineActive": 1288, + "m_iHealthMax": 1296, + "m_iHealthMin": 1292 + }, + "FilterTeam": { + "m_iFilterTeam": 1288 + }, + "GameAmmoTypeInfo_t": { + "m_nBuySize": 56, + "m_nCost": 60 + }, + "GameTick_t": { + "m_Value": 0 + }, + "GameTime_t": { + "m_Value": 0 + }, + "HullFlags_t": { + "m_bHull_Human": 0, + "m_bHull_Large": 6, + "m_bHull_LargeCentered": 7, + "m_bHull_Medium": 4, + "m_bHull_MediumTall": 8, + "m_bHull_Small": 9, + "m_bHull_SmallCentered": 1, + "m_bHull_Tiny": 3, + "m_bHull_TinyCentered": 5, + "m_bHull_WideHuman": 2 + }, + "IntervalTimer": { + "m_nWorldGroupId": 12, + "m_timestamp": 8 + }, + "ModelConfigHandle_t": { + "m_Value": 0 + }, + "ParticleIndex_t": { + "m_Value": 0 + }, + "PhysicsRagdollPose_t": { + "__m_pChainEntity": 8, + "m_Transforms": 48, + "m_hOwner": 72 + }, + "RagdollCreationParams_t": { + "m_nForceBone": 12, + "m_vForce": 0 + }, + "RelationshipOverride_t": { + "classType": 12, + "entity": 8 + }, + "Relationship_t": { + "disposition": 0, + "priority": 4 + }, + "ResponseContext_t": { + "m_fExpirationTime": 16, + "m_iszName": 0, + "m_iszValue": 8 + }, + "ResponseFollowup": { + "bFired": 48, + "followup_concept": 0, + "followup_contexts": 8, + "followup_delay": 16, + "followup_entityiodelay": 44, + "followup_entityioinput": 36, + "followup_entityiotarget": 28, + "followup_target": 20 + }, + "ResponseParams": { + "flags": 18, + "m_pFollowup": 24, + "odds": 16 + }, + "SellbackPurchaseEntry_t": { + "m_bPrevHelmet": 60, + "m_hItem": 64, + "m_nCost": 52, + "m_nPrevArmor": 56, + "m_unDefIdx": 48 + }, + "SimpleConstraintSoundProfile": { + "eKeypoints": 8, + "m_keyPoints": 12, + "m_reversalSoundThresholds": 20 + }, + "SpawnPoint": { + "m_bEnabled": 1204, + "m_iPriority": 1200, + "m_nType": 1208 + }, + "SpawnPointCoopEnemy": { + "m_bIsAgressive": 1244, + "m_bStartAsleep": 1245, + "m_flHideRadius": 1248, + "m_nArmorToSpawnWith": 1232, + "m_nBotDifficulty": 1240, + "m_nDefaultBehavior": 1236, + "m_szBehaviorTreeFile": 1264, + "m_szPlayerModelToUse": 1224, + "m_szWeaponsToGive": 1216 + }, + "SummaryTakeDamageInfo_t": { + "hTarget": 176, + "info": 8, + "nSummarisedCount": 0, + "result": 168 + }, + "VPhysicsCollisionAttribute_t": { + "m_nCollisionFunctionMask": 43, + "m_nCollisionGroup": 42, + "m_nEntityId": 32, + "m_nHierarchyId": 40, + "m_nInteractsAs": 8, + "m_nInteractsExclude": 24, + "m_nInteractsWith": 16, + "m_nOwnerId": 36 + }, + "VelocitySampler": { + "m_fIdealSampleRate": 16, + "m_fPrevSampleTime": 12, + "m_prevSample": 0 + }, + "ViewAngleServerChange_t": { + "nIndex": 64, + "nType": 48, + "qAngle": 52 + }, + "WeaponPurchaseCount_t": { + "m_nCount": 50, + "m_nItemDefIndex": 48 + }, + "WeaponPurchaseTracker_t": { + "m_weaponPurchases": 8 + }, + "audioparams_t": { + "localBits": 108, + "localSound": 8, + "soundEventHash": 116, + "soundscapeEntityListIndex": 112, + "soundscapeIndex": 104 + }, + "dynpitchvol_base_t": { + "cspincount": 56, + "cspinup": 52, + "fadein": 28, + "fadeinsav": 80, + "fadeout": 32, + "fadeoutsav": 84, + "lfofrac": 92, + "lfomodpitch": 44, + "lfomodvol": 48, + "lfomult": 96, + "lforate": 40, + "lfotype": 36, + "pitch": 60, + "pitchfrac": 72, + "pitchrun": 4, + "pitchstart": 8, + "preset": 0, + "spindown": 16, + "spindownsav": 68, + "spinup": 12, + "spinupsav": 64, + "vol": 76, + "volfrac": 88, + "volrun": 20, + "volstart": 24 + }, + "fogparams_t": { + "HDRColorScale": 56, + "blend": 101, + "blendtobackground": 88, + "colorPrimary": 20, + "colorPrimaryLerpTo": 28, + "colorSecondary": 24, + "colorSecondaryLerpTo": 32, + "dirPrimary": 8, + "duration": 84, + "enable": 100, + "end": 40, + "endLerpTo": 72, + "exponent": 52, + "farz": 44, + "lerptime": 80, + "locallightscale": 96, + "m_bNoReflectionFog": 102, + "m_bPadding": 103, + "maxdensity": 48, + "maxdensityLerpTo": 76, + "scattering": 92, + "skyboxFogFactor": 60, + "skyboxFogFactorLerpTo": 64, + "start": 36, + "startLerpTo": 68 + }, + "fogplayerparams_t": { + "m_NewColor": 40, + "m_OldColor": 16, + "m_flNewEnd": 48, + "m_flNewFarZ": 60, + "m_flNewHDRColorScale": 56, + "m_flNewMaxDensity": 52, + "m_flNewStart": 44, + "m_flOldEnd": 24, + "m_flOldFarZ": 36, + "m_flOldHDRColorScale": 32, + "m_flOldMaxDensity": 28, + "m_flOldStart": 20, + "m_flTransitionTime": 12, + "m_hCtrl": 8 + }, + "hudtextparms_t": { + "channel": 9, + "color1": 0, + "color2": 4, + "effect": 8, + "x": 12, + "y": 16 + }, + "lerpdata_t": { + "m_MoveType": 4, + "m_flStartTime": 8, + "m_hEnt": 0, + "m_nFXIndex": 48, + "m_qStartRot": 32, + "m_vecStartOrigin": 12 + }, + "locksound_t": { + "flwaitSound": 24, + "sLockedSound": 8, + "sUnlockedSound": 16 + }, + "magnetted_objects_t": { + "hEntity": 8 + }, + "ragdoll_t": { + "allowStretch": 48, + "boneIndex": 24, + "list": 0, + "unused": 49 + }, + "ragdollelement_t": { + "m_flRadius": 36, + "originParentSpace": 0, + "parentIndex": 32 + }, + "shard_model_desc_t": { + "m_LightGroup": 92, + "m_ShatterPanelMode": 25, + "m_SurfacePropStringToken": 88, + "m_bHasParent": 84, + "m_bParentFrozen": 85, + "m_flGlassHalfThickness": 80, + "m_hMaterial": 16, + "m_nModelID": 8, + "m_solid": 24, + "m_vecPanelSize": 28, + "m_vecPanelVertices": 56, + "m_vecStressPositionA": 36, + "m_vecStressPositionB": 44 + }, + "sky3dparams_t": { + "bClip3DSkyBoxNearToWorldFar": 24, + "flClip3DSkyBoxNearToWorldFarOffset": 28, + "fog": 32, + "m_nWorldGroupID": 136, + "origin": 12, + "scale": 8 + }, + "thinkfunc_t": { + "m_hFn": 8, + "m_nContext": 16, + "m_nLastThinkTick": 24, + "m_nNextThinkTick": 20 + } +} \ No newline at end of file diff --git a/generated/soundsystem.dll.hpp b/generated/soundsystem.dll.hpp new file mode 100644 index 0000000..7c35f91 --- /dev/null +++ b/generated/soundsystem.dll.hpp @@ -0,0 +1,309 @@ +#pragma once + +#include + +namespace CSosGroupActionSchema { + constexpr std::ptrdiff_t m_name = 0x8; + constexpr std::ptrdiff_t m_actionType = 0x10; + constexpr std::ptrdiff_t m_actionInstanceType = 0x14; +} + +namespace CSosGroupActionLimitSchema { + constexpr std::ptrdiff_t m_nMaxCount = 0x18; + constexpr std::ptrdiff_t m_nStopType = 0x1c; + constexpr std::ptrdiff_t m_nSortType = 0x20; +} + +namespace CSosGroupActionTimeLimitSchema { + constexpr std::ptrdiff_t m_flMaxDuration = 0x18; +} + +namespace CSosGroupActionSetSoundeventParameterSchema { + constexpr std::ptrdiff_t m_nMaxCount = 0x18; + constexpr std::ptrdiff_t m_flMinValue = 0x1c; + constexpr std::ptrdiff_t m_flMaxValue = 0x20; + constexpr std::ptrdiff_t m_opvarName = 0x28; + constexpr std::ptrdiff_t m_nSortType = 0x30; +} + +namespace CSosGroupBranchPattern { + constexpr std::ptrdiff_t m_bMatchEventName = 0x8; + constexpr std::ptrdiff_t m_bMatchEventSubString = 0x9; + constexpr std::ptrdiff_t m_bMatchEntIndex = 0xa; + constexpr std::ptrdiff_t m_bMatchOpvar = 0xb; +} + +namespace CSosGroupMatchPattern { + constexpr std::ptrdiff_t m_matchSoundEventName = 0x10; + constexpr std::ptrdiff_t m_matchSoundEventSubString = 0x18; + constexpr std::ptrdiff_t m_flEntIndex = 0x20; + constexpr std::ptrdiff_t m_flOpvar = 0x24; +} + +namespace CSosSoundEventGroupSchema { + constexpr std::ptrdiff_t m_name = 0x0; + constexpr std::ptrdiff_t m_nType = 0x8; + constexpr std::ptrdiff_t m_bIsBlocking = 0xc; + constexpr std::ptrdiff_t m_nBlockMaxCount = 0x10; + constexpr std::ptrdiff_t m_bInvertMatch = 0x14; + constexpr std::ptrdiff_t m_matchPattern = 0x18; + constexpr std::ptrdiff_t m_branchPattern = 0x40; + constexpr std::ptrdiff_t m_vActions = 0xb0; +} + +namespace CSosSoundEventGroupListSchema { + constexpr std::ptrdiff_t m_groupList = 0x0; +} + +namespace SosEditItemInfo_t { + constexpr std::ptrdiff_t itemType = 0x0; + constexpr std::ptrdiff_t itemName = 0x8; + constexpr std::ptrdiff_t itemTypeName = 0x10; + constexpr std::ptrdiff_t itemKVString = 0x20; + constexpr std::ptrdiff_t itemPos = 0x28; +} + +namespace SelectedEditItemInfo_t { + constexpr std::ptrdiff_t m_EditItems = 0x0; +} + +namespace CSoundEventMetaData { + constexpr std::ptrdiff_t m_soundEventVMix = 0x0; +} + +namespace CDSPMixgroupModifier { + constexpr std::ptrdiff_t m_mixgroup = 0x0; + constexpr std::ptrdiff_t m_flModifier = 0x8; + constexpr std::ptrdiff_t m_flModifierMin = 0xc; + constexpr std::ptrdiff_t m_flSourceModifier = 0x10; + constexpr std::ptrdiff_t m_flSourceModifierMin = 0x14; + constexpr std::ptrdiff_t m_flListenerReverbModifierWhenSourceReverbIsActive = 0x18; +} + +namespace CDspPresetModifierList { + constexpr std::ptrdiff_t m_dspName = 0x0; + constexpr std::ptrdiff_t m_modifiers = 0x8; +} + +namespace CDSPPresetMixgroupModifierTable { + constexpr std::ptrdiff_t m_table = 0x0; +} + +namespace VMixFilterDesc_t { + constexpr std::ptrdiff_t m_nFilterType = 0x0; + constexpr std::ptrdiff_t m_nFilterSlope = 0x2; + constexpr std::ptrdiff_t m_bEnabled = 0x3; + constexpr std::ptrdiff_t m_fldbGain = 0x4; + constexpr std::ptrdiff_t m_flCutoffFreq = 0x8; + constexpr std::ptrdiff_t m_flQ = 0xc; +} + +namespace VMixEQ8Desc_t { + constexpr std::ptrdiff_t m_stages = 0x0; +} + +namespace VMixDelayDesc_t { + constexpr std::ptrdiff_t m_feedbackFilter = 0x0; + constexpr std::ptrdiff_t m_bEnableFilter = 0x10; + constexpr std::ptrdiff_t m_flDelay = 0x14; + constexpr std::ptrdiff_t m_flDirectGain = 0x18; + constexpr std::ptrdiff_t m_flDelayGain = 0x1c; + constexpr std::ptrdiff_t m_flFeedbackGain = 0x20; + constexpr std::ptrdiff_t m_flWidth = 0x24; +} + +namespace VMixPannerDesc_t { + constexpr std::ptrdiff_t m_type = 0x0; + constexpr std::ptrdiff_t m_flStrength = 0x4; +} + +namespace VMixModDelayDesc_t { + constexpr std::ptrdiff_t m_feedbackFilter = 0x0; + constexpr std::ptrdiff_t m_bPhaseInvert = 0x10; + constexpr std::ptrdiff_t m_flGlideTime = 0x14; + constexpr std::ptrdiff_t m_flDelay = 0x18; + constexpr std::ptrdiff_t m_flOutputGain = 0x1c; + constexpr std::ptrdiff_t m_flFeedbackGain = 0x20; + constexpr std::ptrdiff_t m_flModRate = 0x24; + constexpr std::ptrdiff_t m_flModDepth = 0x28; + constexpr std::ptrdiff_t m_bApplyAntialiasing = 0x2c; +} + +namespace VMixDiffusorDesc_t { + constexpr std::ptrdiff_t m_flSize = 0x0; + constexpr std::ptrdiff_t m_flComplexity = 0x4; + constexpr std::ptrdiff_t m_flFeedback = 0x8; + constexpr std::ptrdiff_t m_flOutputGain = 0xc; +} + +namespace VMixBoxverbDesc_t { + constexpr std::ptrdiff_t m_flSizeMax = 0x0; + constexpr std::ptrdiff_t m_flSizeMin = 0x4; + constexpr std::ptrdiff_t m_flComplexity = 0x8; + constexpr std::ptrdiff_t m_flDiffusion = 0xc; + constexpr std::ptrdiff_t m_flModDepth = 0x10; + constexpr std::ptrdiff_t m_flModRate = 0x14; + constexpr std::ptrdiff_t m_bParallel = 0x18; + constexpr std::ptrdiff_t m_filterType = 0x1c; + constexpr std::ptrdiff_t m_flWidth = 0x2c; + constexpr std::ptrdiff_t m_flHeight = 0x30; + constexpr std::ptrdiff_t m_flDepth = 0x34; + constexpr std::ptrdiff_t m_flFeedbackScale = 0x38; + constexpr std::ptrdiff_t m_flFeedbackWidth = 0x3c; + constexpr std::ptrdiff_t m_flFeedbackHeight = 0x40; + constexpr std::ptrdiff_t m_flFeedbackDepth = 0x44; + constexpr std::ptrdiff_t m_flOutputGain = 0x48; + constexpr std::ptrdiff_t m_flTaps = 0x4c; +} + +namespace VMixFreeverbDesc_t { + constexpr std::ptrdiff_t m_flRoomSize = 0x0; + constexpr std::ptrdiff_t m_flDamp = 0x4; + constexpr std::ptrdiff_t m_flWidth = 0x8; + constexpr std::ptrdiff_t m_flLateReflections = 0xc; +} + +namespace VMixPlateverbDesc_t { + constexpr std::ptrdiff_t m_flPrefilter = 0x0; + constexpr std::ptrdiff_t m_flInputDiffusion1 = 0x4; + constexpr std::ptrdiff_t m_flInputDiffusion2 = 0x8; + constexpr std::ptrdiff_t m_flDecay = 0xc; + constexpr std::ptrdiff_t m_flDamp = 0x10; + constexpr std::ptrdiff_t m_flFeedbackDiffusion1 = 0x14; + constexpr std::ptrdiff_t m_flFeedbackDiffusion2 = 0x18; +} + +namespace VMixDynamicsDesc_t { + constexpr std::ptrdiff_t m_fldbGain = 0x0; + constexpr std::ptrdiff_t m_fldbNoiseGateThreshold = 0x4; + constexpr std::ptrdiff_t m_fldbCompressionThreshold = 0x8; + constexpr std::ptrdiff_t m_fldbLimiterThreshold = 0xc; + constexpr std::ptrdiff_t m_fldbKneeWidth = 0x10; + constexpr std::ptrdiff_t m_flRatio = 0x14; + constexpr std::ptrdiff_t m_flLimiterRatio = 0x18; + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x1c; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x20; + constexpr std::ptrdiff_t m_flRMSTimeMS = 0x24; + constexpr std::ptrdiff_t m_flWetMix = 0x28; + constexpr std::ptrdiff_t m_bPeakMode = 0x2c; +} + +namespace VMixDynamicsCompressorDesc_t { + constexpr std::ptrdiff_t m_fldbOutputGain = 0x0; + constexpr std::ptrdiff_t m_fldbCompressionThreshold = 0x4; + constexpr std::ptrdiff_t m_fldbKneeWidth = 0x8; + constexpr std::ptrdiff_t m_flCompressionRatio = 0xc; + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x10; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x14; + constexpr std::ptrdiff_t m_flRMSTimeMS = 0x18; + constexpr std::ptrdiff_t m_flWetMix = 0x1c; + constexpr std::ptrdiff_t m_bPeakMode = 0x20; +} + +namespace VMixDynamicsBand_t { + constexpr std::ptrdiff_t m_fldbGainInput = 0x0; + constexpr std::ptrdiff_t m_fldbGainOutput = 0x4; + constexpr std::ptrdiff_t m_fldbThresholdBelow = 0x8; + constexpr std::ptrdiff_t m_fldbThresholdAbove = 0xc; + constexpr std::ptrdiff_t m_flRatioBelow = 0x10; + constexpr std::ptrdiff_t m_flRatioAbove = 0x14; + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x18; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x1c; + constexpr std::ptrdiff_t m_bEnable = 0x20; + constexpr std::ptrdiff_t m_bSolo = 0x21; +} + +namespace VMixDynamics3BandDesc_t { + constexpr std::ptrdiff_t m_fldbGainOutput = 0x0; + constexpr std::ptrdiff_t m_flRMSTimeMS = 0x4; + constexpr std::ptrdiff_t m_fldbKneeWidth = 0x8; + constexpr std::ptrdiff_t m_flDepth = 0xc; + constexpr std::ptrdiff_t m_flWetMix = 0x10; + constexpr std::ptrdiff_t m_flTimeScale = 0x14; + constexpr std::ptrdiff_t m_flLowCutoffFreq = 0x18; + constexpr std::ptrdiff_t m_flHighCutoffFreq = 0x1c; + constexpr std::ptrdiff_t m_bPeakMode = 0x20; + constexpr std::ptrdiff_t m_bandDesc = 0x24; +} + +namespace VMixEnvelopeDesc_t { + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x0; + constexpr std::ptrdiff_t m_flHoldTimeMS = 0x4; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x8; +} + +namespace VMixPitchShiftDesc_t { + constexpr std::ptrdiff_t m_nGrainSampleCount = 0x0; + constexpr std::ptrdiff_t m_flPitchShift = 0x4; + constexpr std::ptrdiff_t m_nQuality = 0x8; + constexpr std::ptrdiff_t m_nProcType = 0xc; +} + +namespace VMixConvolutionDesc_t { + constexpr std::ptrdiff_t m_fldbGain = 0x0; + constexpr std::ptrdiff_t m_flPreDelayMS = 0x4; + constexpr std::ptrdiff_t m_flWetMix = 0x8; + constexpr std::ptrdiff_t m_fldbLow = 0xc; + constexpr std::ptrdiff_t m_fldbMid = 0x10; + constexpr std::ptrdiff_t m_fldbHigh = 0x14; + constexpr std::ptrdiff_t m_flLowCutoffFreq = 0x18; + constexpr std::ptrdiff_t m_flHighCutoffFreq = 0x1c; +} + +namespace VMixVocoderDesc_t { + constexpr std::ptrdiff_t m_nBandCount = 0x0; + constexpr std::ptrdiff_t m_flBandwidth = 0x4; + constexpr std::ptrdiff_t m_fldBModGain = 0x8; + constexpr std::ptrdiff_t m_flFreqRangeStart = 0xc; + constexpr std::ptrdiff_t m_flFreqRangeEnd = 0x10; + constexpr std::ptrdiff_t m_fldBUnvoicedGain = 0x14; + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x18; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x1c; + constexpr std::ptrdiff_t m_nDebugBand = 0x20; + constexpr std::ptrdiff_t m_bPeakMode = 0x24; +} + +namespace VMixShaperDesc_t { + constexpr std::ptrdiff_t m_nShape = 0x0; + constexpr std::ptrdiff_t m_fldbDrive = 0x4; + constexpr std::ptrdiff_t m_fldbOutputGain = 0x8; + constexpr std::ptrdiff_t m_flWetMix = 0xc; + constexpr std::ptrdiff_t m_nOversampleFactor = 0x10; +} + +namespace VMixUtilityDesc_t { + constexpr std::ptrdiff_t m_nOp = 0x0; + constexpr std::ptrdiff_t m_flInputPan = 0x4; + constexpr std::ptrdiff_t m_flOutputBalance = 0x8; + constexpr std::ptrdiff_t m_fldbOutputGain = 0xc; + constexpr std::ptrdiff_t m_bBassMono = 0x10; + constexpr std::ptrdiff_t m_flBassFreq = 0x14; +} + +namespace VMixAutoFilterDesc_t { + constexpr std::ptrdiff_t m_flEnvelopeAmount = 0x0; + constexpr std::ptrdiff_t m_flAttackTimeMS = 0x4; + constexpr std::ptrdiff_t m_flReleaseTimeMS = 0x8; + constexpr std::ptrdiff_t m_filter = 0xc; + constexpr std::ptrdiff_t m_flLFOAmount = 0x1c; + constexpr std::ptrdiff_t m_flLFORate = 0x20; + constexpr std::ptrdiff_t m_flPhase = 0x24; + constexpr std::ptrdiff_t m_nLFOShape = 0x28; +} + +namespace VMixOscDesc_t { + constexpr std::ptrdiff_t oscType = 0x0; + constexpr std::ptrdiff_t m_freq = 0x4; + constexpr std::ptrdiff_t m_flPhase = 0x8; +} + +namespace VMixEffectChainDesc_t { + constexpr std::ptrdiff_t m_flCrossfadeTime = 0x0; +} + +namespace VMixSubgraphSwitchDesc_t { + constexpr std::ptrdiff_t m_interpolationMode = 0x0; + constexpr std::ptrdiff_t m_bOnlyTailsOnFadeOut = 0x4; + constexpr std::ptrdiff_t m_flInterpolationTime = 0x8; +} + diff --git a/generated/soundsystem.dll.json b/generated/soundsystem.dll.json new file mode 100644 index 0000000..c8e830d --- /dev/null +++ b/generated/soundsystem.dll.json @@ -0,0 +1,270 @@ +{ + "CDSPMixgroupModifier": { + "m_flListenerReverbModifierWhenSourceReverbIsActive": 24, + "m_flModifier": 8, + "m_flModifierMin": 12, + "m_flSourceModifier": 16, + "m_flSourceModifierMin": 20, + "m_mixgroup": 0 + }, + "CDSPPresetMixgroupModifierTable": { + "m_table": 0 + }, + "CDspPresetModifierList": { + "m_dspName": 0, + "m_modifiers": 8 + }, + "CSosGroupActionLimitSchema": { + "m_nMaxCount": 24, + "m_nSortType": 32, + "m_nStopType": 28 + }, + "CSosGroupActionSchema": { + "m_actionInstanceType": 20, + "m_actionType": 16, + "m_name": 8 + }, + "CSosGroupActionSetSoundeventParameterSchema": { + "m_flMaxValue": 32, + "m_flMinValue": 28, + "m_nMaxCount": 24, + "m_nSortType": 48, + "m_opvarName": 40 + }, + "CSosGroupActionTimeLimitSchema": { + "m_flMaxDuration": 24 + }, + "CSosGroupBranchPattern": { + "m_bMatchEntIndex": 10, + "m_bMatchEventName": 8, + "m_bMatchEventSubString": 9, + "m_bMatchOpvar": 11 + }, + "CSosGroupMatchPattern": { + "m_flEntIndex": 32, + "m_flOpvar": 36, + "m_matchSoundEventName": 16, + "m_matchSoundEventSubString": 24 + }, + "CSosSoundEventGroupListSchema": { + "m_groupList": 0 + }, + "CSosSoundEventGroupSchema": { + "m_bInvertMatch": 20, + "m_bIsBlocking": 12, + "m_branchPattern": 64, + "m_matchPattern": 24, + "m_nBlockMaxCount": 16, + "m_nType": 8, + "m_name": 0, + "m_vActions": 176 + }, + "CSoundEventMetaData": { + "m_soundEventVMix": 0 + }, + "SelectedEditItemInfo_t": { + "m_EditItems": 0 + }, + "SosEditItemInfo_t": { + "itemKVString": 32, + "itemName": 8, + "itemPos": 40, + "itemType": 0, + "itemTypeName": 16 + }, + "VMixAutoFilterDesc_t": { + "m_filter": 12, + "m_flAttackTimeMS": 4, + "m_flEnvelopeAmount": 0, + "m_flLFOAmount": 28, + "m_flLFORate": 32, + "m_flPhase": 36, + "m_flReleaseTimeMS": 8, + "m_nLFOShape": 40 + }, + "VMixBoxverbDesc_t": { + "m_bParallel": 24, + "m_filterType": 28, + "m_flComplexity": 8, + "m_flDepth": 52, + "m_flDiffusion": 12, + "m_flFeedbackDepth": 68, + "m_flFeedbackHeight": 64, + "m_flFeedbackScale": 56, + "m_flFeedbackWidth": 60, + "m_flHeight": 48, + "m_flModDepth": 16, + "m_flModRate": 20, + "m_flOutputGain": 72, + "m_flSizeMax": 0, + "m_flSizeMin": 4, + "m_flTaps": 76, + "m_flWidth": 44 + }, + "VMixConvolutionDesc_t": { + "m_flHighCutoffFreq": 28, + "m_flLowCutoffFreq": 24, + "m_flPreDelayMS": 4, + "m_flWetMix": 8, + "m_fldbGain": 0, + "m_fldbHigh": 20, + "m_fldbLow": 12, + "m_fldbMid": 16 + }, + "VMixDelayDesc_t": { + "m_bEnableFilter": 16, + "m_feedbackFilter": 0, + "m_flDelay": 20, + "m_flDelayGain": 28, + "m_flDirectGain": 24, + "m_flFeedbackGain": 32, + "m_flWidth": 36 + }, + "VMixDiffusorDesc_t": { + "m_flComplexity": 4, + "m_flFeedback": 8, + "m_flOutputGain": 12, + "m_flSize": 0 + }, + "VMixDynamics3BandDesc_t": { + "m_bPeakMode": 32, + "m_bandDesc": 36, + "m_flDepth": 12, + "m_flHighCutoffFreq": 28, + "m_flLowCutoffFreq": 24, + "m_flRMSTimeMS": 4, + "m_flTimeScale": 20, + "m_flWetMix": 16, + "m_fldbGainOutput": 0, + "m_fldbKneeWidth": 8 + }, + "VMixDynamicsBand_t": { + "m_bEnable": 32, + "m_bSolo": 33, + "m_flAttackTimeMS": 24, + "m_flRatioAbove": 20, + "m_flRatioBelow": 16, + "m_flReleaseTimeMS": 28, + "m_fldbGainInput": 0, + "m_fldbGainOutput": 4, + "m_fldbThresholdAbove": 12, + "m_fldbThresholdBelow": 8 + }, + "VMixDynamicsCompressorDesc_t": { + "m_bPeakMode": 32, + "m_flAttackTimeMS": 16, + "m_flCompressionRatio": 12, + "m_flRMSTimeMS": 24, + "m_flReleaseTimeMS": 20, + "m_flWetMix": 28, + "m_fldbCompressionThreshold": 4, + "m_fldbKneeWidth": 8, + "m_fldbOutputGain": 0 + }, + "VMixDynamicsDesc_t": { + "m_bPeakMode": 44, + "m_flAttackTimeMS": 28, + "m_flLimiterRatio": 24, + "m_flRMSTimeMS": 36, + "m_flRatio": 20, + "m_flReleaseTimeMS": 32, + "m_flWetMix": 40, + "m_fldbCompressionThreshold": 8, + "m_fldbGain": 0, + "m_fldbKneeWidth": 16, + "m_fldbLimiterThreshold": 12, + "m_fldbNoiseGateThreshold": 4 + }, + "VMixEQ8Desc_t": { + "m_stages": 0 + }, + "VMixEffectChainDesc_t": { + "m_flCrossfadeTime": 0 + }, + "VMixEnvelopeDesc_t": { + "m_flAttackTimeMS": 0, + "m_flHoldTimeMS": 4, + "m_flReleaseTimeMS": 8 + }, + "VMixFilterDesc_t": { + "m_bEnabled": 3, + "m_flCutoffFreq": 8, + "m_flQ": 12, + "m_fldbGain": 4, + "m_nFilterSlope": 2, + "m_nFilterType": 0 + }, + "VMixFreeverbDesc_t": { + "m_flDamp": 4, + "m_flLateReflections": 12, + "m_flRoomSize": 0, + "m_flWidth": 8 + }, + "VMixModDelayDesc_t": { + "m_bApplyAntialiasing": 44, + "m_bPhaseInvert": 16, + "m_feedbackFilter": 0, + "m_flDelay": 24, + "m_flFeedbackGain": 32, + "m_flGlideTime": 20, + "m_flModDepth": 40, + "m_flModRate": 36, + "m_flOutputGain": 28 + }, + "VMixOscDesc_t": { + "m_flPhase": 8, + "m_freq": 4, + "oscType": 0 + }, + "VMixPannerDesc_t": { + "m_flStrength": 4, + "m_type": 0 + }, + "VMixPitchShiftDesc_t": { + "m_flPitchShift": 4, + "m_nGrainSampleCount": 0, + "m_nProcType": 12, + "m_nQuality": 8 + }, + "VMixPlateverbDesc_t": { + "m_flDamp": 16, + "m_flDecay": 12, + "m_flFeedbackDiffusion1": 20, + "m_flFeedbackDiffusion2": 24, + "m_flInputDiffusion1": 4, + "m_flInputDiffusion2": 8, + "m_flPrefilter": 0 + }, + "VMixShaperDesc_t": { + "m_flWetMix": 12, + "m_fldbDrive": 4, + "m_fldbOutputGain": 8, + "m_nOversampleFactor": 16, + "m_nShape": 0 + }, + "VMixSubgraphSwitchDesc_t": { + "m_bOnlyTailsOnFadeOut": 4, + "m_flInterpolationTime": 8, + "m_interpolationMode": 0 + }, + "VMixUtilityDesc_t": { + "m_bBassMono": 16, + "m_flBassFreq": 20, + "m_flInputPan": 4, + "m_flOutputBalance": 8, + "m_fldbOutputGain": 12, + "m_nOp": 0 + }, + "VMixVocoderDesc_t": { + "m_bPeakMode": 36, + "m_flAttackTimeMS": 24, + "m_flBandwidth": 4, + "m_flFreqRangeEnd": 16, + "m_flFreqRangeStart": 12, + "m_flReleaseTimeMS": 28, + "m_fldBModGain": 8, + "m_fldBUnvoicedGain": 20, + "m_nBandCount": 0, + "m_nDebugBand": 32 + } +} \ No newline at end of file diff --git a/generated/vphysics2.dll.hpp b/generated/vphysics2.dll.hpp new file mode 100644 index 0000000..66d5cd1 --- /dev/null +++ b/generated/vphysics2.dll.hpp @@ -0,0 +1,743 @@ +#pragma once + +#include + +namespace constraint_breakableparams_t { + constexpr std::ptrdiff_t strength = 0x0; + constexpr std::ptrdiff_t forceLimit = 0x4; + constexpr std::ptrdiff_t torqueLimit = 0x8; + constexpr std::ptrdiff_t bodyMassScale = 0xc; + constexpr std::ptrdiff_t isActive = 0x14; +} + +namespace constraint_axislimit_t { + constexpr std::ptrdiff_t flMinRotation = 0x0; + constexpr std::ptrdiff_t flMaxRotation = 0x4; + constexpr std::ptrdiff_t flMotorTargetAngSpeed = 0x8; + constexpr std::ptrdiff_t flMotorMaxTorque = 0xc; +} + +namespace constraint_hingeparams_t { + constexpr std::ptrdiff_t worldPosition = 0x0; + constexpr std::ptrdiff_t worldAxisDirection = 0xc; + constexpr std::ptrdiff_t hingeAxis = 0x18; + constexpr std::ptrdiff_t constraint = 0x28; +} + +namespace IPhysicsPlayerController { +} + +namespace CFeJiggleBone { + constexpr std::ptrdiff_t m_nFlags = 0x0; + constexpr std::ptrdiff_t m_flLength = 0x4; + constexpr std::ptrdiff_t m_flTipMass = 0x8; + constexpr std::ptrdiff_t m_flYawStiffness = 0xc; + constexpr std::ptrdiff_t m_flYawDamping = 0x10; + constexpr std::ptrdiff_t m_flPitchStiffness = 0x14; + constexpr std::ptrdiff_t m_flPitchDamping = 0x18; + constexpr std::ptrdiff_t m_flAlongStiffness = 0x1c; + constexpr std::ptrdiff_t m_flAlongDamping = 0x20; + constexpr std::ptrdiff_t m_flAngleLimit = 0x24; + constexpr std::ptrdiff_t m_flMinYaw = 0x28; + constexpr std::ptrdiff_t m_flMaxYaw = 0x2c; + constexpr std::ptrdiff_t m_flYawFriction = 0x30; + constexpr std::ptrdiff_t m_flYawBounce = 0x34; + constexpr std::ptrdiff_t m_flMinPitch = 0x38; + constexpr std::ptrdiff_t m_flMaxPitch = 0x3c; + constexpr std::ptrdiff_t m_flPitchFriction = 0x40; + constexpr std::ptrdiff_t m_flPitchBounce = 0x44; + constexpr std::ptrdiff_t m_flBaseMass = 0x48; + constexpr std::ptrdiff_t m_flBaseStiffness = 0x4c; + constexpr std::ptrdiff_t m_flBaseDamping = 0x50; + constexpr std::ptrdiff_t m_flBaseMinLeft = 0x54; + constexpr std::ptrdiff_t m_flBaseMaxLeft = 0x58; + constexpr std::ptrdiff_t m_flBaseLeftFriction = 0x5c; + constexpr std::ptrdiff_t m_flBaseMinUp = 0x60; + constexpr std::ptrdiff_t m_flBaseMaxUp = 0x64; + constexpr std::ptrdiff_t m_flBaseUpFriction = 0x68; + constexpr std::ptrdiff_t m_flBaseMinForward = 0x6c; + constexpr std::ptrdiff_t m_flBaseMaxForward = 0x70; + constexpr std::ptrdiff_t m_flBaseForwardFriction = 0x74; + constexpr std::ptrdiff_t m_flRadius0 = 0x78; + constexpr std::ptrdiff_t m_flRadius1 = 0x7c; + constexpr std::ptrdiff_t m_vPoint0 = 0x80; + constexpr std::ptrdiff_t m_vPoint1 = 0x8c; + constexpr std::ptrdiff_t m_nCollisionMask = 0x98; +} + +namespace CFeNamedJiggleBone { + constexpr std::ptrdiff_t m_strParentBone = 0x0; + constexpr std::ptrdiff_t m_transform = 0x10; + constexpr std::ptrdiff_t m_nJiggleParent = 0x30; + constexpr std::ptrdiff_t m_jiggleBone = 0x34; +} + +namespace CFeIndexedJiggleBone { + constexpr std::ptrdiff_t m_nNode = 0x0; + constexpr std::ptrdiff_t m_nJiggleParent = 0x4; + constexpr std::ptrdiff_t m_jiggleBone = 0x8; +} + +namespace PhysFeModelDesc_t { + constexpr std::ptrdiff_t m_CtrlHash = 0x0; + constexpr std::ptrdiff_t m_CtrlName = 0x18; + constexpr std::ptrdiff_t m_nStaticNodeFlags = 0x30; + constexpr std::ptrdiff_t m_nDynamicNodeFlags = 0x34; + constexpr std::ptrdiff_t m_flLocalForce = 0x38; + constexpr std::ptrdiff_t m_flLocalRotation = 0x3c; + constexpr std::ptrdiff_t m_nNodeCount = 0x40; + constexpr std::ptrdiff_t m_nStaticNodes = 0x42; + constexpr std::ptrdiff_t m_nRotLockStaticNodes = 0x44; + constexpr std::ptrdiff_t m_nFirstPositionDrivenNode = 0x46; + constexpr std::ptrdiff_t m_nSimdTriCount1 = 0x48; + constexpr std::ptrdiff_t m_nSimdTriCount2 = 0x4a; + constexpr std::ptrdiff_t m_nSimdQuadCount1 = 0x4c; + constexpr std::ptrdiff_t m_nSimdQuadCount2 = 0x4e; + constexpr std::ptrdiff_t m_nQuadCount1 = 0x50; + constexpr std::ptrdiff_t m_nQuadCount2 = 0x52; + constexpr std::ptrdiff_t m_nTreeDepth = 0x54; + constexpr std::ptrdiff_t m_nNodeBaseJiggleboneDependsCount = 0x56; + constexpr std::ptrdiff_t m_nRopeCount = 0x58; + constexpr std::ptrdiff_t m_Ropes = 0x60; + constexpr std::ptrdiff_t m_NodeBases = 0x78; + constexpr std::ptrdiff_t m_SimdNodeBases = 0x90; + constexpr std::ptrdiff_t m_Quads = 0xa8; + constexpr std::ptrdiff_t m_SimdQuads = 0xc0; + constexpr std::ptrdiff_t m_SimdTris = 0xd8; + constexpr std::ptrdiff_t m_SimdRods = 0xf0; + constexpr std::ptrdiff_t m_InitPose = 0x108; + constexpr std::ptrdiff_t m_Rods = 0x120; + constexpr std::ptrdiff_t m_Twists = 0x138; + constexpr std::ptrdiff_t m_AxialEdges = 0x150; + constexpr std::ptrdiff_t m_NodeInvMasses = 0x168; + constexpr std::ptrdiff_t m_CtrlOffsets = 0x180; + constexpr std::ptrdiff_t m_CtrlOsOffsets = 0x198; + constexpr std::ptrdiff_t m_FollowNodes = 0x1b0; + constexpr std::ptrdiff_t m_CollisionPlanes = 0x1c8; + constexpr std::ptrdiff_t m_NodeIntegrator = 0x1e0; + constexpr std::ptrdiff_t m_SpringIntegrator = 0x1f8; + constexpr std::ptrdiff_t m_SimdSpringIntegrator = 0x210; + constexpr std::ptrdiff_t m_WorldCollisionParams = 0x228; + constexpr std::ptrdiff_t m_LegacyStretchForce = 0x240; + constexpr std::ptrdiff_t m_NodeCollisionRadii = 0x258; + constexpr std::ptrdiff_t m_DynNodeFriction = 0x270; + constexpr std::ptrdiff_t m_LocalRotation = 0x288; + constexpr std::ptrdiff_t m_LocalForce = 0x2a0; + constexpr std::ptrdiff_t m_TaperedCapsuleStretches = 0x2b8; + constexpr std::ptrdiff_t m_TaperedCapsuleRigids = 0x2d0; + constexpr std::ptrdiff_t m_SphereRigids = 0x2e8; + constexpr std::ptrdiff_t m_WorldCollisionNodes = 0x300; + constexpr std::ptrdiff_t m_TreeParents = 0x318; + constexpr std::ptrdiff_t m_TreeCollisionMasks = 0x330; + constexpr std::ptrdiff_t m_TreeChildren = 0x348; + constexpr std::ptrdiff_t m_FreeNodes = 0x360; + constexpr std::ptrdiff_t m_FitMatrices = 0x378; + constexpr std::ptrdiff_t m_FitWeights = 0x390; + constexpr std::ptrdiff_t m_ReverseOffsets = 0x3a8; + constexpr std::ptrdiff_t m_AnimStrayRadii = 0x3c0; + constexpr std::ptrdiff_t m_SimdAnimStrayRadii = 0x3d8; + constexpr std::ptrdiff_t m_KelagerBends = 0x3f0; + constexpr std::ptrdiff_t m_CtrlSoftOffsets = 0x408; + constexpr std::ptrdiff_t m_JiggleBones = 0x420; + constexpr std::ptrdiff_t m_SourceElems = 0x438; + constexpr std::ptrdiff_t m_GoalDampedSpringIntegrators = 0x450; + constexpr std::ptrdiff_t m_Tris = 0x468; + constexpr std::ptrdiff_t m_nTriCount1 = 0x480; + constexpr std::ptrdiff_t m_nTriCount2 = 0x482; + constexpr std::ptrdiff_t m_nReservedUint8 = 0x484; + constexpr std::ptrdiff_t m_nExtraPressureIterations = 0x485; + constexpr std::ptrdiff_t m_nExtraGoalIterations = 0x486; + constexpr std::ptrdiff_t m_nExtraIterations = 0x487; + constexpr std::ptrdiff_t m_BoxRigids = 0x488; + constexpr std::ptrdiff_t m_DynNodeVertexSet = 0x4a0; + constexpr std::ptrdiff_t m_VertexSetNames = 0x4b8; + constexpr std::ptrdiff_t m_RigidColliderPriorities = 0x4d0; + constexpr std::ptrdiff_t m_MorphLayers = 0x4e8; + constexpr std::ptrdiff_t m_MorphSetData = 0x500; + constexpr std::ptrdiff_t m_VertexMaps = 0x518; + constexpr std::ptrdiff_t m_VertexMapValues = 0x530; + constexpr std::ptrdiff_t m_Effects = 0x548; + constexpr std::ptrdiff_t m_LockToParent = 0x560; + constexpr std::ptrdiff_t m_LockToGoal = 0x578; + constexpr std::ptrdiff_t m_DynNodeWindBases = 0x590; + constexpr std::ptrdiff_t m_flInternalPressure = 0x5a8; + constexpr std::ptrdiff_t m_flDefaultTimeDilation = 0x5ac; + constexpr std::ptrdiff_t m_flWindage = 0x5b0; + constexpr std::ptrdiff_t m_flWindDrag = 0x5b4; + constexpr std::ptrdiff_t m_flDefaultSurfaceStretch = 0x5b8; + constexpr std::ptrdiff_t m_flDefaultThreadStretch = 0x5bc; + constexpr std::ptrdiff_t m_flDefaultGravityScale = 0x5c0; + constexpr std::ptrdiff_t m_flDefaultVelAirDrag = 0x5c4; + constexpr std::ptrdiff_t m_flDefaultExpAirDrag = 0x5c8; + constexpr std::ptrdiff_t m_flDefaultVelQuadAirDrag = 0x5cc; + constexpr std::ptrdiff_t m_flDefaultExpQuadAirDrag = 0x5d0; + constexpr std::ptrdiff_t m_flRodVelocitySmoothRate = 0x5d4; + constexpr std::ptrdiff_t m_flQuadVelocitySmoothRate = 0x5d8; + constexpr std::ptrdiff_t m_flAddWorldCollisionRadius = 0x5dc; + constexpr std::ptrdiff_t m_flDefaultVolumetricSolveAmount = 0x5e0; + constexpr std::ptrdiff_t m_nRodVelocitySmoothIterations = 0x5e4; + constexpr std::ptrdiff_t m_nQuadVelocitySmoothIterations = 0x5e6; +} + +namespace FourVectors2D { + constexpr std::ptrdiff_t x = 0x0; + constexpr std::ptrdiff_t y = 0x10; +} + +namespace FeEdgeDesc_t { + constexpr std::ptrdiff_t nEdge = 0x0; + constexpr std::ptrdiff_t nSide = 0x4; + constexpr std::ptrdiff_t nVirtElem = 0xc; +} + +namespace OldFeEdge_t { + constexpr std::ptrdiff_t m_flK = 0x0; + constexpr std::ptrdiff_t invA = 0xc; + constexpr std::ptrdiff_t t = 0x10; + constexpr std::ptrdiff_t flThetaRelaxed = 0x14; + constexpr std::ptrdiff_t flThetaFactor = 0x18; + constexpr std::ptrdiff_t c01 = 0x1c; + constexpr std::ptrdiff_t c02 = 0x20; + constexpr std::ptrdiff_t c03 = 0x24; + constexpr std::ptrdiff_t c04 = 0x28; + constexpr std::ptrdiff_t flAxialModelDist = 0x2c; + constexpr std::ptrdiff_t flAxialModelWeights = 0x30; + constexpr std::ptrdiff_t m_nNode = 0x40; +} + +namespace FeWeightedNode_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t nWeight = 0x2; +} + +namespace FeKelagerBend2_t { + constexpr std::ptrdiff_t flWeight = 0x0; + constexpr std::ptrdiff_t flHeight0 = 0xc; + constexpr std::ptrdiff_t nNode = 0x10; + constexpr std::ptrdiff_t nReserved = 0x16; +} + +namespace FeStiffHingeBuild_t { + constexpr std::ptrdiff_t flMaxAngle = 0x0; + constexpr std::ptrdiff_t flStrength = 0x4; + constexpr std::ptrdiff_t flMotionBias = 0x8; + constexpr std::ptrdiff_t nNode = 0x14; +} + +namespace FeTri_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t w1 = 0x8; + constexpr std::ptrdiff_t w2 = 0xc; + constexpr std::ptrdiff_t v1x = 0x10; + constexpr std::ptrdiff_t v2 = 0x14; +} + +namespace FeSimdTri_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t w1 = 0x30; + constexpr std::ptrdiff_t w2 = 0x40; + constexpr std::ptrdiff_t v1x = 0x50; + constexpr std::ptrdiff_t v2 = 0x60; +} + +namespace FeQuad_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flSlack = 0x8; + constexpr std::ptrdiff_t vShape = 0xc; +} + +namespace FeNodeBase_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t nDummy = 0x2; + constexpr std::ptrdiff_t nNodeX0 = 0x8; + constexpr std::ptrdiff_t nNodeX1 = 0xa; + constexpr std::ptrdiff_t nNodeY0 = 0xc; + constexpr std::ptrdiff_t nNodeY1 = 0xe; + constexpr std::ptrdiff_t qAdjust = 0x10; +} + +namespace FeNodeWindBase_t { + constexpr std::ptrdiff_t nNodeX0 = 0x0; + constexpr std::ptrdiff_t nNodeX1 = 0x2; + constexpr std::ptrdiff_t nNodeY0 = 0x4; + constexpr std::ptrdiff_t nNodeY1 = 0x6; +} + +namespace FeNodeReverseOffset_t { + constexpr std::ptrdiff_t vOffset = 0x0; + constexpr std::ptrdiff_t nBoneCtrl = 0xc; + constexpr std::ptrdiff_t nTargetNode = 0xe; +} + +namespace FeSimdQuad_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t f4Slack = 0x20; + constexpr std::ptrdiff_t vShape = 0x30; + constexpr std::ptrdiff_t f4Weights = 0xf0; +} + +namespace FeAxialEdgeBend_t { + constexpr std::ptrdiff_t te = 0x0; + constexpr std::ptrdiff_t tv = 0x4; + constexpr std::ptrdiff_t flDist = 0x8; + constexpr std::ptrdiff_t flWeight = 0xc; + constexpr std::ptrdiff_t nNode = 0x1c; +} + +namespace FeBandBendLimit_t { + constexpr std::ptrdiff_t flDistMin = 0x0; + constexpr std::ptrdiff_t flDistMax = 0x4; + constexpr std::ptrdiff_t nNode = 0x8; +} + +namespace FeRodConstraint_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flMaxDist = 0x4; + constexpr std::ptrdiff_t flMinDist = 0x8; + constexpr std::ptrdiff_t flWeight0 = 0xc; + constexpr std::ptrdiff_t flRelaxationFactor = 0x10; +} + +namespace FeTwistConstraint_t { + constexpr std::ptrdiff_t nNodeOrient = 0x0; + constexpr std::ptrdiff_t nNodeEnd = 0x2; + constexpr std::ptrdiff_t flTwistRelax = 0x4; + constexpr std::ptrdiff_t flSwingRelax = 0x8; +} + +namespace FeSimdRodConstraint_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t f4MaxDist = 0x10; + constexpr std::ptrdiff_t f4MinDist = 0x20; + constexpr std::ptrdiff_t f4Weight0 = 0x30; + constexpr std::ptrdiff_t f4RelaxationFactor = 0x40; +} + +namespace FeAnimStrayRadius_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flMaxDist = 0x4; + constexpr std::ptrdiff_t flRelaxationFactor = 0x8; +} + +namespace FeSimdAnimStrayRadius_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flMaxDist = 0x10; + constexpr std::ptrdiff_t flRelaxationFactor = 0x20; +} + +namespace FeSimdNodeBase_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t nNodeX0 = 0x8; + constexpr std::ptrdiff_t nNodeX1 = 0x10; + constexpr std::ptrdiff_t nNodeY0 = 0x18; + constexpr std::ptrdiff_t nNodeY1 = 0x20; + constexpr std::ptrdiff_t nDummy = 0x28; + constexpr std::ptrdiff_t qAdjust = 0x30; +} + +namespace FeNodeIntegrator_t { + constexpr std::ptrdiff_t flPointDamping = 0x0; + constexpr std::ptrdiff_t flAnimationForceAttraction = 0x4; + constexpr std::ptrdiff_t flAnimationVertexAttraction = 0x8; + constexpr std::ptrdiff_t flGravity = 0xc; +} + +namespace FeSpringIntegrator_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flSpringRestLength = 0x4; + constexpr std::ptrdiff_t flSpringConstant = 0x8; + constexpr std::ptrdiff_t flSpringDamping = 0xc; + constexpr std::ptrdiff_t flNodeWeight0 = 0x10; +} + +namespace FeSimdSpringIntegrator_t { + constexpr std::ptrdiff_t nNode = 0x0; + constexpr std::ptrdiff_t flSpringRestLength = 0x10; + constexpr std::ptrdiff_t flSpringConstant = 0x20; + constexpr std::ptrdiff_t flSpringDamping = 0x30; + constexpr std::ptrdiff_t flNodeWeight0 = 0x40; +} + +namespace FeCtrlOffset_t { + constexpr std::ptrdiff_t vOffset = 0x0; + constexpr std::ptrdiff_t nCtrlParent = 0xc; + constexpr std::ptrdiff_t nCtrlChild = 0xe; +} + +namespace FeSoftParent_t { + constexpr std::ptrdiff_t nParent = 0x0; + constexpr std::ptrdiff_t flAlpha = 0x4; +} + +namespace FeCtrlSoftOffset_t { + constexpr std::ptrdiff_t nCtrlParent = 0x0; + constexpr std::ptrdiff_t nCtrlChild = 0x2; + constexpr std::ptrdiff_t vOffset = 0x4; + constexpr std::ptrdiff_t flAlpha = 0x10; +} + +namespace FeCtrlOsOffset_t { + constexpr std::ptrdiff_t nCtrlParent = 0x0; + constexpr std::ptrdiff_t nCtrlChild = 0x2; +} + +namespace FeFollowNode_t { + constexpr std::ptrdiff_t nParentNode = 0x0; + constexpr std::ptrdiff_t nChildNode = 0x2; + constexpr std::ptrdiff_t flWeight = 0x4; +} + +namespace FeCollisionPlane_t { + constexpr std::ptrdiff_t nCtrlParent = 0x0; + constexpr std::ptrdiff_t nChildNode = 0x2; + constexpr std::ptrdiff_t m_Plane = 0x4; + constexpr std::ptrdiff_t flStickiness = 0x14; + constexpr std::ptrdiff_t flStrength = 0x18; +} + +namespace FeWorldCollisionParams_t { + constexpr std::ptrdiff_t flWorldFriction = 0x0; + constexpr std::ptrdiff_t flGroundFriction = 0x4; + constexpr std::ptrdiff_t nListBegin = 0x8; + constexpr std::ptrdiff_t nListEnd = 0xa; +} + +namespace FeTreeChildren_t { + constexpr std::ptrdiff_t nChild = 0x0; +} + +namespace FeTaperedCapsuleRigid_t { + constexpr std::ptrdiff_t vSphere = 0x0; + constexpr std::ptrdiff_t flStickiness = 0x20; + constexpr std::ptrdiff_t nNode = 0x24; + constexpr std::ptrdiff_t nCollisionMask = 0x26; + constexpr std::ptrdiff_t nVertexMapIndex = 0x28; + constexpr std::ptrdiff_t nFlags = 0x2a; +} + +namespace FeSphereRigid_t { + constexpr std::ptrdiff_t vSphere = 0x0; + constexpr std::ptrdiff_t flStickiness = 0x10; + constexpr std::ptrdiff_t nNode = 0x14; + constexpr std::ptrdiff_t nCollisionMask = 0x16; + constexpr std::ptrdiff_t nVertexMapIndex = 0x18; + constexpr std::ptrdiff_t nFlags = 0x1a; +} + +namespace FeBoxRigid_t { + constexpr std::ptrdiff_t tmFrame2 = 0x0; + constexpr std::ptrdiff_t nNode = 0x20; + constexpr std::ptrdiff_t nCollisionMask = 0x22; + constexpr std::ptrdiff_t vSize = 0x24; + constexpr std::ptrdiff_t flStickiness = 0x30; + constexpr std::ptrdiff_t nVertexMapIndex = 0x34; + constexpr std::ptrdiff_t nFlags = 0x36; + constexpr std::ptrdiff_t flReserved = 0x38; +} + +namespace CovMatrix3 { + constexpr std::ptrdiff_t m_vDiag = 0x0; + constexpr std::ptrdiff_t m_flXY = 0xc; + constexpr std::ptrdiff_t m_flXZ = 0x10; + constexpr std::ptrdiff_t m_flYZ = 0x14; +} + +namespace FourCovMatrices3 { + constexpr std::ptrdiff_t m_vDiag = 0x0; + constexpr std::ptrdiff_t m_flXY = 0x30; + constexpr std::ptrdiff_t m_flXZ = 0x40; + constexpr std::ptrdiff_t m_flYZ = 0x50; +} + +namespace FeFitWeight_t { + constexpr std::ptrdiff_t flWeight = 0x0; + constexpr std::ptrdiff_t nNode = 0x4; + constexpr std::ptrdiff_t nDummy = 0x6; +} + +namespace FeFitInfluence_t { + constexpr std::ptrdiff_t nVertexNode = 0x0; + constexpr std::ptrdiff_t flWeight = 0x4; + constexpr std::ptrdiff_t nMatrixNode = 0x8; +} + +namespace FeFitMatrix_t { + constexpr std::ptrdiff_t bone = 0x0; + constexpr std::ptrdiff_t vCenter = 0x20; + constexpr std::ptrdiff_t nEnd = 0x2c; + constexpr std::ptrdiff_t nNode = 0x2e; + constexpr std::ptrdiff_t nBeginDynamic = 0x30; +} + +namespace FeRigidColliderIndices_t { + constexpr std::ptrdiff_t m_nTaperedCapsuleRigidIndex = 0x0; + constexpr std::ptrdiff_t m_nSphereRigidIndex = 0x2; + constexpr std::ptrdiff_t m_nBoxRigidIndex = 0x4; + constexpr std::ptrdiff_t m_nCollisionPlaneIndex = 0x6; +} + +namespace FeBuildTaperedCapsuleRigid_t { + constexpr std::ptrdiff_t m_nPriority = 0x30; + constexpr std::ptrdiff_t m_nVertexMapHash = 0x34; +} + +namespace FeBuildBoxRigid_t { + constexpr std::ptrdiff_t m_nPriority = 0x40; + constexpr std::ptrdiff_t m_nVertexMapHash = 0x44; +} + +namespace FeBuildSphereRigid_t { + constexpr std::ptrdiff_t m_nPriority = 0x20; + constexpr std::ptrdiff_t m_nVertexMapHash = 0x24; +} + +namespace FeSourceEdge_t { + constexpr std::ptrdiff_t nNode = 0x0; +} + +namespace FeEffectDesc_t { + constexpr std::ptrdiff_t sName = 0x0; + constexpr std::ptrdiff_t nNameHash = 0x8; + constexpr std::ptrdiff_t nType = 0xc; + constexpr std::ptrdiff_t m_Params = 0x10; +} + +namespace FeVertexMapBuild_t { + constexpr std::ptrdiff_t m_VertexMapName = 0x0; + constexpr std::ptrdiff_t m_nNameHash = 0x8; + constexpr std::ptrdiff_t m_Color = 0xc; + constexpr std::ptrdiff_t m_flVolumetricSolveStrength = 0x10; + constexpr std::ptrdiff_t m_nScaleSourceNode = 0x14; + constexpr std::ptrdiff_t m_Weights = 0x18; +} + +namespace CFeVertexMapBuildArray { + constexpr std::ptrdiff_t m_Array = 0x0; +} + +namespace FeProxyVertexMap_t { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_flWeight = 0x8; +} + +namespace FeVertexMapDesc_t { + constexpr std::ptrdiff_t sName = 0x0; + constexpr std::ptrdiff_t nNameHash = 0x8; + constexpr std::ptrdiff_t nColor = 0xc; + constexpr std::ptrdiff_t nFlags = 0x10; + constexpr std::ptrdiff_t nVertexBase = 0x14; + constexpr std::ptrdiff_t nVertexCount = 0x16; + constexpr std::ptrdiff_t nMapOffset = 0x18; + constexpr std::ptrdiff_t nNodeListOffset = 0x1c; + constexpr std::ptrdiff_t vCenterOfMass = 0x20; + constexpr std::ptrdiff_t flVolumetricSolveStrength = 0x2c; + constexpr std::ptrdiff_t nScaleSourceNode = 0x30; + constexpr std::ptrdiff_t nNodeListCount = 0x32; +} + +namespace FeMorphLayerDepr_t { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_nNameHash = 0x8; + constexpr std::ptrdiff_t m_Nodes = 0x10; + constexpr std::ptrdiff_t m_InitPos = 0x28; + constexpr std::ptrdiff_t m_Gravity = 0x40; + constexpr std::ptrdiff_t m_GoalStrength = 0x58; + constexpr std::ptrdiff_t m_GoalDamping = 0x70; + constexpr std::ptrdiff_t m_nFlags = 0x88; +} + +namespace CFeMorphLayer { + constexpr std::ptrdiff_t m_Name = 0x0; + constexpr std::ptrdiff_t m_nNameHash = 0x8; + constexpr std::ptrdiff_t m_Nodes = 0x10; + constexpr std::ptrdiff_t m_InitPos = 0x28; + constexpr std::ptrdiff_t m_Gravity = 0x40; + constexpr std::ptrdiff_t m_GoalStrength = 0x58; + constexpr std::ptrdiff_t m_GoalDamping = 0x70; +} + +namespace Dop26_t { + constexpr std::ptrdiff_t m_flSupport = 0x0; +} + +namespace RnSphere_t { + constexpr std::ptrdiff_t m_vCenter = 0x0; + constexpr std::ptrdiff_t m_flRadius = 0xc; +} + +namespace RnCapsule_t { + constexpr std::ptrdiff_t m_vCenter = 0x0; + constexpr std::ptrdiff_t m_flRadius = 0x18; +} + +namespace RnPlane_t { + constexpr std::ptrdiff_t m_vNormal = 0x0; + constexpr std::ptrdiff_t m_flOffset = 0xc; +} + +namespace RnHalfEdge_t { + constexpr std::ptrdiff_t m_nNext = 0x0; + constexpr std::ptrdiff_t m_nTwin = 0x1; + constexpr std::ptrdiff_t m_nOrigin = 0x2; + constexpr std::ptrdiff_t m_nFace = 0x3; +} + +namespace RnFace_t { + constexpr std::ptrdiff_t m_nEdge = 0x0; +} + +namespace CRegionSVM { + constexpr std::ptrdiff_t m_Planes = 0x0; + constexpr std::ptrdiff_t m_Nodes = 0x18; +} + +namespace RnHull_t { + constexpr std::ptrdiff_t m_vCentroid = 0x0; + constexpr std::ptrdiff_t m_flMaxAngularRadius = 0xc; + constexpr std::ptrdiff_t m_Bounds = 0x10; + constexpr std::ptrdiff_t m_vOrthographicAreas = 0x28; + constexpr std::ptrdiff_t m_MassProperties = 0x34; + constexpr std::ptrdiff_t m_flVolume = 0x64; + constexpr std::ptrdiff_t m_Vertices = 0x68; + constexpr std::ptrdiff_t m_Edges = 0x80; + constexpr std::ptrdiff_t m_Faces = 0x98; + constexpr std::ptrdiff_t m_Planes = 0xb0; + constexpr std::ptrdiff_t m_nFlags = 0xc8; + constexpr std::ptrdiff_t m_pRegionSVM = 0xd0; +} + +namespace RnTriangle_t { + constexpr std::ptrdiff_t m_nIndex = 0x0; +} + +namespace RnWing_t { + constexpr std::ptrdiff_t m_nIndex = 0x0; +} + +namespace RnNode_t { + constexpr std::ptrdiff_t m_vMin = 0x0; + constexpr std::ptrdiff_t m_nChildren = 0xc; + constexpr std::ptrdiff_t m_vMax = 0x10; + constexpr std::ptrdiff_t m_nTriangleOffset = 0x1c; +} + +namespace RnMesh_t { + constexpr std::ptrdiff_t m_vMin = 0x0; + constexpr std::ptrdiff_t m_vMax = 0xc; + constexpr std::ptrdiff_t m_Nodes = 0x18; + constexpr std::ptrdiff_t m_Vertices = 0x30; + constexpr std::ptrdiff_t m_Triangles = 0x48; + constexpr std::ptrdiff_t m_Wings = 0x60; + constexpr std::ptrdiff_t m_Materials = 0x78; + constexpr std::ptrdiff_t m_vOrthographicAreas = 0x90; + constexpr std::ptrdiff_t m_bHasOpenEdges = 0x9c; +} + +namespace RnShapeDesc_t { + constexpr std::ptrdiff_t m_nCollisionAttributeIndex = 0x0; + constexpr std::ptrdiff_t m_nSurfacePropertyIndex = 0x4; + constexpr std::ptrdiff_t m_UserFriendlyName = 0x8; +} + +namespace RnSphereDesc_t { + constexpr std::ptrdiff_t m_Sphere = 0x10; +} + +namespace RnCapsuleDesc_t { + constexpr std::ptrdiff_t m_Capsule = 0x10; +} + +namespace RnHullDesc_t { + constexpr std::ptrdiff_t m_Hull = 0x10; +} + +namespace RnMeshDesc_t { + constexpr std::ptrdiff_t m_Mesh = 0x10; +} + +namespace RnSoftbodyParticle_t { + constexpr std::ptrdiff_t m_flMassInv = 0x0; +} + +namespace RnSoftbodySpring_t { + constexpr std::ptrdiff_t m_nParticle = 0x0; + constexpr std::ptrdiff_t m_flLength = 0x4; +} + +namespace RnSoftbodyCapsule_t { + constexpr std::ptrdiff_t m_vCenter = 0x0; + constexpr std::ptrdiff_t m_flRadius = 0x18; + constexpr std::ptrdiff_t m_nParticle = 0x1c; +} + +namespace RnBlendVertex_t { + constexpr std::ptrdiff_t m_nWeight0 = 0x0; + constexpr std::ptrdiff_t m_nIndex0 = 0x2; + constexpr std::ptrdiff_t m_nWeight1 = 0x4; + constexpr std::ptrdiff_t m_nIndex1 = 0x6; + constexpr std::ptrdiff_t m_nWeight2 = 0x8; + constexpr std::ptrdiff_t m_nIndex2 = 0xa; + constexpr std::ptrdiff_t m_nFlags = 0xc; + constexpr std::ptrdiff_t m_nTargetIndex = 0xe; +} + +namespace CastSphereSATParams_t { + constexpr std::ptrdiff_t m_vRayStart = 0x0; + constexpr std::ptrdiff_t m_vRayDelta = 0xc; + constexpr std::ptrdiff_t m_flRadius = 0x18; + constexpr std::ptrdiff_t m_flMaxFraction = 0x1c; + constexpr std::ptrdiff_t m_flScale = 0x20; + constexpr std::ptrdiff_t m_pHull = 0x28; +} + +namespace RnBodyDesc_t { + constexpr std::ptrdiff_t m_sDebugName = 0x0; + constexpr std::ptrdiff_t m_vPosition = 0x8; + constexpr std::ptrdiff_t m_qOrientation = 0x14; + constexpr std::ptrdiff_t m_vLinearVelocity = 0x24; + constexpr std::ptrdiff_t m_vAngularVelocity = 0x30; + constexpr std::ptrdiff_t m_vLocalMassCenter = 0x3c; + constexpr std::ptrdiff_t m_LocalInertiaInv = 0x48; + constexpr std::ptrdiff_t m_flMassInv = 0x6c; + constexpr std::ptrdiff_t m_flGameMass = 0x70; + constexpr std::ptrdiff_t m_flInertiaScaleInv = 0x74; + constexpr std::ptrdiff_t m_flLinearDamping = 0x78; + constexpr std::ptrdiff_t m_flAngularDamping = 0x7c; + constexpr std::ptrdiff_t m_flLinearDrag = 0x80; + constexpr std::ptrdiff_t m_flAngularDrag = 0x84; + constexpr std::ptrdiff_t m_flLinearBuoyancyDrag = 0x88; + constexpr std::ptrdiff_t m_flAngularBuoyancyDrag = 0x8c; + constexpr std::ptrdiff_t m_vLastAwakeForceAccum = 0x90; + constexpr std::ptrdiff_t m_vLastAwakeTorqueAccum = 0x9c; + constexpr std::ptrdiff_t m_flBuoyancyFactor = 0xa8; + constexpr std::ptrdiff_t m_flGravityScale = 0xac; + constexpr std::ptrdiff_t m_flTimeScale = 0xb0; + constexpr std::ptrdiff_t m_nBodyType = 0xb4; + constexpr std::ptrdiff_t m_nGameIndex = 0xb8; + constexpr std::ptrdiff_t m_nGameFlags = 0xbc; + constexpr std::ptrdiff_t m_nMinVelocityIterations = 0xc0; + constexpr std::ptrdiff_t m_nMinPositionIterations = 0xc1; + constexpr std::ptrdiff_t m_nMassPriority = 0xc2; + constexpr std::ptrdiff_t m_bEnabled = 0xc3; + constexpr std::ptrdiff_t m_bSleeping = 0xc4; + constexpr std::ptrdiff_t m_bIsContinuousEnabled = 0xc5; + constexpr std::ptrdiff_t m_bDragEnabled = 0xc6; + constexpr std::ptrdiff_t m_bBuoyancyDragEnabled = 0xc7; + constexpr std::ptrdiff_t m_bGravityDisabled = 0xc8; + constexpr std::ptrdiff_t m_bSpeculativeEnabled = 0xc9; + constexpr std::ptrdiff_t m_bHasShadowController = 0xca; +} + +namespace VertexPositionNormal_t { + constexpr std::ptrdiff_t m_vPosition = 0x0; + constexpr std::ptrdiff_t m_vNormal = 0xc; +} + +namespace VertexPositionColor_t { + constexpr std::ptrdiff_t m_vPosition = 0x0; +} + +namespace vphysics_save_cphysicsbody_t { + constexpr std::ptrdiff_t m_nOldPointer = 0xd0; +} + diff --git a/generated/vphysics2.dll.json b/generated/vphysics2.dll.json new file mode 100644 index 0000000..712c182 --- /dev/null +++ b/generated/vphysics2.dll.json @@ -0,0 +1,653 @@ +{ + "CFeIndexedJiggleBone": { + "m_jiggleBone": 8, + "m_nJiggleParent": 4, + "m_nNode": 0 + }, + "CFeJiggleBone": { + "m_flAlongDamping": 32, + "m_flAlongStiffness": 28, + "m_flAngleLimit": 36, + "m_flBaseDamping": 80, + "m_flBaseForwardFriction": 116, + "m_flBaseLeftFriction": 92, + "m_flBaseMass": 72, + "m_flBaseMaxForward": 112, + "m_flBaseMaxLeft": 88, + "m_flBaseMaxUp": 100, + "m_flBaseMinForward": 108, + "m_flBaseMinLeft": 84, + "m_flBaseMinUp": 96, + "m_flBaseStiffness": 76, + "m_flBaseUpFriction": 104, + "m_flLength": 4, + "m_flMaxPitch": 60, + "m_flMaxYaw": 44, + "m_flMinPitch": 56, + "m_flMinYaw": 40, + "m_flPitchBounce": 68, + "m_flPitchDamping": 24, + "m_flPitchFriction": 64, + "m_flPitchStiffness": 20, + "m_flRadius0": 120, + "m_flRadius1": 124, + "m_flTipMass": 8, + "m_flYawBounce": 52, + "m_flYawDamping": 16, + "m_flYawFriction": 48, + "m_flYawStiffness": 12, + "m_nCollisionMask": 152, + "m_nFlags": 0, + "m_vPoint0": 128, + "m_vPoint1": 140 + }, + "CFeMorphLayer": { + "m_GoalDamping": 112, + "m_GoalStrength": 88, + "m_Gravity": 64, + "m_InitPos": 40, + "m_Name": 0, + "m_Nodes": 16, + "m_nNameHash": 8 + }, + "CFeNamedJiggleBone": { + "m_jiggleBone": 52, + "m_nJiggleParent": 48, + "m_strParentBone": 0, + "m_transform": 16 + }, + "CFeVertexMapBuildArray": { + "m_Array": 0 + }, + "CRegionSVM": { + "m_Nodes": 24, + "m_Planes": 0 + }, + "CastSphereSATParams_t": { + "m_flMaxFraction": 28, + "m_flRadius": 24, + "m_flScale": 32, + "m_pHull": 40, + "m_vRayDelta": 12, + "m_vRayStart": 0 + }, + "CovMatrix3": { + "m_flXY": 12, + "m_flXZ": 16, + "m_flYZ": 20, + "m_vDiag": 0 + }, + "Dop26_t": { + "m_flSupport": 0 + }, + "FeAnimStrayRadius_t": { + "flMaxDist": 4, + "flRelaxationFactor": 8, + "nNode": 0 + }, + "FeAxialEdgeBend_t": { + "flDist": 8, + "flWeight": 12, + "nNode": 28, + "te": 0, + "tv": 4 + }, + "FeBandBendLimit_t": { + "flDistMax": 4, + "flDistMin": 0, + "nNode": 8 + }, + "FeBoxRigid_t": { + "flReserved": 56, + "flStickiness": 48, + "nCollisionMask": 34, + "nFlags": 54, + "nNode": 32, + "nVertexMapIndex": 52, + "tmFrame2": 0, + "vSize": 36 + }, + "FeBuildBoxRigid_t": { + "m_nPriority": 64, + "m_nVertexMapHash": 68 + }, + "FeBuildSphereRigid_t": { + "m_nPriority": 32, + "m_nVertexMapHash": 36 + }, + "FeBuildTaperedCapsuleRigid_t": { + "m_nPriority": 48, + "m_nVertexMapHash": 52 + }, + "FeCollisionPlane_t": { + "flStickiness": 20, + "flStrength": 24, + "m_Plane": 4, + "nChildNode": 2, + "nCtrlParent": 0 + }, + "FeCtrlOffset_t": { + "nCtrlChild": 14, + "nCtrlParent": 12, + "vOffset": 0 + }, + "FeCtrlOsOffset_t": { + "nCtrlChild": 2, + "nCtrlParent": 0 + }, + "FeCtrlSoftOffset_t": { + "flAlpha": 16, + "nCtrlChild": 2, + "nCtrlParent": 0, + "vOffset": 4 + }, + "FeEdgeDesc_t": { + "nEdge": 0, + "nSide": 4, + "nVirtElem": 12 + }, + "FeEffectDesc_t": { + "m_Params": 16, + "nNameHash": 8, + "nType": 12, + "sName": 0 + }, + "FeFitInfluence_t": { + "flWeight": 4, + "nMatrixNode": 8, + "nVertexNode": 0 + }, + "FeFitMatrix_t": { + "bone": 0, + "nBeginDynamic": 48, + "nEnd": 44, + "nNode": 46, + "vCenter": 32 + }, + "FeFitWeight_t": { + "flWeight": 0, + "nDummy": 6, + "nNode": 4 + }, + "FeFollowNode_t": { + "flWeight": 4, + "nChildNode": 2, + "nParentNode": 0 + }, + "FeKelagerBend2_t": { + "flHeight0": 12, + "flWeight": 0, + "nNode": 16, + "nReserved": 22 + }, + "FeMorphLayerDepr_t": { + "m_GoalDamping": 112, + "m_GoalStrength": 88, + "m_Gravity": 64, + "m_InitPos": 40, + "m_Name": 0, + "m_Nodes": 16, + "m_nFlags": 136, + "m_nNameHash": 8 + }, + "FeNodeBase_t": { + "nDummy": 2, + "nNode": 0, + "nNodeX0": 8, + "nNodeX1": 10, + "nNodeY0": 12, + "nNodeY1": 14, + "qAdjust": 16 + }, + "FeNodeIntegrator_t": { + "flAnimationForceAttraction": 4, + "flAnimationVertexAttraction": 8, + "flGravity": 12, + "flPointDamping": 0 + }, + "FeNodeReverseOffset_t": { + "nBoneCtrl": 12, + "nTargetNode": 14, + "vOffset": 0 + }, + "FeNodeWindBase_t": { + "nNodeX0": 0, + "nNodeX1": 2, + "nNodeY0": 4, + "nNodeY1": 6 + }, + "FeProxyVertexMap_t": { + "m_Name": 0, + "m_flWeight": 8 + }, + "FeQuad_t": { + "flSlack": 8, + "nNode": 0, + "vShape": 12 + }, + "FeRigidColliderIndices_t": { + "m_nBoxRigidIndex": 4, + "m_nCollisionPlaneIndex": 6, + "m_nSphereRigidIndex": 2, + "m_nTaperedCapsuleRigidIndex": 0 + }, + "FeRodConstraint_t": { + "flMaxDist": 4, + "flMinDist": 8, + "flRelaxationFactor": 16, + "flWeight0": 12, + "nNode": 0 + }, + "FeSimdAnimStrayRadius_t": { + "flMaxDist": 16, + "flRelaxationFactor": 32, + "nNode": 0 + }, + "FeSimdNodeBase_t": { + "nDummy": 40, + "nNode": 0, + "nNodeX0": 8, + "nNodeX1": 16, + "nNodeY0": 24, + "nNodeY1": 32, + "qAdjust": 48 + }, + "FeSimdQuad_t": { + "f4Slack": 32, + "f4Weights": 240, + "nNode": 0, + "vShape": 48 + }, + "FeSimdRodConstraint_t": { + "f4MaxDist": 16, + "f4MinDist": 32, + "f4RelaxationFactor": 64, + "f4Weight0": 48, + "nNode": 0 + }, + "FeSimdSpringIntegrator_t": { + "flNodeWeight0": 64, + "flSpringConstant": 32, + "flSpringDamping": 48, + "flSpringRestLength": 16, + "nNode": 0 + }, + "FeSimdTri_t": { + "nNode": 0, + "v1x": 80, + "v2": 96, + "w1": 48, + "w2": 64 + }, + "FeSoftParent_t": { + "flAlpha": 4, + "nParent": 0 + }, + "FeSourceEdge_t": { + "nNode": 0 + }, + "FeSphereRigid_t": { + "flStickiness": 16, + "nCollisionMask": 22, + "nFlags": 26, + "nNode": 20, + "nVertexMapIndex": 24, + "vSphere": 0 + }, + "FeSpringIntegrator_t": { + "flNodeWeight0": 16, + "flSpringConstant": 8, + "flSpringDamping": 12, + "flSpringRestLength": 4, + "nNode": 0 + }, + "FeStiffHingeBuild_t": { + "flMaxAngle": 0, + "flMotionBias": 8, + "flStrength": 4, + "nNode": 20 + }, + "FeTaperedCapsuleRigid_t": { + "flStickiness": 32, + "nCollisionMask": 38, + "nFlags": 42, + "nNode": 36, + "nVertexMapIndex": 40, + "vSphere": 0 + }, + "FeTreeChildren_t": { + "nChild": 0 + }, + "FeTri_t": { + "nNode": 0, + "v1x": 16, + "v2": 20, + "w1": 8, + "w2": 12 + }, + "FeTwistConstraint_t": { + "flSwingRelax": 8, + "flTwistRelax": 4, + "nNodeEnd": 2, + "nNodeOrient": 0 + }, + "FeVertexMapBuild_t": { + "m_Color": 12, + "m_VertexMapName": 0, + "m_Weights": 24, + "m_flVolumetricSolveStrength": 16, + "m_nNameHash": 8, + "m_nScaleSourceNode": 20 + }, + "FeVertexMapDesc_t": { + "flVolumetricSolveStrength": 44, + "nColor": 12, + "nFlags": 16, + "nMapOffset": 24, + "nNameHash": 8, + "nNodeListCount": 50, + "nNodeListOffset": 28, + "nScaleSourceNode": 48, + "nVertexBase": 20, + "nVertexCount": 22, + "sName": 0, + "vCenterOfMass": 32 + }, + "FeWeightedNode_t": { + "nNode": 0, + "nWeight": 2 + }, + "FeWorldCollisionParams_t": { + "flGroundFriction": 4, + "flWorldFriction": 0, + "nListBegin": 8, + "nListEnd": 10 + }, + "FourCovMatrices3": { + "m_flXY": 48, + "m_flXZ": 64, + "m_flYZ": 80, + "m_vDiag": 0 + }, + "FourVectors2D": { + "x": 0, + "y": 16 + }, + "OldFeEdge_t": { + "c01": 28, + "c02": 32, + "c03": 36, + "c04": 40, + "flAxialModelDist": 44, + "flAxialModelWeights": 48, + "flThetaFactor": 24, + "flThetaRelaxed": 20, + "invA": 12, + "m_flK": 0, + "m_nNode": 64, + "t": 16 + }, + "PhysFeModelDesc_t": { + "m_AnimStrayRadii": 960, + "m_AxialEdges": 336, + "m_BoxRigids": 1160, + "m_CollisionPlanes": 456, + "m_CtrlHash": 0, + "m_CtrlName": 24, + "m_CtrlOffsets": 384, + "m_CtrlOsOffsets": 408, + "m_CtrlSoftOffsets": 1032, + "m_DynNodeFriction": 624, + "m_DynNodeVertexSet": 1184, + "m_DynNodeWindBases": 1424, + "m_Effects": 1352, + "m_FitMatrices": 888, + "m_FitWeights": 912, + "m_FollowNodes": 432, + "m_FreeNodes": 864, + "m_GoalDampedSpringIntegrators": 1104, + "m_InitPose": 264, + "m_JiggleBones": 1056, + "m_KelagerBends": 1008, + "m_LegacyStretchForce": 576, + "m_LocalForce": 672, + "m_LocalRotation": 648, + "m_LockToGoal": 1400, + "m_LockToParent": 1376, + "m_MorphLayers": 1256, + "m_MorphSetData": 1280, + "m_NodeBases": 120, + "m_NodeCollisionRadii": 600, + "m_NodeIntegrator": 480, + "m_NodeInvMasses": 360, + "m_Quads": 168, + "m_ReverseOffsets": 936, + "m_RigidColliderPriorities": 1232, + "m_Rods": 288, + "m_Ropes": 96, + "m_SimdAnimStrayRadii": 984, + "m_SimdNodeBases": 144, + "m_SimdQuads": 192, + "m_SimdRods": 240, + "m_SimdSpringIntegrator": 528, + "m_SimdTris": 216, + "m_SourceElems": 1080, + "m_SphereRigids": 744, + "m_SpringIntegrator": 504, + "m_TaperedCapsuleRigids": 720, + "m_TaperedCapsuleStretches": 696, + "m_TreeChildren": 840, + "m_TreeCollisionMasks": 816, + "m_TreeParents": 792, + "m_Tris": 1128, + "m_Twists": 312, + "m_VertexMapValues": 1328, + "m_VertexMaps": 1304, + "m_VertexSetNames": 1208, + "m_WorldCollisionNodes": 768, + "m_WorldCollisionParams": 552, + "m_flAddWorldCollisionRadius": 1500, + "m_flDefaultExpAirDrag": 1480, + "m_flDefaultExpQuadAirDrag": 1488, + "m_flDefaultGravityScale": 1472, + "m_flDefaultSurfaceStretch": 1464, + "m_flDefaultThreadStretch": 1468, + "m_flDefaultTimeDilation": 1452, + "m_flDefaultVelAirDrag": 1476, + "m_flDefaultVelQuadAirDrag": 1484, + "m_flDefaultVolumetricSolveAmount": 1504, + "m_flInternalPressure": 1448, + "m_flLocalForce": 56, + "m_flLocalRotation": 60, + "m_flQuadVelocitySmoothRate": 1496, + "m_flRodVelocitySmoothRate": 1492, + "m_flWindDrag": 1460, + "m_flWindage": 1456, + "m_nDynamicNodeFlags": 52, + "m_nExtraGoalIterations": 1158, + "m_nExtraIterations": 1159, + "m_nExtraPressureIterations": 1157, + "m_nFirstPositionDrivenNode": 70, + "m_nNodeBaseJiggleboneDependsCount": 86, + "m_nNodeCount": 64, + "m_nQuadCount1": 80, + "m_nQuadCount2": 82, + "m_nQuadVelocitySmoothIterations": 1510, + "m_nReservedUint8": 1156, + "m_nRodVelocitySmoothIterations": 1508, + "m_nRopeCount": 88, + "m_nRotLockStaticNodes": 68, + "m_nSimdQuadCount1": 76, + "m_nSimdQuadCount2": 78, + "m_nSimdTriCount1": 72, + "m_nSimdTriCount2": 74, + "m_nStaticNodeFlags": 48, + "m_nStaticNodes": 66, + "m_nTreeDepth": 84, + "m_nTriCount1": 1152, + "m_nTriCount2": 1154 + }, + "RnBlendVertex_t": { + "m_nFlags": 12, + "m_nIndex0": 2, + "m_nIndex1": 6, + "m_nIndex2": 10, + "m_nTargetIndex": 14, + "m_nWeight0": 0, + "m_nWeight1": 4, + "m_nWeight2": 8 + }, + "RnBodyDesc_t": { + "m_LocalInertiaInv": 72, + "m_bBuoyancyDragEnabled": 199, + "m_bDragEnabled": 198, + "m_bEnabled": 195, + "m_bGravityDisabled": 200, + "m_bHasShadowController": 202, + "m_bIsContinuousEnabled": 197, + "m_bSleeping": 196, + "m_bSpeculativeEnabled": 201, + "m_flAngularBuoyancyDrag": 140, + "m_flAngularDamping": 124, + "m_flAngularDrag": 132, + "m_flBuoyancyFactor": 168, + "m_flGameMass": 112, + "m_flGravityScale": 172, + "m_flInertiaScaleInv": 116, + "m_flLinearBuoyancyDrag": 136, + "m_flLinearDamping": 120, + "m_flLinearDrag": 128, + "m_flMassInv": 108, + "m_flTimeScale": 176, + "m_nBodyType": 180, + "m_nGameFlags": 188, + "m_nGameIndex": 184, + "m_nMassPriority": 194, + "m_nMinPositionIterations": 193, + "m_nMinVelocityIterations": 192, + "m_qOrientation": 20, + "m_sDebugName": 0, + "m_vAngularVelocity": 48, + "m_vLastAwakeForceAccum": 144, + "m_vLastAwakeTorqueAccum": 156, + "m_vLinearVelocity": 36, + "m_vLocalMassCenter": 60, + "m_vPosition": 8 + }, + "RnCapsuleDesc_t": { + "m_Capsule": 16 + }, + "RnCapsule_t": { + "m_flRadius": 24, + "m_vCenter": 0 + }, + "RnFace_t": { + "m_nEdge": 0 + }, + "RnHalfEdge_t": { + "m_nFace": 3, + "m_nNext": 0, + "m_nOrigin": 2, + "m_nTwin": 1 + }, + "RnHullDesc_t": { + "m_Hull": 16 + }, + "RnHull_t": { + "m_Bounds": 16, + "m_Edges": 128, + "m_Faces": 152, + "m_MassProperties": 52, + "m_Planes": 176, + "m_Vertices": 104, + "m_flMaxAngularRadius": 12, + "m_flVolume": 100, + "m_nFlags": 200, + "m_pRegionSVM": 208, + "m_vCentroid": 0, + "m_vOrthographicAreas": 40 + }, + "RnMeshDesc_t": { + "m_Mesh": 16 + }, + "RnMesh_t": { + "m_Materials": 120, + "m_Nodes": 24, + "m_Triangles": 72, + "m_Vertices": 48, + "m_Wings": 96, + "m_bHasOpenEdges": 156, + "m_vMax": 12, + "m_vMin": 0, + "m_vOrthographicAreas": 144 + }, + "RnNode_t": { + "m_nChildren": 12, + "m_nTriangleOffset": 28, + "m_vMax": 16, + "m_vMin": 0 + }, + "RnPlane_t": { + "m_flOffset": 12, + "m_vNormal": 0 + }, + "RnShapeDesc_t": { + "m_UserFriendlyName": 8, + "m_nCollisionAttributeIndex": 0, + "m_nSurfacePropertyIndex": 4 + }, + "RnSoftbodyCapsule_t": { + "m_flRadius": 24, + "m_nParticle": 28, + "m_vCenter": 0 + }, + "RnSoftbodyParticle_t": { + "m_flMassInv": 0 + }, + "RnSoftbodySpring_t": { + "m_flLength": 4, + "m_nParticle": 0 + }, + "RnSphereDesc_t": { + "m_Sphere": 16 + }, + "RnSphere_t": { + "m_flRadius": 12, + "m_vCenter": 0 + }, + "RnTriangle_t": { + "m_nIndex": 0 + }, + "RnWing_t": { + "m_nIndex": 0 + }, + "VertexPositionColor_t": { + "m_vPosition": 0 + }, + "VertexPositionNormal_t": { + "m_vNormal": 12, + "m_vPosition": 0 + }, + "constraint_axislimit_t": { + "flMaxRotation": 4, + "flMinRotation": 0, + "flMotorMaxTorque": 12, + "flMotorTargetAngSpeed": 8 + }, + "constraint_breakableparams_t": { + "bodyMassScale": 12, + "forceLimit": 4, + "isActive": 20, + "strength": 0, + "torqueLimit": 8 + }, + "constraint_hingeparams_t": { + "constraint": 40, + "hingeAxis": 24, + "worldAxisDirection": 12, + "worldPosition": 0 + }, + "vphysics_save_cphysicsbody_t": { + "m_nOldPointer": 208 + } +} \ No newline at end of file diff --git a/generated/worldrenderer.dll.hpp b/generated/worldrenderer.dll.hpp new file mode 100644 index 0000000..0435f08 --- /dev/null +++ b/generated/worldrenderer.dll.hpp @@ -0,0 +1,228 @@ +#pragma once + +#include + +namespace EntityIOConnectionData_t { + constexpr std::ptrdiff_t m_outputName = 0x0; + constexpr std::ptrdiff_t m_targetType = 0x8; + constexpr std::ptrdiff_t m_targetName = 0x10; + constexpr std::ptrdiff_t m_inputName = 0x18; + constexpr std::ptrdiff_t m_overrideParam = 0x20; + constexpr std::ptrdiff_t m_flDelay = 0x28; + constexpr std::ptrdiff_t m_nTimesToFire = 0x2c; +} + +namespace EntityKeyValueData_t { + constexpr std::ptrdiff_t m_connections = 0x8; + constexpr std::ptrdiff_t m_keyValuesData = 0x20; +} + +namespace PermEntityLumpData_t { + constexpr std::ptrdiff_t m_name = 0x8; + constexpr std::ptrdiff_t m_hammerUniqueId = 0x10; + constexpr std::ptrdiff_t m_childLumps = 0x18; + constexpr std::ptrdiff_t m_entityKeyValues = 0x30; +} + +namespace SceneObject_t { + constexpr std::ptrdiff_t m_nObjectID = 0x0; + constexpr std::ptrdiff_t m_vTransform = 0x4; + constexpr std::ptrdiff_t m_flFadeStartDistance = 0x34; + constexpr std::ptrdiff_t m_flFadeEndDistance = 0x38; + constexpr std::ptrdiff_t m_vTintColor = 0x3c; + constexpr std::ptrdiff_t m_skin = 0x50; + constexpr std::ptrdiff_t m_nObjectTypeFlags = 0x58; + constexpr std::ptrdiff_t m_vLightingOrigin = 0x5c; + constexpr std::ptrdiff_t m_nLightGroup = 0x68; + constexpr std::ptrdiff_t m_nOverlayRenderOrder = 0x6c; + constexpr std::ptrdiff_t m_nLODOverride = 0x6e; + constexpr std::ptrdiff_t m_nCubeMapPrecomputedHandshake = 0x70; + constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x74; + constexpr std::ptrdiff_t m_renderableModel = 0x80; + constexpr std::ptrdiff_t m_renderable = 0x88; +} + +namespace BaseSceneObjectOverride_t { + constexpr std::ptrdiff_t m_nSceneObjectIndex = 0x0; +} + +namespace ExtraVertexStreamOverride_t { + constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; + constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; + constexpr std::ptrdiff_t m_nAdditionalMeshDrawPrimitiveFlags = 0xc; + constexpr std::ptrdiff_t m_extraBufferBinding = 0x10; +} + +namespace MaterialOverride_t { + constexpr std::ptrdiff_t m_nSubSceneObject = 0x4; + constexpr std::ptrdiff_t m_nDrawCallIndex = 0x8; + constexpr std::ptrdiff_t m_pMaterial = 0x10; +} + +namespace InfoOverlayData_t { + constexpr std::ptrdiff_t m_transform = 0x0; + constexpr std::ptrdiff_t m_flWidth = 0x30; + constexpr std::ptrdiff_t m_flHeight = 0x34; + constexpr std::ptrdiff_t m_flDepth = 0x38; + constexpr std::ptrdiff_t m_vUVStart = 0x3c; + constexpr std::ptrdiff_t m_vUVEnd = 0x44; + constexpr std::ptrdiff_t m_pMaterial = 0x50; + constexpr std::ptrdiff_t m_nRenderOrder = 0x58; + constexpr std::ptrdiff_t m_vTintColor = 0x5c; + constexpr std::ptrdiff_t m_nSequenceOverride = 0x6c; +} + +namespace BakedLightingInfo_t { + constexpr std::ptrdiff_t m_nLightmapVersionNumber = 0x0; + constexpr std::ptrdiff_t m_nLightmapGameVersionNumber = 0x4; + constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; + constexpr std::ptrdiff_t m_bHasLightmaps = 0x10; + constexpr std::ptrdiff_t m_lightMaps = 0x18; +} + +namespace WorldNodeOnDiskBufferData_t { + constexpr std::ptrdiff_t m_nElementCount = 0x0; + constexpr std::ptrdiff_t m_nElementSizeInBytes = 0x4; + constexpr std::ptrdiff_t m_inputLayoutFields = 0x8; + constexpr std::ptrdiff_t m_pData = 0x20; +} + +namespace AggregateMeshInfo_t { + constexpr std::ptrdiff_t m_nVisClusterMemberOffset = 0x0; + constexpr std::ptrdiff_t m_nVisClusterMemberCount = 0x4; + constexpr std::ptrdiff_t m_bHasTransform = 0x5; + constexpr std::ptrdiff_t m_nDrawCallIndex = 0x6; + constexpr std::ptrdiff_t m_nLODSetupIndex = 0x8; + constexpr std::ptrdiff_t m_nLODGroupMask = 0xa; + constexpr std::ptrdiff_t m_vTintColor = 0xb; + constexpr std::ptrdiff_t m_objectFlags = 0x10; + constexpr std::ptrdiff_t m_nLightProbeVolumePrecomputedHandshake = 0x14; +} + +namespace AggregateLODSetup_t { + constexpr std::ptrdiff_t m_vLODOrigin = 0x0; + constexpr std::ptrdiff_t m_fMaxObjectScale = 0xc; + constexpr std::ptrdiff_t m_nLODMask = 0x10; + constexpr std::ptrdiff_t m_fSwitchDistances = 0x18; +} + +namespace AggregateSceneObject_t { + constexpr std::ptrdiff_t m_allFlags = 0x0; + constexpr std::ptrdiff_t m_anyFlags = 0x4; + constexpr std::ptrdiff_t m_nLayer = 0x8; + constexpr std::ptrdiff_t m_aggregateMeshes = 0x10; + constexpr std::ptrdiff_t m_lodSetups = 0x28; + constexpr std::ptrdiff_t m_visClusterMembership = 0x40; + constexpr std::ptrdiff_t m_fragmentTransforms = 0x58; + constexpr std::ptrdiff_t m_renderableModel = 0x70; +} + +namespace ClutterTile_t { + constexpr std::ptrdiff_t m_nFirstInstance = 0x0; + constexpr std::ptrdiff_t m_nLastInstance = 0x4; + constexpr std::ptrdiff_t m_BoundsWs = 0x8; +} + +namespace ClutterSceneObject_t { + constexpr std::ptrdiff_t m_Bounds = 0x0; + constexpr std::ptrdiff_t m_flags = 0x18; + constexpr std::ptrdiff_t m_nLayer = 0x1c; + constexpr std::ptrdiff_t m_instancePositions = 0x20; + constexpr std::ptrdiff_t m_instanceScales = 0x50; + constexpr std::ptrdiff_t m_instanceTintSrgb = 0x68; + constexpr std::ptrdiff_t m_tiles = 0x80; + constexpr std::ptrdiff_t m_renderableModel = 0x98; +} + +namespace WorldNode_t { + constexpr std::ptrdiff_t m_sceneObjects = 0x0; + constexpr std::ptrdiff_t m_infoOverlays = 0x18; + constexpr std::ptrdiff_t m_visClusterMembership = 0x30; + constexpr std::ptrdiff_t m_aggregateSceneObjects = 0x48; + constexpr std::ptrdiff_t m_clutterSceneObjects = 0x60; + constexpr std::ptrdiff_t m_extraVertexStreamOverrides = 0x78; + constexpr std::ptrdiff_t m_materialOverrides = 0x90; + constexpr std::ptrdiff_t m_extraVertexStreams = 0xa8; + constexpr std::ptrdiff_t m_layerNames = 0xc0; + constexpr std::ptrdiff_t m_sceneObjectLayerIndices = 0xd8; + constexpr std::ptrdiff_t m_overlayLayerIndices = 0xf0; + constexpr std::ptrdiff_t m_grassFileName = 0x108; + constexpr std::ptrdiff_t m_nodeLightingInfo = 0x110; +} + +namespace WorldBuilderParams_t { + constexpr std::ptrdiff_t m_flMinDrawVolumeSize = 0x0; + constexpr std::ptrdiff_t m_bBuildBakedLighting = 0x4; + constexpr std::ptrdiff_t m_vLightmapUvScale = 0x8; + constexpr std::ptrdiff_t m_nCompileTimestamp = 0x10; + constexpr std::ptrdiff_t m_nCompileFingerprint = 0x18; +} + +namespace NodeData_t { + constexpr std::ptrdiff_t m_nParent = 0x0; + constexpr std::ptrdiff_t m_vOrigin = 0x4; + constexpr std::ptrdiff_t m_vMinBounds = 0x10; + constexpr std::ptrdiff_t m_vMaxBounds = 0x1c; + constexpr std::ptrdiff_t m_flMinimumDistance = 0x28; + constexpr std::ptrdiff_t m_ChildNodeIndices = 0x30; + constexpr std::ptrdiff_t m_worldNodePrefix = 0x48; +} + +namespace World_t { + constexpr std::ptrdiff_t m_builderParams = 0x0; + constexpr std::ptrdiff_t m_worldNodes = 0x20; + constexpr std::ptrdiff_t m_worldLightingInfo = 0x38; + constexpr std::ptrdiff_t m_entityLumps = 0x68; +} + +namespace VoxelVisBlockOffset_t { + constexpr std::ptrdiff_t m_nOffset = 0x0; + constexpr std::ptrdiff_t m_nElementCount = 0x4; +} + +namespace CVoxelVisibility { + constexpr std::ptrdiff_t m_nBaseClusterCount = 0x40; + constexpr std::ptrdiff_t m_nPVSBytesPerCluster = 0x44; + constexpr std::ptrdiff_t m_vMinBounds = 0x48; + constexpr std::ptrdiff_t m_vMaxBounds = 0x54; + constexpr std::ptrdiff_t m_flGridSize = 0x60; + constexpr std::ptrdiff_t m_nSkyVisibilityCluster = 0x64; + constexpr std::ptrdiff_t m_nSunVisibilityCluster = 0x68; + constexpr std::ptrdiff_t m_NodeBlock = 0x6c; + constexpr std::ptrdiff_t m_RegionBlock = 0x74; + constexpr std::ptrdiff_t m_EnclosedClusterListBlock = 0x7c; + constexpr std::ptrdiff_t m_EnclosedClustersBlock = 0x84; + constexpr std::ptrdiff_t m_MasksBlock = 0x8c; + constexpr std::ptrdiff_t m_nVisBlocks = 0x94; +} + +namespace VMapResourceData_t { +} + +namespace InfoForResourceTypeVMapResourceData_t { +} + +namespace CEntityIdentity { + constexpr std::ptrdiff_t m_nameStringableIndex = 0x14; + constexpr std::ptrdiff_t m_name = 0x18; + constexpr std::ptrdiff_t m_designerName = 0x20; + constexpr std::ptrdiff_t m_flags = 0x30; + constexpr std::ptrdiff_t m_worldGroupId = 0x38; + constexpr std::ptrdiff_t m_fDataObjectTypes = 0x3c; + constexpr std::ptrdiff_t m_PathIndex = 0x40; + constexpr std::ptrdiff_t m_pPrev = 0x58; + constexpr std::ptrdiff_t m_pNext = 0x60; + constexpr std::ptrdiff_t m_pPrevByClass = 0x68; + constexpr std::ptrdiff_t m_pNextByClass = 0x70; +} + +namespace CEntityInstance { + constexpr std::ptrdiff_t m_iszPrivateVScripts = 0x8; + constexpr std::ptrdiff_t m_pEntity = 0x10; + constexpr std::ptrdiff_t m_CScriptComponent = 0x28; +} + +namespace CScriptComponent { + constexpr std::ptrdiff_t m_scriptClassName = 0x30; +} + diff --git a/generated/worldrenderer.dll.json b/generated/worldrenderer.dll.json new file mode 100644 index 0000000..47707d4 --- /dev/null +++ b/generated/worldrenderer.dll.json @@ -0,0 +1,196 @@ +{ + "AggregateLODSetup_t": { + "m_fMaxObjectScale": 12, + "m_fSwitchDistances": 24, + "m_nLODMask": 16, + "m_vLODOrigin": 0 + }, + "AggregateMeshInfo_t": { + "m_bHasTransform": 5, + "m_nDrawCallIndex": 6, + "m_nLODGroupMask": 10, + "m_nLODSetupIndex": 8, + "m_nLightProbeVolumePrecomputedHandshake": 20, + "m_nVisClusterMemberCount": 4, + "m_nVisClusterMemberOffset": 0, + "m_objectFlags": 16, + "m_vTintColor": 11 + }, + "AggregateSceneObject_t": { + "m_aggregateMeshes": 16, + "m_allFlags": 0, + "m_anyFlags": 4, + "m_fragmentTransforms": 88, + "m_lodSetups": 40, + "m_nLayer": 8, + "m_renderableModel": 112, + "m_visClusterMembership": 64 + }, + "BakedLightingInfo_t": { + "m_bHasLightmaps": 16, + "m_lightMaps": 24, + "m_nLightmapGameVersionNumber": 4, + "m_nLightmapVersionNumber": 0, + "m_vLightmapUvScale": 8 + }, + "BaseSceneObjectOverride_t": { + "m_nSceneObjectIndex": 0 + }, + "CEntityIdentity": { + "m_PathIndex": 64, + "m_designerName": 32, + "m_fDataObjectTypes": 60, + "m_flags": 48, + "m_name": 24, + "m_nameStringableIndex": 20, + "m_pNext": 96, + "m_pNextByClass": 112, + "m_pPrev": 88, + "m_pPrevByClass": 104, + "m_worldGroupId": 56 + }, + "CEntityInstance": { + "m_CScriptComponent": 40, + "m_iszPrivateVScripts": 8, + "m_pEntity": 16 + }, + "CScriptComponent": { + "m_scriptClassName": 48 + }, + "CVoxelVisibility": { + "m_EnclosedClusterListBlock": 124, + "m_EnclosedClustersBlock": 132, + "m_MasksBlock": 140, + "m_NodeBlock": 108, + "m_RegionBlock": 116, + "m_flGridSize": 96, + "m_nBaseClusterCount": 64, + "m_nPVSBytesPerCluster": 68, + "m_nSkyVisibilityCluster": 100, + "m_nSunVisibilityCluster": 104, + "m_nVisBlocks": 148, + "m_vMaxBounds": 84, + "m_vMinBounds": 72 + }, + "ClutterSceneObject_t": { + "m_Bounds": 0, + "m_flags": 24, + "m_instancePositions": 32, + "m_instanceScales": 80, + "m_instanceTintSrgb": 104, + "m_nLayer": 28, + "m_renderableModel": 152, + "m_tiles": 128 + }, + "ClutterTile_t": { + "m_BoundsWs": 8, + "m_nFirstInstance": 0, + "m_nLastInstance": 4 + }, + "EntityIOConnectionData_t": { + "m_flDelay": 40, + "m_inputName": 24, + "m_nTimesToFire": 44, + "m_outputName": 0, + "m_overrideParam": 32, + "m_targetName": 16, + "m_targetType": 8 + }, + "EntityKeyValueData_t": { + "m_connections": 8, + "m_keyValuesData": 32 + }, + "ExtraVertexStreamOverride_t": { + "m_extraBufferBinding": 16, + "m_nAdditionalMeshDrawPrimitiveFlags": 12, + "m_nDrawCallIndex": 8, + "m_nSubSceneObject": 4 + }, + "InfoOverlayData_t": { + "m_flDepth": 56, + "m_flHeight": 52, + "m_flWidth": 48, + "m_nRenderOrder": 88, + "m_nSequenceOverride": 108, + "m_pMaterial": 80, + "m_transform": 0, + "m_vTintColor": 92, + "m_vUVEnd": 68, + "m_vUVStart": 60 + }, + "MaterialOverride_t": { + "m_nDrawCallIndex": 8, + "m_nSubSceneObject": 4, + "m_pMaterial": 16 + }, + "NodeData_t": { + "m_ChildNodeIndices": 48, + "m_flMinimumDistance": 40, + "m_nParent": 0, + "m_vMaxBounds": 28, + "m_vMinBounds": 16, + "m_vOrigin": 4, + "m_worldNodePrefix": 72 + }, + "PermEntityLumpData_t": { + "m_childLumps": 24, + "m_entityKeyValues": 48, + "m_hammerUniqueId": 16, + "m_name": 8 + }, + "SceneObject_t": { + "m_flFadeEndDistance": 56, + "m_flFadeStartDistance": 52, + "m_nCubeMapPrecomputedHandshake": 112, + "m_nLODOverride": 110, + "m_nLightGroup": 104, + "m_nLightProbeVolumePrecomputedHandshake": 116, + "m_nObjectID": 0, + "m_nObjectTypeFlags": 88, + "m_nOverlayRenderOrder": 108, + "m_renderable": 136, + "m_renderableModel": 128, + "m_skin": 80, + "m_vLightingOrigin": 92, + "m_vTintColor": 60, + "m_vTransform": 4 + }, + "VoxelVisBlockOffset_t": { + "m_nElementCount": 4, + "m_nOffset": 0 + }, + "WorldBuilderParams_t": { + "m_bBuildBakedLighting": 4, + "m_flMinDrawVolumeSize": 0, + "m_nCompileFingerprint": 24, + "m_nCompileTimestamp": 16, + "m_vLightmapUvScale": 8 + }, + "WorldNodeOnDiskBufferData_t": { + "m_inputLayoutFields": 8, + "m_nElementCount": 0, + "m_nElementSizeInBytes": 4, + "m_pData": 32 + }, + "WorldNode_t": { + "m_aggregateSceneObjects": 72, + "m_clutterSceneObjects": 96, + "m_extraVertexStreamOverrides": 120, + "m_extraVertexStreams": 168, + "m_grassFileName": 264, + "m_infoOverlays": 24, + "m_layerNames": 192, + "m_materialOverrides": 144, + "m_nodeLightingInfo": 272, + "m_overlayLayerIndices": 240, + "m_sceneObjectLayerIndices": 216, + "m_sceneObjects": 0, + "m_visClusterMembership": 48 + }, + "World_t": { + "m_builderParams": 0, + "m_entityLumps": 104, + "m_worldLightingInfo": 56, + "m_worldNodes": 32 + } +} \ No newline at end of file diff --git a/include/base/safe_handle.hpp b/include/base/safe_handle.hpp new file mode 100644 index 0000000..6c7a802 --- /dev/null +++ b/include/base/safe_handle.hpp @@ -0,0 +1,22 @@ +#pragma once + +#define _AMD64_ + +#include + +#include + +namespace base { + namespace detail { + struct HandleDisposer { + using pointer = HANDLE; + + void operator()(const HANDLE handle) const noexcept { + if (handle != nullptr && handle != INVALID_HANDLE_VALUE) + CloseHandle(handle); + } + }; + } + + using SafeHandle = std::unique_ptr; +} diff --git a/include/process.hpp b/include/process.hpp new file mode 100644 index 0000000..27de954 --- /dev/null +++ b/include/process.hpp @@ -0,0 +1,35 @@ +#pragma once + +#include +#include +#include + +namespace process { + bool attach(std::string_view process_name); + + [[nodiscard]] std::optional find_pattern(std::string_view module_name, std::string_view pattern) noexcept; + + [[nodiscard]] std::optional get_module_base(std::string_view module_name) noexcept; + + [[nodiscard]] std::optional resolve_rip_relative_address(std::uintptr_t address) noexcept; + + bool read_memory(std::uintptr_t address, void* buffer, std::size_t size) noexcept; + + bool write_memory(std::uintptr_t address, const void* buffer, std::size_t size) noexcept; + + std::string read_string(std::uintptr_t address, std::size_t length) noexcept; + + template + T read_memory(const std::uintptr_t address) noexcept { + T buffer = {}; + + read_memory(address, &buffer, sizeof(T)); + + return buffer; + } + + template + bool write_memory(const std::uintptr_t address, const T& buffer) noexcept { + return write_memory(address, &buffer, sizeof(T)); + } +} diff --git a/include/sdk/c_schema_class_field_data.hpp b/include/sdk/c_schema_class_field_data.hpp new file mode 100644 index 0000000..fb3b1e1 --- /dev/null +++ b/include/sdk/c_schema_class_field_data.hpp @@ -0,0 +1,10 @@ +#pragma once + +namespace sdk { + class SchemaClassFieldData_t { + public: + [[nodiscard]] std::string get_name() const noexcept; + + [[nodiscard]] std::uint16_t get_offset() const noexcept; + }; +} diff --git a/include/sdk/c_schema_class_info.hpp b/include/sdk/c_schema_class_info.hpp new file mode 100644 index 0000000..6e59025 --- /dev/null +++ b/include/sdk/c_schema_class_info.hpp @@ -0,0 +1,12 @@ +#pragma once + +namespace sdk { + class SchemaClassFieldData_t; + + class CSchemaClassInfo { + public: + [[nodiscard]] std::uint16_t get_fields_count() const noexcept; + + [[nodiscard]] std::vector get_fields() const noexcept; + }; +} diff --git a/include/sdk/c_schema_system.hpp b/include/sdk/c_schema_system.hpp new file mode 100644 index 0000000..7eb181c --- /dev/null +++ b/include/sdk/c_schema_system.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include + +namespace sdk { + class CSchemaSystemTypeScope; + + class CSchemaSystem { + public: + static CSchemaSystem* get() noexcept; + + [[nodiscard]] std::vector get_type_scopes() const noexcept; + }; +} diff --git a/include/sdk/c_schema_system_type_scope.hpp b/include/sdk/c_schema_system_type_scope.hpp new file mode 100644 index 0000000..9e0fc83 --- /dev/null +++ b/include/sdk/c_schema_system_type_scope.hpp @@ -0,0 +1,15 @@ +#pragma once + +namespace sdk { + class CSchemaClassInfo; + class CSchemaType_DeclaredClass; + + class CSchemaSystemTypeScope { + public: + [[nodiscard]] CSchemaClassInfo* find_declared_class(std::string_view class_name) const noexcept; + + [[nodiscard]] std::vector get_declared_classes() const noexcept; + + [[nodiscard]] std::string get_module_name() const noexcept; + }; +} diff --git a/include/sdk/c_schema_type_declared_class.hpp b/include/sdk/c_schema_type_declared_class.hpp new file mode 100644 index 0000000..9668799 --- /dev/null +++ b/include/sdk/c_schema_type_declared_class.hpp @@ -0,0 +1,8 @@ +#pragma once + +namespace sdk { + class CSchemaType_DeclaredClass { + public: + [[nodiscard]] std::string get_class_name() const noexcept; + }; +} diff --git a/include/sdk/sdk.hpp b/include/sdk/sdk.hpp new file mode 100644 index 0000000..34e257c --- /dev/null +++ b/include/sdk/sdk.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include +#include + +#include "process.hpp" + +#include "c_schema_class_field_data.hpp" +#include "c_schema_class_info.hpp" +#include "c_schema_system.hpp" +#include "c_schema_system_type_scope.hpp" +#include "c_schema_type_declared_class.hpp" diff --git a/include/utility/murmur_hash.hpp b/include/utility/murmur_hash.hpp new file mode 100644 index 0000000..82d02bb --- /dev/null +++ b/include/utility/murmur_hash.hpp @@ -0,0 +1,7 @@ +#pragma once + +#include + +namespace utility { + std::uint32_t murmur_hash2(const void* key, std::uint32_t length, std::uint32_t seed); +} diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..170b1dd --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,108 @@ +#include "sdk/sdk.hpp" + +#include + +#include + +#include +#include + +void generate_header_for_type_scope(const sdk::CSchemaSystemTypeScope* type_scope) { + if (type_scope == nullptr) + return; + + const std::string output_file_name = std::format("generated/{}.hpp", type_scope->get_module_name()); + + std::fstream output(output_file_name, std::ios::out); + + output << "#pragma once\n\n#include \n\n"; + + for (const sdk::CSchemaType_DeclaredClass* declared_class : type_scope->get_declared_classes()) { + if (declared_class == nullptr) + continue; + + const sdk::CSchemaClassInfo* class_info = type_scope->find_declared_class(declared_class->get_class_name()); + + if (class_info == nullptr) + continue; + + output << "namespace " << declared_class->get_class_name() << " {\n"; + + for (const sdk::SchemaClassFieldData_t* field : class_info->get_fields()) { + if (field == nullptr) + continue; + + output << " constexpr std::ptrdiff_t " << field->get_name() << " = 0x" << std::hex << field->get_offset() << ";\n"; + } + + output << "}\n\n"; + + spdlog::info(" > generated header file for {}", declared_class->get_class_name().c_str()); + } +} + +void generate_json_for_type_scope(const sdk::CSchemaSystemTypeScope* type_scope) { + if (type_scope == nullptr) + return; + + const std::string output_file_name = std::format("generated/{}.json", type_scope->get_module_name()); + + std::fstream output(output_file_name, std::ios::out); + + nlohmann::json json; + + for (const sdk::CSchemaType_DeclaredClass* declared_class : type_scope->get_declared_classes()) { + if (declared_class == nullptr) + continue; + + const sdk::CSchemaClassInfo* class_info = type_scope->find_declared_class(declared_class->get_class_name()); + + if (class_info == nullptr) + continue; + + for (const sdk::SchemaClassFieldData_t* field : class_info->get_fields()) { + if (field == nullptr) + continue; + + json[declared_class->get_class_name()][field->get_name()] = field->get_offset(); + } + + spdlog::info(" > generated json file for {}", declared_class->get_class_name().c_str()); + } + + output << json.dump(4); +} + +int main() { + if (!std::filesystem::exists("generated")) + std::filesystem::create_directory("generated"); + + if (!process::attach("cs2.exe")) { + spdlog::error("failed to attach to process."); + + return 1; + } + + spdlog::info("attached to process!"); + + const auto schema_system = sdk::CSchemaSystem::get(); + + if (schema_system == nullptr) { + spdlog::error("failed to get schema system."); + + return 1; + } + + spdlog::info("schema system: {:#x}", reinterpret_cast(schema_system)); + + for (const sdk::CSchemaSystemTypeScope* type_scope : schema_system->get_type_scopes()) { + spdlog::info("generating files for {}...", type_scope->get_module_name().c_str()); + + generate_header_for_type_scope(type_scope); + generate_json_for_type_scope(type_scope); + } + + spdlog::info("done!"); + + return 0; +} diff --git a/src/process.cpp b/src/process.cpp new file mode 100644 index 0000000..a3328d9 --- /dev/null +++ b/src/process.cpp @@ -0,0 +1,164 @@ +#include "process.hpp" +#include "base/safe_handle.hpp" + +#include +#include +#include + +#include +#include + +namespace process { + std::uint32_t process_id = 0; + + base::SafeHandle process_handle; + + namespace detail { + std::optional get_process_id_by_name(const std::string_view process_name) noexcept { + const base::SafeHandle snapshot(CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0)); + + if (snapshot.get() == INVALID_HANDLE_VALUE) + return std::nullopt; + + PROCESSENTRY32 process_entry = {}; + + process_entry.dwSize = sizeof(PROCESSENTRY32); + + for (Process32First(snapshot.get(), &process_entry); Process32Next(snapshot.get(), &process_entry);) { + if (std::string_view(process_entry.szExeFile) == process_name) + return process_entry.th32ProcessID; + } + + return std::nullopt; + } + } + + bool attach(const std::string_view process_name) { + process_id = detail::get_process_id_by_name(process_name).value_or(0); + + if (process_id == 0) + return false; + + process_handle = base::SafeHandle(OpenProcess(PROCESS_ALL_ACCESS, 0, process_id)); + + return process_handle.get() != nullptr; + } + + std::optional find_pattern(const std::string_view module_name, const std::string_view pattern) noexcept { + constexpr auto pattern_to_bytes = [](const std::string_view pattern) -> std::vector { + std::vector bytes; + + for (std::size_t i = 0; i < pattern.size(); ++i) { + if (pattern[i] == ' ') + continue; + + if (pattern[i] == '?') { + bytes.push_back(-1); + + continue; + } + + if (i + 1 < pattern.size()) { + std::int32_t value = 0; + + if (const auto [ptr, ec] = std::from_chars(pattern.data() + i, pattern.data() + i + 2, value, 16); ec == std::errc()) + bytes.push_back(value); + + ++i; + } + } + + return bytes; + }; + + const std::optional module_base = get_module_base(module_name); + + if (!module_base.has_value()) + return std::nullopt; + + const auto headers = std::make_unique(0x1000); + + if (!read_memory(module_base.value(), headers.get(), 0x1000)) + return std::nullopt; + + const auto dos_header = reinterpret_cast(headers.get()); + + if (dos_header->e_magic != IMAGE_DOS_SIGNATURE) + return std::nullopt; + + const auto nt_headers = reinterpret_cast(headers.get() + dos_header->e_lfanew); + + if (nt_headers->Signature != IMAGE_NT_SIGNATURE) + return std::nullopt; + + const std::uint32_t module_size = nt_headers->OptionalHeader.SizeOfImage; + + const auto module_data = std::make_unique(module_size); + + if (!read_memory(module_base.value(), module_data.get(), module_size)) + return std::nullopt; + + const std::vector pattern_bytes = pattern_to_bytes(pattern); + + for (std::size_t i = 0; i < module_size - pattern.size(); ++i) { + bool found = true; + + for (std::size_t j = 0; j < pattern_bytes.size(); ++j) { + if (module_data[i + j] != pattern_bytes[j] && pattern_bytes[j] != -1) { + found = false; + + break; + } + } + + if (found) + return module_base.value() + i; + } + + return std::nullopt; + } + + std::optional get_module_base(const std::string_view module_name) noexcept { + const base::SafeHandle snapshot(CreateToolhelp32Snapshot(TH32CS_SNAPMODULE | TH32CS_SNAPMODULE32, process_id)); + + if (snapshot.get() == INVALID_HANDLE_VALUE) + return std::nullopt; + + MODULEENTRY32 module_entry = {}; + + module_entry.dwSize = sizeof(MODULEENTRY32); + + for (Module32First(snapshot.get(), &module_entry); Module32Next(snapshot.get(), &module_entry);) { + if (_stricmp(module_entry.szModule, module_name.data()) == 0) + return reinterpret_cast(module_entry.modBaseAddr); + } + + return std::nullopt; + } + + std::optional resolve_rip_relative_address(const std::uintptr_t address) noexcept { + const auto displacement = read_memory(address + 0x3); + + return address + displacement + 0x7; + } + + bool read_memory(const std::uintptr_t address, void* buffer, const std::size_t size) noexcept { + return ReadProcessMemory(process_handle.get(), reinterpret_cast(address), buffer, size, nullptr); + } + + bool write_memory(const std::uintptr_t address, const void* buffer, const std::size_t size) noexcept { + return WriteProcessMemory(process_handle.get(), reinterpret_cast(address), buffer, size, nullptr); + } + + std::string read_string(const std::uintptr_t address, const std::size_t length) noexcept { + std::vector buffer(length); + + if (!read_memory(address, buffer.data(), length)) + return {}; + + if (const auto it = std::ranges::find(buffer, '\0'); it != buffer.end()) + buffer.resize(std::distance(buffer.begin(), it)); + + return { buffer.begin(), buffer.end() }; + } +} diff --git a/src/sdk/c_schema_class_field_data.cpp b/src/sdk/c_schema_class_field_data.cpp new file mode 100644 index 0000000..fb36f3a --- /dev/null +++ b/src/sdk/c_schema_class_field_data.cpp @@ -0,0 +1,11 @@ +#include "sdk/sdk.hpp" + +namespace sdk { + std::string SchemaClassFieldData_t::get_name() const noexcept { + return process::read_string(process::read_memory(reinterpret_cast(this)), 64); + } + + std::uint16_t SchemaClassFieldData_t::get_offset() const noexcept { + return process::read_memory(reinterpret_cast(this) + 0x10); + } +} diff --git a/src/sdk/c_schema_class_info.cpp b/src/sdk/c_schema_class_info.cpp new file mode 100644 index 0000000..4b4fd27 --- /dev/null +++ b/src/sdk/c_schema_class_info.cpp @@ -0,0 +1,22 @@ +#include "sdk/sdk.hpp" + +namespace sdk { + std::uint16_t CSchemaClassInfo::get_fields_count() const noexcept { + return process::read_memory(reinterpret_cast(this) + 0x1C); + } + + std::vector CSchemaClassInfo::get_fields() const noexcept { + std::vector fields; + + for (std::size_t i = 0; i < get_fields_count(); ++i) { + const auto field = reinterpret_cast(process::read_memory(reinterpret_cast(this) + 0x28) + (i * 0x20)); + + if (field == nullptr) + continue; + + fields.push_back(field); + } + + return fields; + } +} diff --git a/src/sdk/c_schema_system.cpp b/src/sdk/c_schema_system.cpp new file mode 100644 index 0000000..5c861c8 --- /dev/null +++ b/src/sdk/c_schema_system.cpp @@ -0,0 +1,28 @@ +#include "sdk/c_schema_system.hpp" +#include "process.hpp" + +namespace sdk { + CSchemaSystem* CSchemaSystem::get() noexcept { + std::optional address = process::find_pattern("schemasystem.dll", "48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 83 EC 28"); + + if (!address.has_value()) + return nullptr; + + address = process::resolve_rip_relative_address(address.value()); + + if (!address.has_value()) + return nullptr; + + return reinterpret_cast(address.value()); + } + + std::vector CSchemaSystem::get_type_scopes() const noexcept { + std::vector type_scopes; + + type_scopes.resize(process::read_memory(reinterpret_cast(this) + 0x190)); + + process::read_memory(process::read_memory(reinterpret_cast(this) + 0x198), type_scopes.data(), type_scopes.size() * sizeof(std::uint64_t)); + + return type_scopes; + } +} diff --git a/src/sdk/c_schema_system_type_scope.cpp b/src/sdk/c_schema_system_type_scope.cpp new file mode 100644 index 0000000..814ed24 --- /dev/null +++ b/src/sdk/c_schema_system_type_scope.cpp @@ -0,0 +1,97 @@ +#include "sdk/sdk.hpp" +#include "utility/murmur_hash.hpp" + +namespace sdk { + CSchemaClassInfo* CSchemaSystemTypeScope::find_declared_class(const std::string_view class_name) const noexcept { + const std::uint32_t hash = utility::murmur_hash2(class_name.data(), class_name.length(), 0xBAADFEED); + + const std::int32_t hash_transform1 = static_cast(hash >> 0x10) - 0x2D6 + 0x21 * (0x21 * static_cast(hash) + static_cast(hash >> 0x8)); + const std::int32_t hash_transform2 = 0x21 * hash_transform1 + static_cast(hash >> 0x18); + + const auto hash_part = static_cast(static_cast(hash >> 0x18)); + + const std::int32_t hash_transform4 = (hash_transform2 ^ (hash_transform2 >> 0x10)) ^ (static_cast(hash_transform2 ^ (hash_part >> 0x10)) >> 0x8); + + const auto get_class_info = [&](const std::uint64_t address) -> CSchemaClassInfo* { + const std::uint64_t class_info_address = address + 0x558 + static_cast(0x28) * static_cast(hash_transform4); + + const auto initial_address = process::read_memory(class_info_address + 0x58); + + std::uint64_t class_address = initial_address; + + if (initial_address != 0) { + while (process::read_memory(class_address) != hash) { + class_address = process::read_memory(class_address + 0x8); + + if (class_address == 0) + break; + } + } + + if (class_address == 0) { + const auto secondary_address = process::read_memory(class_info_address + 0x60); + + std::uint64_t final_address = 0; + + if (secondary_address != 0 && secondary_address != initial_address) { + auto current_address = process::read_memory(class_info_address + 0x60); + + const auto starting_address = process::read_memory(class_info_address + 0x58); + + if (current_address != starting_address) { + while (process::read_memory(current_address) != hash) { + current_address = process::read_memory(current_address + 0x8); + + if (current_address == starting_address) + break; + } + + final_address = current_address; + } + } + + class_address = final_address; + } + + return reinterpret_cast(class_address); + }; + + const CSchemaClassInfo* class_info = get_class_info(reinterpret_cast(this)); + + if (class_info != nullptr) + return reinterpret_cast(process::read_memory(reinterpret_cast(class_info) + 0x10)); + + const auto secondary_class_info = process::read_memory(reinterpret_cast(this) + 0x108); + + return secondary_class_info != 0 ? reinterpret_cast(process::read_memory(reinterpret_cast(get_class_info(secondary_class_info)) + 0x10)) : nullptr; + } + + std::vector CSchemaSystemTypeScope::get_declared_classes() const noexcept { + std::vector classes; + + const std::uint64_t base = reinterpret_cast(this) + 0x558; + + const auto block_size = process::read_memory(base + 0x4); + const auto count = process::read_memory(base + 0x10); + const auto unallocated_data = process::read_memory(base + 0x18 + 0x18); + + std::int32_t index = 0; + + for (std::uint64_t element = unallocated_data; element; element = process::read_memory(element)) { + for (std::int32_t i = 0; i < block_size && i != count; ++i) { + classes.push_back(reinterpret_cast(process::read_memory(element + 0x20 + (i * 0x18)))); + + ++index; + + if (index >= count) + break; + } + } + + return classes; + } + + std::string CSchemaSystemTypeScope::get_module_name() const noexcept { + return process::read_string(reinterpret_cast(this) + 0x8, 256); + } +} diff --git a/src/sdk/c_schema_type_declared_class.cpp b/src/sdk/c_schema_type_declared_class.cpp new file mode 100644 index 0000000..df75711 --- /dev/null +++ b/src/sdk/c_schema_type_declared_class.cpp @@ -0,0 +1,7 @@ +#include "sdk/sdk.hpp" + +namespace sdk { + std::string CSchemaType_DeclaredClass::get_class_name() const noexcept { + return process::read_string(process::read_memory(reinterpret_cast(this) + 0x8), 64); + } +} diff --git a/src/utility/murmur_hash.cpp b/src/utility/murmur_hash.cpp new file mode 100644 index 0000000..15ba599 --- /dev/null +++ b/src/utility/murmur_hash.cpp @@ -0,0 +1,53 @@ +#include "utility/murmur_hash.hpp" + +namespace utility { + std::uint32_t murmur_hash2(const void* key, std::uint32_t length, const std::uint32_t seed) { + constexpr auto get_block = [](const std::uint32_t* ptr) -> std::uint32_t { + const auto bytes = reinterpret_cast(ptr); + + return static_cast(bytes[0]) | static_cast(bytes[1]) << 0x8 | static_cast(bytes[2]) << 0x10 | static_cast(bytes[3]) << 0x18; + }; + + constexpr std::uint32_t HASH_CONSTANT = 0x5BD1E995; + + std::uint32_t hash = seed ^ length; + + auto data = static_cast(key); + + while (length >= 4) { + std::uint32_t block = get_block(reinterpret_cast(data)); + + block *= HASH_CONSTANT; + block ^= block >> 0x18; + block *= HASH_CONSTANT; + + hash *= HASH_CONSTANT; + hash ^= block; + + data += 0x4; + length -= 0x4; + } + + switch (length) { + case 3: + hash ^= data[2] << 0x10; + + case 2: + hash ^= data[1] << 0x8; + + case 1: { + hash ^= data[0]; + hash *= HASH_CONSTANT; + } + + default: + break; + } + + hash ^= hash >> 0xD; + hash *= HASH_CONSTANT; + hash ^= hash >> 0xF; + + return hash; + } +} diff --git a/vendor/CMakeLists.txt b/vendor/CMakeLists.txt new file mode 100644 index 0000000..c0bad9c --- /dev/null +++ b/vendor/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.26) + +add_subdirectory(nlohmann_json) +add_subdirectory(spdlog) diff --git a/vendor/nlohmann_json b/vendor/nlohmann_json new file mode 160000 index 0000000..836b7be --- /dev/null +++ b/vendor/nlohmann_json @@ -0,0 +1 @@ +Subproject commit 836b7beca4b62e2a99465edef44066b7401fd704 diff --git a/vendor/spdlog b/vendor/spdlog new file mode 160000 index 0000000..3aceda0 --- /dev/null +++ b/vendor/spdlog @@ -0,0 +1 @@ +Subproject commit 3aceda041b2bfbccaf14d5c83eda16fc67bea364