source2sdk/sdk/include/source2sdk/animlib/NmEventConditionRules_t.hpp
Konstantin 'cpz' L. 125d020806 11.09.2024
compile-ready SDK
2024-09-11 01:33:16 +03:00

27 lines
713 B
C++

#pragma once
#include <cstdint>
// /////////////////////////////////////////////////////////////
// Module: animlib
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
namespace source2sdk::animlib
{
// Enumerator count: 9
// Alignment: 1
// Size: 0x1
enum class NmEventConditionRules_t : std::uint8_t
{
LimitSearchToSourceState = 0,
IgnoreInactiveEvents = 1,
PreferHighestWeight = 2,
PreferHighestProgress = 3,
OperatorOr = 4,
OperatorAnd = 5,
SearchOnlyStateEvents = 6,
SearchOnlyAnimEvents = 7,
SearchBothStateAndAnimEvents = 8,
};
};