source2sdk/sdk/include/source2sdk/animationsystem/CSeqAutoLayer.hpp
Konstantin 'cpz' L. d9bf8c3943 28.05.2025
2025-05-28 15:51:36 +03:00

49 lines
1.9 KiB
C++

#pragma once
#include "source2sdk/source2gen/source2gen.hpp"
#include <cstddef>
#include <cstdint>
#include "source2sdk/animationsystem/CSeqAutoLayerFlag.hpp"
// /////////////////////////////////////////////////////////////
// Module: animationsystem
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
namespace source2sdk
{
namespace animationsystem
{
// Registered alignment: 0x4
// Alignment: 0x4
// Standard-layout class: true
// Size: 0x1c
// Has Trivial Destructor
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CSeqAutoLayer
{
public:
std::int16_t m_nLocalReference; // 0x0
std::int16_t m_nLocalPose; // 0x2
source2sdk::animationsystem::CSeqAutoLayerFlag m_flags; // 0x4
float m_start; // 0xc
float m_peak; // 0x10
float m_tail; // 0x14
float m_end; // 0x18
};
#pragma pack(pop)
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_nLocalReference) == 0x0);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_nLocalPose) == 0x2);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_flags) == 0x4);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_start) == 0xc);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_peak) == 0x10);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_tail) == 0x14);
static_assert(offsetof(source2sdk::animationsystem::CSeqAutoLayer, m_end) == 0x18);
static_assert(sizeof(source2sdk::animationsystem::CSeqAutoLayer) == 0x1c);
};
};