source2sdk/sdk/include/source2sdk/animgraphlib/CSpeedScaleUpdateNode.hpp
Konstantin 'cpz' L. d9bf8c3943 28.05.2025
2025-05-28 15:51:36 +03:00

39 lines
1.2 KiB
C++

#pragma once
#include "source2sdk/source2gen/source2gen.hpp"
#include <cstddef>
#include <cstdint>
#include "source2sdk/animgraphlib/CAnimParamHandle.hpp"
#include "source2sdk/animgraphlib/CUnaryUpdateNode.hpp"
// /////////////////////////////////////////////////////////////
// Module: animgraphlib
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
namespace source2sdk
{
namespace animgraphlib
{
// Registered alignment: 0x8
// Alignment: 0x8
// Standard-layout class: false
// Size: 0x78
// Has VTable
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CSpeedScaleUpdateNode : public source2sdk::animgraphlib::CUnaryUpdateNode
{
public:
source2sdk::animgraphlib::CAnimParamHandle m_paramIndex; // 0x70
uint8_t _pad0072[0x6];
};
#pragma pack(pop)
// Cannot assert offsets of fields in CSpeedScaleUpdateNode because it is not a standard-layout class
static_assert(sizeof(source2sdk::animgraphlib::CSpeedScaleUpdateNode) == 0x78);
};
};