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