18 lines
364 B
C#
18 lines
364 B
C#
|
|
namespace LANCommander.SDK.Enums
|
||
|
|
{
|
||
|
|
public enum InstallTaskType
|
||
|
|
{
|
||
|
|
DownloadAndExtract,
|
||
|
|
WriteManifest,
|
||
|
|
WriteScripts,
|
||
|
|
VerifyFiles,
|
||
|
|
DownloadSaves,
|
||
|
|
RunInstallScript,
|
||
|
|
RunKeyChangeScript,
|
||
|
|
RunNameChangeScript,
|
||
|
|
RunRedistributableInstallScript,
|
||
|
|
DownloadManual,
|
||
|
|
MoveFiles
|
||
|
|
}
|
||
|
|
}
|