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>
|
|
#include "source2sdk/animgraphlib/CConcreteAnimParameter.hpp"
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk
|
|
{
|
|
namespace animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x88
|
|
// Has VTable
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
// static metadata: MPropertyFriendlyName "Symbol Parameter"
|
|
#pragma pack(push, 1)
|
|
class CSymbolAnimParameter : public source2sdk::animgraphlib::CConcreteAnimParameter
|
|
{
|
|
public:
|
|
// metadata: MPropertyFriendlyName "Default Value"
|
|
CGlobalSymbol m_defaultValue; // 0x80
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CSymbolAnimParameter because it is not a standard-layout class
|
|
|
|
static_assert(sizeof(source2sdk::animgraphlib::CSymbolAnimParameter) == 0x88);
|
|
};
|
|
};
|