mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
35 lines
975 B
C++
35 lines
975 B
C++
#pragma once
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animationsystem
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animationsystem
|
|
{
|
|
// Registered alignment: 0x4
|
|
// Alignment: 0x4
|
|
// Standard-layout class: true
|
|
// Size: 0x8
|
|
// Has Trivial Destructor
|
|
// Construct allowed
|
|
//
|
|
// static metadata: MGetKV3ClassDefaults
|
|
#pragma pack(push, 1)
|
|
class CAnimSequenceParams
|
|
{
|
|
public:
|
|
float m_flFadeInTime; // 0x0
|
|
float m_flFadeOutTime; // 0x4
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(offsetof(CAnimSequenceParams, m_flFadeInTime) == 0x0);
|
|
static_assert(offsetof(CAnimSequenceParams, m_flFadeOutTime) == 0x4);
|
|
|
|
static_assert(sizeof(CAnimSequenceParams) == 0x8);
|
|
};
|