mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 18:14:18 +00:00
32 lines
876 B
C++
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,
|
|
};
|
|
};
|
|
};
|