0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 08:10:45 -05:00
2024-06-13 18:15:52 -04:00

21 lines
328 B
C#

namespace AssemblyRemapper.Enums;
public enum EFailureReason
{
None,
IsAbstract,
IsEnum,
IsNested,
IsSealed,
IsDerived,
IsInterface,
IsPublic,
HasGenericParameters,
HasAttribute,
IsAttribute,
Constructor,
HasMethods,
HasFields,
HasProperties,
HasNestedTypes,
}