mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 08:28:40 +05:00
16 lines
486 B
C#
16 lines
486 B
C#
using Spectre.Console;
|
|
using Spectre.Console.Cli;
|
|
|
|
namespace Il2CppInspector.Redux.CLI.Commands;
|
|
|
|
internal sealed class InteractiveCommand(PortProvider portProvider) : BaseCommand<InteractiveCommand.Settings>(portProvider)
|
|
{
|
|
public sealed class Settings : CommandSettings;
|
|
|
|
protected override async Task<int> ExecuteAsync(CliClient client, Settings settings)
|
|
{
|
|
await Task.Delay(1000);
|
|
await AnsiConsole.AskAsync<string>("meow?");
|
|
return 0;
|
|
}
|
|
} |