mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#pragma once
|
|
#include "source2sdk/animgraphlib/CLeafUpdateNode.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animgraphlib
|
|
{
|
|
// Registered alignment: unknown
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x70
|
|
// Has VTable
|
|
// Is Abstract
|
|
// Construct allowed
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CSequenceUpdateNodeBase : public animgraphlib::CLeafUpdateNode
|
|
{
|
|
public:
|
|
[[maybe_unused]] std::uint8_t pad_0x58[0xc]; // 0x58
|
|
float m_playbackSpeed; // 0x64
|
|
bool m_bLoop; // 0x68
|
|
[[maybe_unused]] std::uint8_t pad_0x69[0x7];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CSequenceUpdateNodeBase because it is not a standard-layout class
|
|
static_assert(sizeof(CSequenceUpdateNodeBase) == 0x70);
|
|
};
|