A command library that makes SCP-SL Commands cleaner, simpler, and easier.
Look at the testing directory for examples of how to use.
[ParentCommand("nestedBase", "The Second base command for the plugin", [], [])]
public static void BaseCommand(ParentCommandContext context)
{
if(!context.CheckPermissions())
{
return;
}
context.RespondWithSubCommands();
}