mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-21 05:38:13 +00:00
35 lines
1017 B
C++
35 lines
1017 B
C++
#pragma once
|
|
#include "source2sdk/animlib/CNmEvent.hpp"
|
|
#include "source2sdk/animlib/NmFootPhase_t.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x20
|
|
// Has VTable
|
|
// Construct allowed
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CNmFootEvent : public animlib::CNmEvent
|
|
{
|
|
public:
|
|
animlib::NmFootPhase_t m_phase; // 0x18
|
|
[[maybe_unused]] std::uint8_t pad_0x19[0x7];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CNmFootEvent because it is not a standard-layout class
|
|
static_assert(sizeof(CNmFootEvent) == 0x20);
|
|
};
|