wabbajack/Wabbajack.CLI/OptionsDefinition.cs
Timothy Baldridge aa85c0dc8c We have a CLI
2020-01-31 15:38:56 -07:00

14 lines
261 B
C#

using System;
using Wabbajack.CLI.Verbs;
namespace Wabbajack.CLI
{
public class OptionsDefinition
{
public static Type[] AllOptions = new[]
{
typeof(OptionsDefinition), typeof(Encrypt), typeof(Decrypt)
};
}
}