0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 08:10:45 -05:00
assembly-tool/RecodeItLib/Enums/ENoMatchReason.cs

32 lines
605 B
C#
Raw Normal View History

2024-12-31 13:46:44 -05:00
namespace ReCodeItLib.Enums;
2024-06-12 18:59:08 -04:00
public enum ENoMatchReason
2024-06-12 18:59:08 -04:00
{
2024-06-28 18:38:03 -04:00
AmbiguousWithPreviousMatch,
AmbiguousNewTypeNames,
IsPublic,
IsAbstract,
2024-06-12 18:59:08 -04:00
IsEnum,
IsNested,
IsSealed,
IsInterface,
2024-06-12 18:59:08 -04:00
IsDerived,
HasGenericParameters,
HasAttribute,
ConstructorParameterCount,
2024-06-14 16:18:43 -04:00
MethodsInclude,
MethodsExclude,
MethodsCount,
FieldsInclude,
FieldsExclude,
FieldsCount,
PropertiesInclude,
PropertiesExclude,
PropertiesCount,
NestedTypeInclude,
NestedTypeExclude,
NestedTypeCount,
NestedVisibility,
EventsInclude,
2024-11-05 14:25:54 -05:00
EventsExclude
2024-06-12 18:59:08 -04:00
}