0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-12 16:50:44 -05:00
assembly-tool/RecodeItLib/Enums/ENoMatchReason.cs

32 lines
605 B
C#

namespace ReCodeItLib.Enums;
public enum ENoMatchReason
{
AmbiguousWithPreviousMatch,
AmbiguousNewTypeNames,
IsPublic,
IsAbstract,
IsEnum,
IsNested,
IsSealed,
IsInterface,
IsDerived,
HasGenericParameters,
HasAttribute,
ConstructorParameterCount,
MethodsInclude,
MethodsExclude,
MethodsCount,
FieldsInclude,
FieldsExclude,
FieldsCount,
PropertiesInclude,
PropertiesExclude,
PropertiesCount,
NestedTypeInclude,
NestedTypeExclude,
NestedTypeCount,
NestedVisibility,
EventsInclude,
EventsExclude
}