mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 18:14:18 +00:00
39 lines
1.2 KiB
C++
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);
|
|
};
|
|
};
|