source2sdk/sdk/include/source2sdk/animgraphlib/CTwoBoneIKUpdateNode.hpp

34 lines
1.1 KiB
C++
Raw Normal View History

2024-09-10 22:36:12 +00:00
#pragma once
#include "source2sdk/animgraphlib/CUnaryUpdateNode.hpp"
#include "source2sdk/animgraphlib/TwoBoneIKSettings_t.hpp"
#include "source2sdk/source2gen.hpp"
#include <cstddef>
#include <cstdint>
// /////////////////////////////////////////////////////////////
// Module: animgraphlib
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
namespace source2sdk::animgraphlib
{
// Registered alignment: 0x10
// Alignment: 0x10
// Standard-layout class: false
// Size: 0x1e0
// Has VTable
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CTwoBoneIKUpdateNode : public animgraphlib::CUnaryUpdateNode
{
public:
animgraphlib::TwoBoneIKSettings_t m_opFixedData; // 0x70
[[maybe_unused]] std::uint8_t pad_0x1d0[0x10];
};
#pragma pack(pop)
// Cannot assert offsets of fields in CTwoBoneIKUpdateNode because it is not a standard-layout class
static_assert(sizeof(CTwoBoneIKUpdateNode) == 0x1e0);
};