Template icon indicating copy to clipboard operation
Template copied to clipboard

Add support for static methods to ConsoleCommands

Open valkyrienyanko opened this issue 1 year ago • 0 comments

[ConsoleCommand("help")]
private void Help()
{
    IEnumerable<string> cmds = Game.Console.Commands.Select(x => x.Name);

    Game.Log(cmds.ToFormattedString());
}

valkyrienyanko avatar Sep 16 '24 23:09 valkyrienyanko