mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 18:14:18 +00:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "source2sdk/source2gen/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk
|
|
{
|
|
namespace animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: true
|
|
// Size: 0x20
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class WeightList
|
|
{
|
|
public:
|
|
CUtlString m_name; // 0x0
|
|
// m_weights has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
// CUtlVector<float> m_weights;
|
|
char m_weights[0x18]; // 0x8
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(offsetof(source2sdk::animgraphlib::WeightList, m_name) == 0x0);
|
|
static_assert(offsetof(source2sdk::animgraphlib::WeightList, m_weights) == 0x8);
|
|
|
|
static_assert(sizeof(source2sdk::animgraphlib::WeightList) == 0x20);
|
|
};
|
|
};
|