2024-09-15 01:07:31 +00:00
|
|
|
#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
|
2025-05-09 16:54:44 +00:00
|
|
|
// Size: 0x1630
|
2024-09-15 01:07:31 +00:00
|
|
|
// Has VTable
|
|
|
|
//
|
|
|
|
// static metadata: MGetKV3ClassDefaults
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
class CAbilityBouncePadVData : public client::CitadelAbilityVData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// metadata: MPropertyStartGroup "Modifiers"
|
|
|
|
// m_BounceModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
|
|
// CEmbeddedSubclass<client::CCitadelModifier> m_BounceModifier;
|
2025-05-09 16:54:44 +00:00
|
|
|
char m_BounceModifier[0x10]; // 0x15f0
|
2024-09-15 01:07:31 +00:00
|
|
|
// m_AllyBounceModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
|
|
// CEmbeddedSubclass<client::CCitadelModifier> m_AllyBounceModifier;
|
2025-05-09 16:54:44 +00:00
|
|
|
char m_AllyBounceModifier[0x10]; // 0x1600
|
2024-09-15 01:07:31 +00:00
|
|
|
// m_SpeedOnLandModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
|
|
// CEmbeddedSubclass<client::CCitadelModifier> m_SpeedOnLandModifier;
|
2025-05-09 16:54:44 +00:00
|
|
|
char m_SpeedOnLandModifier[0x10]; // 0x1610
|
2024-09-15 01:07:31 +00:00
|
|
|
// m_NoBounceModifier has a template type with potentially unknown template parameters. You can try uncommenting the field below.
|
|
|
|
// CEmbeddedSubclass<client::CCitadelModifier> m_NoBounceModifier;
|
2025-05-09 16:54:44 +00:00
|
|
|
char m_NoBounceModifier[0x10]; // 0x1620
|
2024-09-15 01:07:31 +00:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
// Cannot assert offsets of fields in CAbilityBouncePadVData because it is not a standard-layout class
|
2025-05-09 16:54:44 +00:00
|
|
|
static_assert(sizeof(CAbilityBouncePadVData) == 0x1630);
|
2024-09-15 01:07:31 +00:00
|
|
|
};
|