Template
Template copied to clipboard
Add support for static methods to ConsoleCommands
[ConsoleCommand("help")]
private void Help()
{
IEnumerable<string> cmds = Game.Console.Commands.Select(x => x.Name);
Game.Log(cmds.ToFormattedString());
}