mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
33 lines
1002 B
C++
33 lines
1002 B
C++
#pragma once
|
|
#include "source2sdk/animgraphlib/CUnaryUpdateNode.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x78
|
|
// Has VTable
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CPathHelperUpdateNode : public animgraphlib::CUnaryUpdateNode
|
|
{
|
|
public:
|
|
float m_flStoppingRadius; // 0x70
|
|
float m_flStoppingSpeedScale; // 0x74
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CPathHelperUpdateNode because it is not a standard-layout class
|
|
static_assert(sizeof(CPathHelperUpdateNode) == 0x78);
|
|
};
|