mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
23 lines
563 B
C++
23 lines
563 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animlib
|
|
{
|
|
// Enumerator count: 5
|
|
// Alignment: 1
|
|
// Size: 0x1
|
|
enum class CNmRootMotionOverrideNode__OverrideFlags_t : std::uint8_t
|
|
{
|
|
AllowMoveX = 0,
|
|
AllowMoveY = 1,
|
|
AllowMoveZ = 2,
|
|
AllowFacingPitch = 3,
|
|
ListenForEvents = 4,
|
|
};
|
|
};
|