0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 02:10:45 -05:00
assembly-tool/RecodeItLib/Enums/ENoMatchReason.cs
2024-06-28 18:38:03 -04:00

26 lines
496 B
C#

namespace ReCodeIt.Enums;
public enum ENoMatchReason
{
AmbiguousWithPreviousMatch,
AmbiguousNewTypeNames,
IsEnum,
IsNested,
IsSealed,
IsDerived,
HasGenericParameters,
HasAttribute,
ConstructorParameterCount,
MethodsInclude,
MethodsExclude,
MethodsCount,
FieldsInclude,
FieldsExclude,
FieldsCount,
PropertiesInclude,
PropertiesExclude,
PropertiesCount,
NestedTypeInclude,
NestedTypeExclude,
NestedTypeCount,
}