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

9 lines
135 B
C#
Raw Normal View History

2024-12-31 13:46:44 -05:00
namespace ReCodeItLib.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
}