mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 10:04:14 +00:00
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#pragma once
|
|
#include "source2sdk/client/CCitadelModifier.hpp"
|
|
#include "source2sdk/client/CitadelAbilityVData.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: client
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::client
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x1600
|
|
// Has VTable
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CAbilityCadenceAnthemVData : public client::CitadelAbilityVData
|
|
{
|
|
public:
|
|
// metadata: MPropertyStartGroup "Modifiers"
|
|
// m_AnthemAOEModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
// CEmbeddedSubclass<client::CCitadelModifier> m_AnthemAOEModifier;
|
|
char m_AnthemAOEModifier[0x10]; // 0x15f0
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CAbilityCadenceAnthemVData because it is not a standard-layout class
|
|
static_assert(sizeof(CAbilityCadenceAnthemVData) == 0x1600);
|
|
};
|