mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
558 B
C#
18 lines
558 B
C#
using Ookii.CommandLine;
|
|
using System.ComponentModel;
|
|
|
|
namespace AssetRipper.Tools.CabMapGenerator;
|
|
|
|
[GeneratedParser]
|
|
[ParseOptions(IsPosix = true)]
|
|
internal sealed partial class Arguments
|
|
{
|
|
[CommandLineArgument(IsPositional = true)]
|
|
[Description("The input files to analyze.")]
|
|
public string[]? FilesToExport { get; set; }
|
|
|
|
[CommandLineArgument("output", DefaultValue = null, ShortName = 'o')]
|
|
[Description("The output file to save the information. If not specified, it will be called \"cabmap.json\".")]
|
|
public string? OutputFile { get; set; }
|
|
}
|