wabbajack/Wabbajack.CLI/OptionsDefinition.cs

13 lines
265 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
{
2020-02-08 18:03:41 +00:00
public static Type[] AllOptions = {
2020-02-08 18:09:40 +00:00
typeof(OptionsDefinition), typeof(Encrypt), typeof(Decrypt), typeof(Validate)
2020-01-31 22:38:56 +00:00
};
}
}