source2sdk/sdk/include/source2sdk/animgraphlib/IKChannelMode.hpp
Konstantin 'cpz' L. d9bf8c3943 28.05.2025
2025-05-28 15:51:36 +03:00

32 lines
876 B
C++

#pragma once
#include "source2sdk/source2gen/source2gen.hpp"
#include <cstddef>
#include <cstdint>
// /////////////////////////////////////////////////////////////
// Module: animgraphlib
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
namespace source2sdk
{
namespace animgraphlib
{
// Enumerator count: 4
// Alignment: 4
// Size: 0x4
enum class IKChannelMode : std::uint32_t
{
// MPropertyFriendlyName "Two Bone"
TwoBone = 0x0,
// MPropertyFriendlyName "Two Bone + Translate"
TwoBone_Translate = 0x1,
// MPropertyFriendlyName "One Bone"
OneBone = 0x2,
// MPropertyFriendlyName "One Bone + Translate"
OneBone_Translate = 0x3,
};
};
};