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

14 lines
262 B
C#
Raw Normal View History

namespace PatchClient.Models
{
public enum PatcherExitCode
{
2022-05-15 18:59:26 -04:00
ProgramClosed = 0,
Success = 10,
EftExeNotFound = 11,
NoPatchFolder = 12,
MissingFile = 13,
MissingDir = 14,
PatchFailed = 15
}
}