0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 05:30:44 -05:00

20 lines
313 B
C#
Raw Normal View History

2024-06-12 18:59:08 -04:00
namespace AssemblyRemapper.Enums;
internal enum EFailureReason
{
None,
IsAbstract,
IsEnum,
IsNested,
IsSealed,
IsDerived,
IsInterface,
IsPublic,
HasGenericParameters,
HasAttribute,
IsAttribute,
HasMethods,
HasFields,
HasProperties,
HasNestedTypes,
}