source2sdk/sdk/include/source2sdk/client/ArtyProgressBarDef_t.hpp
Konstantin 'cpz' L. ebd82a6a66 08.11.2024 (Kesha)
2024-11-08 17:13:12 +03:00

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);
};