mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-21 05:38:13 +00:00
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
#pragma once
|
|
#include "source2sdk/animgraphlib/DampingSpeedFunction.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animgraphlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: true
|
|
// Size: 0x10
|
|
// Has VTable
|
|
// Has Trivial Destructor
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
// static metadata: MPropertyFriendlyName "Damping"
|
|
#pragma pack(push, 1)
|
|
class CAnimInputDamping
|
|
{
|
|
public:
|
|
[[maybe_unused]] std::uint8_t pad_0x00[0x8]; // 0x0
|
|
// metadata: MPropertyFriendlyName "Speed Function"
|
|
animgraphlib::DampingSpeedFunction m_speedFunction; // 0x8
|
|
// metadata: MPropertyFriendlyName "Speed Scale"
|
|
float m_fSpeedScale; // 0xc
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(offsetof(CAnimInputDamping, m_speedFunction) == 0x8);
|
|
static_assert(offsetof(CAnimInputDamping, m_fSpeedScale) == 0xc);
|
|
|
|
static_assert(sizeof(CAnimInputDamping) == 0x10);
|
|
};
|