wabbajack/Wabbajack.CLI/OptionsDefinition.cs

33 lines
890 B
C#
Raw Normal View History

2020-01-31 22:38:56 +00:00
using System;
using Markdig.Syntax.Inlines;
2020-01-31 22:38:56 +00:00
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),
2020-04-06 18:26:09 +00:00
typeof(DeleteFile),
2020-04-08 19:56:53 +00:00
typeof(Changelog),
typeof(FindSimilar),
2020-05-04 23:03:50 +00:00
typeof(BSADump),
2020-06-20 22:51:47 +00:00
typeof(MigrateGameFolderFiles),
typeof(HashFile),
typeof(InlinedFileReport),
typeof(ExtractBSA),
2020-07-13 22:10:05 +00:00
typeof(PurgeNexusCache),
typeof(ForceHealing)
2020-01-31 22:38:56 +00:00
};
}
}