mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-12 21:10:44 -05:00
29 lines
586 B
C#
29 lines
586 B
C#
namespace SPT.ByteBanger
|
|
{
|
|
public class DiffResult
|
|
{
|
|
public DiffResultType Result { get; }
|
|
public PatchInfo PatchInfo { get; }
|
|
|
|
public DiffResult(DiffResultType result, PatchInfo patchInfo)
|
|
{
|
|
Result = result;
|
|
PatchInfo = patchInfo;
|
|
}
|
|
}
|
|
|
|
public enum DiffResultType
|
|
{
|
|
Success,
|
|
OriginalFilePathInvalid,
|
|
OriginalFileNotFound,
|
|
OriginalFileReadFailed,
|
|
|
|
PatchedFilePathInvalid,
|
|
PatchedFileNotFound,
|
|
PatchedFileReadFailed,
|
|
|
|
FilesMatch
|
|
}
|
|
}
|