source2sdk/sdk/include/source2sdk/animationsystem/CAnimDecoder.hpp

39 lines
1.2 KiB
C++
Raw Normal View History

2024-09-10 22:36:12 +00:00
#pragma once
2025-05-28 12:51:36 +00:00
#include "source2sdk/source2gen/source2gen.hpp"
2024-09-10 22:36:12 +00:00
#include <cstddef>
#include <cstdint>
// /////////////////////////////////////////////////////////////
// Module: animationsystem
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
2025-05-28 12:51:36 +00:00
namespace source2sdk
2024-09-10 22:36:12 +00:00
{
2025-05-28 12:51:36 +00:00
namespace animationsystem
2024-09-10 22:36:12 +00:00
{
2025-05-28 12:51:36 +00:00
// Registered alignment: 0x8
// Alignment: 0x8
// Standard-layout class: true
// Size: 0x18
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CAnimDecoder
{
public:
CBufferString m_szName; // 0x0
std::int32_t m_nVersion; // 0x10
std::int32_t m_nType; // 0x14
};
#pragma pack(pop)
static_assert(offsetof(source2sdk::animationsystem::CAnimDecoder, m_szName) == 0x0);
static_assert(offsetof(source2sdk::animationsystem::CAnimDecoder, m_nVersion) == 0x10);
static_assert(offsetof(source2sdk::animationsystem::CAnimDecoder, m_nType) == 0x14);
static_assert(sizeof(source2sdk::animationsystem::CAnimDecoder) == 0x18);
2024-09-10 22:36:12 +00:00
};
};