mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 18:14:18 +00:00
46 lines
1.8 KiB
C++
46 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include "source2sdk/source2gen/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include "source2sdk/animgraphlib/CAnimComponentUpdater.hpp"
|
|
#include "source2sdk/animgraphlib/CAnimParamHandle.hpp"
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk
|
|
{
|
|
namespace animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x48
|
|
// Has VTable
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CSlopeComponentUpdater : public source2sdk::animgraphlib::CAnimComponentUpdater
|
|
{
|
|
public:
|
|
uint8_t _pad0030[0x4]; // 0x30
|
|
float m_flTraceDistance; // 0x34
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeAngle; // 0x38
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeAngleFront; // 0x3a
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeAngleSide; // 0x3c
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeHeading; // 0x3e
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeNormal; // 0x40
|
|
source2sdk::animgraphlib::CAnimParamHandle m_hSlopeNormal_WorldSpace; // 0x42
|
|
uint8_t _pad0044[0x4];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CSlopeComponentUpdater because it is not a standard-layout class
|
|
|
|
static_assert(sizeof(source2sdk::animgraphlib::CSlopeComponentUpdater) == 0x48);
|
|
};
|
|
};
|