source2sdk/sdk/include/source2sdk/client/CAbilityGarbageVData.hpp
Konstantin 'cpz' L. 500001def7 09.05.2025
2025-05-09 19:54:44 +03:00

46 lines
1.9 KiB
C++

#pragma once
#include "source2sdk/client/CCitadelModifier.hpp"
#include "source2sdk/client/CitadelAbilityVData.hpp"
#include "source2sdk/resourcesystem/InfoForResourceTypeIParticleSystemDefinition.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: 0x16f0
// Has VTable
//
// static metadata: MGetKV3ClassDefaults
#pragma pack(push, 1)
class CAbilityGarbageVData : public client::CitadelAbilityVData
{
public:
// metadata: MPropertyGroupName "Modifiers"
// m_GarbageAuraModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
// CEmbeddedSubclass<client::CCitadelModifier> m_GarbageAuraModifier;
char m_GarbageAuraModifier[0x10]; // 0x15f0
// metadata: MPropertyStartGroup "Visuals"
// m_ExplodeParticle has a template type with potentially unknown template parameters. You can try uncommenting the field below.
// CResourceNameTyped<CWeakHandle<resourcesystem::InfoForResourceTypeIParticleSystemDefinition>> m_ExplodeParticle;
char m_ExplodeParticle[0xe0]; // 0x1600
// metadata: MPropertyStartGroup "+Vacuum Properties"
float m_flAirSpeedMax; // 0x16e0
float m_flFallSpeedMax; // 0x16e4
float m_flAirDrag; // 0x16e8
float m_flMaxMovespeed; // 0x16ec
};
#pragma pack(pop)
// Cannot assert offsets of fields in CAbilityGarbageVData because it is not a standard-layout class
static_assert(sizeof(CAbilityGarbageVData) == 0x16f0);
};