wabbajack/Wabbajack.CLI/OptionsDefinition.cs

23 lines
551 B
C#
Raw Normal View History

2020-01-31 22:38:56 +00:00
using System;
using Wabbajack.CLI.Verbs;
namespace Wabbajack.CLI
{
public class OptionsDefinition
{
public static readonly Type[] AllOptions = {
typeof(OptionsDefinition),
typeof(Encrypt),
typeof(Decrypt),
typeof(Validate),
typeof(DownloadUrl),
typeof(UpdateModlists),
2020-02-19 14:49:06 +00:00
typeof(UpdateNexusCache),
typeof(ChangeDownload),
typeof(ServerLog),
typeof(MyFiles),
typeof(DeleteFile)
2020-01-31 22:38:56 +00:00
};
}
}