mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
22 lines
534 B
C++
22 lines
534 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animlib
|
|
{
|
|
// Enumerator count: 4
|
|
// Alignment: 1
|
|
// Size: 0x1
|
|
enum class CNmFloatAngleMathNode__Operation_t : std::uint8_t
|
|
{
|
|
ClampTo180 = 0,
|
|
ClampTo360 = 1,
|
|
FlipHemisphere = 2,
|
|
FlipHemisphereNegate = 3,
|
|
};
|
|
};
|