mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-21 05:38:13 +00:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#pragma once
|
|
#include "source2sdk/animlib/CNmFloatValueNode__CDefinition.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 CNmFloatClampNode__CDefinition : public animlib::CNmFloatValueNode__CDefinition
|
|
{
|
|
public:
|
|
int16_t m_nInputValueNodeIdx; // 0x10
|
|
[[maybe_unused]] std::uint8_t pad_0x12[0x2]; // 0x12
|
|
Range_t m_clampRange; // 0x14
|
|
[[maybe_unused]] std::uint8_t pad_0x1c[0x4];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// Cannot assert offsets of fields in CNmFloatClampNode::CDefinition because it is not a standard-layout class
|
|
static_assert(sizeof(CNmFloatClampNode__CDefinition) == 0x20);
|
|
};
|