mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-17 16:39:58 +08:00
Improve schema parsing
This commit is contained in:
@@ -1,46 +1,135 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-04-04 13:40:42.514657500 UTC
|
||||
// 2024-04-05 17:13:47.447480800 UTC
|
||||
|
||||
namespace CS2Dumper.Schemas {
|
||||
// Module: pulse_system.dll
|
||||
// Classes count: 49
|
||||
// Enums count: 0
|
||||
// Classes count: 28
|
||||
// Enums count: 7
|
||||
public static class PulseSystemDll {
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseLibraryBindings
|
||||
// MPropertyDescription
|
||||
public static class CPulseCursorFuncs {
|
||||
// Alignment: 4
|
||||
// Members count: 3
|
||||
public enum PulseTestEnumShape_t : uint {
|
||||
CIRCLE = 0x64,
|
||||
SQUARE = 0xC8,
|
||||
TRIANGLE = 0x12C
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseLibraryBindings
|
||||
// MPropertyDescription
|
||||
public static class CPulseTestFuncs_LibraryA {
|
||||
// Alignment: 4
|
||||
// Members count: 2
|
||||
public enum PulseMethodCallMode_t : uint {
|
||||
SYNC_WAIT_FOR_COMPLETION = 0x0,
|
||||
ASYNC_FIRE_AND_FORGET = 0x1
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseProvideFeatureTag
|
||||
// MPulseLibraryBindings
|
||||
public static class FakeEntity_tAPI {
|
||||
// Alignment: 4
|
||||
// Members count: 3
|
||||
public enum PulseCursorExecResult_t : uint {
|
||||
Succeeded = 0x0,
|
||||
Canceled = 0x1,
|
||||
Failed = 0x2
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_RegisterInfo {
|
||||
public const nint m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
||||
public const nint m_Type = 0x8; // CPulseValueFullType
|
||||
public const nint m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
||||
public const nint m_nWrittenByInstruction = 0x50; // int32
|
||||
public const nint m_nLastReadByInstruction = 0x54; // int32
|
||||
// Alignment: 4
|
||||
// Members count: 19
|
||||
public enum PulseValueType_t : uint {
|
||||
PVAL_INVALID = 0xFFFFFFFFFFFFFFFF,
|
||||
PVAL_BOOL = 0x0,
|
||||
PVAL_INT = 0x1,
|
||||
PVAL_FLOAT = 0x2,
|
||||
PVAL_STRING = 0x3,
|
||||
PVAL_VEC3 = 0x4,
|
||||
PVAL_TRANSFORM = 0x5,
|
||||
PVAL_COLOR_RGB = 0x6,
|
||||
PVAL_EHANDLE = 0x7,
|
||||
PVAL_RESOURCE = 0x8,
|
||||
PVAL_SNDEVT_GUID = 0x9,
|
||||
PVAL_ENTITY_NAME = 0xA,
|
||||
PVAL_SCHEMA_PTR = 0xB,
|
||||
PVAL_TYPESAFE_INT = 0xC,
|
||||
PVAL_CURSOR_FLOW = 0xD,
|
||||
PVAL_ANY = 0xE,
|
||||
PVAL_SCHEMA_ENUM = 0xF,
|
||||
PVAL_PANORAMA_PANEL_HANDLE = 0x10,
|
||||
PVAL_COUNT = 0x11
|
||||
}
|
||||
// Alignment: 2
|
||||
// Members count: 61
|
||||
public enum PulseInstructionCode_t : ushort {
|
||||
INVALID = 0x0,
|
||||
IMMEDIATE_HALT = 0x1,
|
||||
RETURN_VOID = 0x2,
|
||||
RETURN_VALUE = 0x3,
|
||||
NOP = 0x4,
|
||||
JUMP = 0x5,
|
||||
JUMP_COND = 0x6,
|
||||
CHUNK_LEAP = 0x7,
|
||||
CHUNK_LEAP_COND = 0x8,
|
||||
PULSE_CALL_SYNC = 0x9,
|
||||
PULSE_CALL_ASYNC_FIRE = 0xA,
|
||||
CELL_INVOKE = 0xB,
|
||||
LIBRARY_INVOKE = 0xC,
|
||||
SET_VAR = 0xD,
|
||||
GET_VAR = 0xE,
|
||||
GET_CONST = 0xF,
|
||||
SET_REGISTER_DOMAIN_VALUE = 0x10,
|
||||
COPY = 0x11,
|
||||
NOT = 0x12,
|
||||
NEGATE = 0x13,
|
||||
ADD = 0x14,
|
||||
SUB = 0x15,
|
||||
MUL = 0x16,
|
||||
DIV = 0x17,
|
||||
MOD = 0x18,
|
||||
LT = 0x19,
|
||||
LTE = 0x1A,
|
||||
EQ = 0x1B,
|
||||
NE = 0x1C,
|
||||
AND = 0x1D,
|
||||
OR = 0x1E,
|
||||
CONVERT_VALUE = 0x1F,
|
||||
LAST_SERIALIZED_CODE = 0x20,
|
||||
NEGATE_INT = 0x21,
|
||||
NEGATE_FLOAT = 0x22,
|
||||
ADD_INT = 0x23,
|
||||
ADD_FLOAT = 0x24,
|
||||
ADD_STRING = 0x25,
|
||||
SUB_INT = 0x26,
|
||||
SUB_FLOAT = 0x27,
|
||||
MUL_INT = 0x28,
|
||||
MUL_FLOAT = 0x29,
|
||||
DIV_INT = 0x2A,
|
||||
DIV_FLOAT = 0x2B,
|
||||
MOD_INT = 0x2C,
|
||||
MOD_FLOAT = 0x2D,
|
||||
LT_INT = 0x2E,
|
||||
LT_FLOAT = 0x2F,
|
||||
LTE_INT = 0x30,
|
||||
LTE_FLOAT = 0x31,
|
||||
EQ_BOOL = 0x32,
|
||||
EQ_INT = 0x33,
|
||||
EQ_FLOAT = 0x34,
|
||||
EQ_STRING = 0x35,
|
||||
EQ_ENTITY_NAME = 0x36,
|
||||
NE_BOOL = 0x37,
|
||||
NE_INT = 0x38,
|
||||
NE_FLOAT = 0x39,
|
||||
NE_STRING = 0x3A,
|
||||
NE_ENTITY_NAME = 0x3B,
|
||||
GET_CONST_INLINE_STORAGE = 0x3C
|
||||
}
|
||||
// Alignment: 4
|
||||
// Members count: 5
|
||||
public enum PulseTestEnumColor_t : uint {
|
||||
BLACK = 0x0,
|
||||
WHITE = 0x1,
|
||||
RED = 0x2,
|
||||
GREEN = 0x3,
|
||||
BLUE = 0x4
|
||||
}
|
||||
// Alignment: 4
|
||||
// Members count: 4
|
||||
public enum PulseCursorCancelPriority_t : uint {
|
||||
None = 0x0,
|
||||
CancelOnSucceeded = 0x1,
|
||||
SoftCancel = 0x2,
|
||||
HardCancel = 0x3
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
@@ -53,6 +142,129 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_InstructionEditorIDs = 0x20; // CUtlLeanVector<PulseDocNodeID_t>
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||
public const nint m_nNextIndex = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_WaitForCursorsWithTagBase {
|
||||
public const nint m_nCursorsAllowedToWait = 0x48; // int32
|
||||
public const nint m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Timeline__TimelineEvent_t {
|
||||
public const nint m_flTimeFromPrevious = 0x0; // float32
|
||||
public const nint m_bPauseForPreviousEvents = 0x4; // bool
|
||||
public const nint m_bCallModeSync = 0x5; // bool
|
||||
public const nint m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_OutflowConnection {
|
||||
public const nint m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_nInstruction = 0xC; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Base {
|
||||
public const nint m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_Inflow_Wait {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseRegisterMap_t {
|
||||
public const nint m_Inparams = 0x0; // KeyValues3
|
||||
public const nint m_Outparams = 0x10; // KeyValues3
|
||||
}
|
||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_CursorQueue {
|
||||
public const nint m_nCursorsAllowedToRunParallel = 0x60; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||
public const nint m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
||||
public const nint m_nNextShuffle = 0x20; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_PublicOutput {
|
||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_Description = 0x8; // CUtlString
|
||||
public const nint m_ParamType = 0x10; // CPulseValueFullType
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_OutputConnection {
|
||||
public const nint m_SourceOutput = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_TargetEntity = 0x8; // CUtlSymbolLarge
|
||||
public const nint m_TargetInput = 0x10; // CUtlSymbolLarge
|
||||
public const nint m_Param = 0x18; // CUtlSymbolLarge
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
public static class CPulseCell_TestWaitWithCursorState {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
public const nint m_WakeCancel = 0x58; // CPulse_ResumePoint
|
||||
public const nint m_WakeFail = 0x68; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 11
|
||||
//
|
||||
// Metadata:
|
||||
@@ -75,48 +287,6 @@ namespace CS2Dumper.Schemas {
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_Variable {
|
||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_Description = 0x8; // CUtlString
|
||||
public const nint m_Type = 0x10; // CPulseValueFullType
|
||||
public const nint m_DefaultValue = 0x20; // KeyValues3
|
||||
public const nint m_bIsPublic = 0x32; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_Constant {
|
||||
public const nint m_Type = 0x0; // CPulseValueFullType
|
||||
public const nint m_Value = 0x10; // KeyValues3
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_PublicOutput {
|
||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_Description = 0x8; // CUtlString
|
||||
public const nint m_ParamType = 0x10; // CPulseValueFullType
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_OutputConnection {
|
||||
public const nint m_SourceOutput = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_TargetEntity = 0x8; // CUtlSymbolLarge
|
||||
public const nint m_TargetInput = 0x10; // CUtlSymbolLarge
|
||||
public const nint m_Param = 0x18; // CUtlSymbolLarge
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_InvokeBinding {
|
||||
public const nint m_RegisterMap = 0x0; // PulseRegisterMap_t
|
||||
public const nint m_FuncName = 0x20; // CUtlSymbolLarge
|
||||
@@ -125,13 +295,52 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nSrcInstruction = 0x30; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_Variable {
|
||||
public const nint m_Name = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_Description = 0x8; // CUtlString
|
||||
public const nint m_Type = 0x10; // CPulseValueFullType
|
||||
public const nint m_DefaultValue = 0x20; // KeyValues3
|
||||
public const nint m_bIsPublic = 0x32; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseInstanceDomainInfo
|
||||
// MPulseLibraryBindings
|
||||
// MPulseDomainOptInFeatureTag
|
||||
public static class CPulseGraphInstance_TestDomain {
|
||||
public const nint m_bIsRunningUnitTests = 0xD8; // bool
|
||||
public const nint m_bExplicitTimeStepping = 0xD9; // bool
|
||||
public const nint m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
||||
public const nint m_nNextValidateIndex = 0xDC; // int32
|
||||
public const nint m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
||||
public const nint m_bTestYesOrNoPath = 0xF8; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class PulseRegisterMap_t {
|
||||
public const nint m_Inparams = 0x0; // KeyValues3
|
||||
public const nint m_Outparams = 0x10; // KeyValues3
|
||||
public static class CPulseCell_TestWaitWithCursorState__CursorState_t {
|
||||
public const nint flWaitValue = 0x0; // float32
|
||||
public const nint bFailOnCancel = 0x4; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPulseEditorHeaderText
|
||||
public static class CPulseCell_Step_TestDomainEntFire {
|
||||
public const nint m_Input = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 6
|
||||
@@ -147,6 +356,18 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_nSrcInstruction = 0x38; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 5
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_RegisterInfo {
|
||||
public const nint m_nReg = 0x0; // PulseRuntimeRegisterIndex_t
|
||||
public const nint m_Type = 0x8; // CPulseValueFullType
|
||||
public const nint m_OriginName = 0x18; // CKV3MemberNameWithStorage
|
||||
public const nint m_nWrittenByInstruction = 0x50; // int32
|
||||
public const nint m_nLastReadByInstruction = 0x54; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 10
|
||||
//
|
||||
// Metadata:
|
||||
@@ -164,325 +385,13 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_OutputConnections = 0xC0; // CUtlVector<CPulse_OutputConnection*>
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Base {
|
||||
public const nint m_nEditorNodeID = 0x8; // PulseDocNodeID_t
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseLibraryBindings
|
||||
// MPropertyDescription
|
||||
public static class CPulseMathlib {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseLibraryBindings
|
||||
// MPropertyDescription
|
||||
public static class CPulseTestScriptLib {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_OutflowConnection {
|
||||
public const nint m_SourceOutflowName = 0x0; // CUtlSymbolLarge
|
||||
public const nint m_nDestChunk = 0x8; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_nInstruction = 0xC; // int32
|
||||
}
|
||||
// Parent: CPulse_OutflowConnection
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulse_ResumePoint {
|
||||
}
|
||||
// Parent: CPulseCell_Base
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseFlow {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_BaseEntrypoint {
|
||||
public const nint m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_RegisterMap = 0x50; // PulseRegisterMap_t
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseRuntimeMethodArg {
|
||||
public const nint m_Name = 0x0; // CKV3MemberNameWithStorage
|
||||
public const nint m_Description = 0x38; // CUtlString
|
||||
public const nint m_Type = 0x40; // CPulseValueFullType
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseYieldingInflow {
|
||||
}
|
||||
// Parent: CPulseCell_Base
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_BaseValue {
|
||||
}
|
||||
// Parent: CPulseCell_BaseYieldingInflow
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_Inflow_Wait {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleOrdered__InstanceState_t {
|
||||
public const nint m_nNextIndex = 0x0; // int32
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Outflow_CycleShuffled__InstanceState_t {
|
||||
public const nint m_Shuffle = 0x0; // CUtlVectorFixedGrowable<uint8>
|
||||
public const nint m_nNextShuffle = 0x20; // int32
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Outflow_TestRandomYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Outflow_TestExplicitYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: CPulseCell_BaseValue
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Value_TestValue50 {
|
||||
}
|
||||
// Parent: CPulseCell_BaseValue
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_Value_RandomInt {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 4
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Timeline__TimelineEvent_t {
|
||||
public const nint m_flTimeFromPrevious = 0x0; // float32
|
||||
public const nint m_bPauseForPreviousEvents = 0x4; // bool
|
||||
public const nint m_bCallModeSync = 0x5; // bool
|
||||
public const nint m_EventOutflow = 0x8; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 6
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseInstanceDomainInfo
|
||||
// MPulseLibraryBindings
|
||||
// MPulseDomainOptInFeatureTag
|
||||
public static class CPulseGraphInstance_TestDomain {
|
||||
public const nint m_bIsRunningUnitTests = 0xD8; // bool
|
||||
public const nint m_bExplicitTimeStepping = 0xD9; // bool
|
||||
public const nint m_bExpectingToDestroyWithYieldedCursors = 0xDA; // bool
|
||||
public const nint m_nNextValidateIndex = 0xDC; // int32
|
||||
public const nint m_Tracepoints = 0xE0; // CUtlVector<CUtlString>
|
||||
public const nint m_bTestYesOrNoPath = 0xF8; // bool
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainTracepoint {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainCreateFakeEntity {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Step_TestDomainDestroyFakeEntity {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 1
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPulseEditorHeaderText
|
||||
public static class CPulseCell_Step_TestDomainEntFire {
|
||||
public const nint m_Input = 0x48; // CUtlString
|
||||
}
|
||||
// Parent: CPulseCell_BaseValue
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Val_TestDomainGetEntityName {
|
||||
}
|
||||
// Parent: CPulseCell_BaseValue
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
public static class CPulseCell_Val_TestDomainFindEntityByName {
|
||||
}
|
||||
// Parent: CPulseCell_BaseYieldingInflow
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
public static class CPulseCell_TestWaitWithCursorState {
|
||||
public const nint m_WakeResume = 0x48; // CPulse_ResumePoint
|
||||
public const nint m_WakeCancel = 0x58; // CPulse_ResumePoint
|
||||
public const nint m_WakeFail = 0x68; // CPulse_ResumePoint
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_TestWaitWithCursorState__CursorState_t {
|
||||
public const nint flWaitValue = 0x0; // float32
|
||||
public const nint bFailOnCancel = 0x4; // bool
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseLibraryBindings
|
||||
// MPropertyDescription
|
||||
public static class CPulseTestFuncs_DerivedDomain {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
public static class CPulseCell_Test_NoInflow {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
public static class CPulseCell_Test_MultiInflow_WithDefault {
|
||||
}
|
||||
// Parent: CPulseCell_BaseFlow
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
public static class CPulseCell_Test_MultiInflow_NoDefault {
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
// Metadata:
|
||||
// MPulseInstanceDomainInfo
|
||||
// MPulseLibraryBindings
|
||||
public static class CPulseGraphInstance_TurtleGraphics {
|
||||
}
|
||||
// Parent: CPulseCell_BaseYieldingInflow
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_WaitForCursorsWithTagBase {
|
||||
public const nint m_nCursorsAllowedToWait = 0x48; // int32
|
||||
public const nint m_WaitComplete = 0x50; // CPulse_ResumePoint
|
||||
public static class CPulse_Constant {
|
||||
public const nint m_Type = 0x0; // CPulseValueFullType
|
||||
public const nint m_Value = 0x10; // KeyValues3
|
||||
}
|
||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||
// Fields count: 2
|
||||
@@ -498,8 +407,17 @@ namespace CS2Dumper.Schemas {
|
||||
public const nint m_bTagSelfWhenComplete = 0x60; // bool
|
||||
public const nint m_nDesiredKillPriority = 0x64; // PulseCursorCancelPriority_t
|
||||
}
|
||||
// Parent: CPulseCell_WaitForCursorsWithTagBase
|
||||
// Fields count: 1
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseCell_Inflow_BaseEntrypoint {
|
||||
public const nint m_EntryChunk = 0x48; // PulseRuntimeChunkIndex_t
|
||||
public const nint m_RegisterMap = 0x50; // PulseRegisterMap_t
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
@@ -507,9 +425,32 @@ namespace CS2Dumper.Schemas {
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
// MPulseEditorHeaderIcon
|
||||
public static class CPulseCell_CursorQueue {
|
||||
public const nint m_nCursorsAllowedToRunParallel = 0x60; // int32
|
||||
public static class CPulseCell_Outflow_TestExplicitYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 2
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
// MCellForDomain
|
||||
// MPulseCellMethodBindings
|
||||
// MPropertyFriendlyName
|
||||
// MPropertyDescription
|
||||
public static class CPulseCell_Outflow_TestRandomYesNo {
|
||||
public const nint m_Yes = 0x48; // CPulse_OutflowConnection
|
||||
public const nint m_No = 0x58; // CPulse_OutflowConnection
|
||||
}
|
||||
// Parent: None
|
||||
// Fields count: 3
|
||||
//
|
||||
// Metadata:
|
||||
// MGetKV3ClassDefaults
|
||||
public static class CPulseRuntimeMethodArg {
|
||||
public const nint m_Name = 0x0; // CKV3MemberNameWithStorage
|
||||
public const nint m_Description = 0x38; // CUtlString
|
||||
public const nint m_Type = 0x40; // CPulseValueFullType
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user