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

9 lines
140 B
C#
Raw Normal View History

2024-06-12 00:07:44 -04:00
namespace AssemblyRemapper.Enums;
2024-06-11 19:18:48 -04:00
internal enum EMatchResult
{
Disabled = 0,
2024-06-13 04:56:08 -04:00
NoMatch = 1,
2024-06-11 19:18:48 -04:00
Match = 2,
2024-06-13 17:05:34 -04:00
HandleDirect = 3,
2024-06-11 19:18:48 -04:00
}