mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 05:50:47 -05:00
13 lines
236 B
C#
13 lines
236 B
C#
namespace PatchClient.Models
|
|
{
|
|
public enum PatcherExitCode
|
|
{
|
|
ProgramClosed = 0,
|
|
Success = 10,
|
|
EftExeNotFound = 11,
|
|
NoPatchFolder = 12,
|
|
MissingFile = 13,
|
|
MissingDir = 14
|
|
}
|
|
}
|