mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 10:04:14 +00:00
44 lines
1.7 KiB
C++
44 lines
1.7 KiB
C++
#pragma once
|
|
#include "source2sdk/animationsystem/CAnimEncodeDifference.hpp"
|
|
#include "source2sdk/animationsystem/CAnimFrameBlockAnim.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animationsystem
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animationsystem
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: true
|
|
// Size: 0xd8
|
|
// Construct allowed
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CAnimEncodedFrames
|
|
{
|
|
public:
|
|
CBufferString m_fileName; // 0x0
|
|
int32_t m_nFrames; // 0x10
|
|
int32_t m_nFramesPerBlock; // 0x14
|
|
// m_frameblockArray has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
// CUtlVector<animationsystem::CAnimFrameBlockAnim> m_frameblockArray;
|
|
char m_frameblockArray[0x18]; // 0x18
|
|
animationsystem::CAnimEncodeDifference m_usageDifferences; // 0x30
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(offsetof(CAnimEncodedFrames, m_fileName) == 0x0);
|
|
static_assert(offsetof(CAnimEncodedFrames, m_nFrames) == 0x10);
|
|
static_assert(offsetof(CAnimEncodedFrames, m_nFramesPerBlock) == 0x14);
|
|
static_assert(offsetof(CAnimEncodedFrames, m_frameblockArray) == 0x18);
|
|
static_assert(offsetof(CAnimEncodedFrames, m_usageDifferences) == 0x30);
|
|
|
|
static_assert(sizeof(CAnimEncodedFrames) == 0xd8);
|
|
};
|