Vixen
02b45cc4
csharp
public record class ConsoleCommand

One registered command.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (3)

  • public string Name

    What is typed to run it.

  • public string Help

    One line saying what it does.

  • public Action<ConsoleContext> Run

    What it does.

Methods (1)

  • public ConsoleCommand(string Name, string Help, Action<ConsoleContext> Run)

    One registered command.

Used by (1)

  • ConsoleCommandsVixen.Engine