0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 06:50:44 -05:00
2024-06-12 00:07:44 -04:00

9 lines
145 B
C#

namespace AssemblyRemapper.Enums;
internal enum EMatchResult
{
NoMatch = -1,
Disabled = 0,
SearchedNoResult = 1,
Match = 2,
}