mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-18 12:18:13 +00:00
34 lines
1001 B
C++
34 lines
1001 B
C++
#pragma once
|
|
#include "source2sdk/client/ArtyGameObjectDef_t.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: 0xb8
|
|
// Has VTable
|
|
// Construct allowed
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
struct ArtyProgressBarDef_t : public client::ArtyGameObjectDef_t
|
|
{
|
|
public:
|
|
float m_flNotchSize; // 0xb0
|
|
[[maybe_unused]] std::uint8_t pad_0xb4[0x4];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in ArtyProgressBarDef_t because it is not a standard-layout class
|
|
static_assert(sizeof(ArtyProgressBarDef_t) == 0xb8);
|
|
};
|