add redux CLI based on redux GUI output formats
This commit is contained in:
15
Il2CppInspector.Redux.CLI/Commands/ManualCommandOptions.cs
Normal file
15
Il2CppInspector.Redux.CLI/Commands/ManualCommandOptions.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
using Spectre.Console.Cli;
|
||||
|
||||
namespace Il2CppInspector.Redux.CLI.Commands;
|
||||
|
||||
internal class ManualCommandOptions : CommandSettings
|
||||
{
|
||||
[CommandArgument(0, "<InputPath>")]
|
||||
[Description("Paths to the input files. Will be subsequently loaded until binary and metadata were found.")]
|
||||
public string[] InputPaths { get; init; } = [];
|
||||
|
||||
[CommandOption("-o|--output")]
|
||||
[Description("Path to the output folder")]
|
||||
public string OutputPath { get; init; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user