0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 08:50:44 -05:00
2024-06-11 19:18:48 -04:00

9 lines
146 B
C#

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