0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 05:50:47 -05:00
patcher/Patcher/PatcherUtils/Model/PatcherExitCode.cs

12 lines
208 B
C#
Raw Normal View History

namespace PatchClient.Models
{
public enum PatcherExitCode
{
Success = 0,
EftExeNotFound = 10,
NoPatchFolder = 11,
MissingFile = 12,
MissingDir = 13
}
}