source2sdk/sdk/include/source2sdk/animgraphlib/CPairedSequenceUpdateNode.hpp
Konstantin 'cpz' L. ebd82a6a66 08.11.2024 (Kesha)
2024-11-08 17:13:12 +03:00

34 lines
1.0 KiB
C++

#pragma once
#include "source2sdk/animgraphlib/CSequenceUpdateNodeBase.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: 0x88
// Has VTable
// Construct allowed
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CPairedSequenceUpdateNode : public animgraphlib::CSequenceUpdateNodeBase
{
public:
CGlobalSymbol m_sPairedSequenceRole; // 0x78
[[maybe_unused]] std::uint8_t pad_0x80[0x8];
};
#pragma pack(pop)
// Cannot assert offsets of fields in CPairedSequenceUpdateNode because it is not a standard-layout class
static_assert(sizeof(CPairedSequenceUpdateNode) == 0x88);
};