Package xyz.theprogramsrc.commandsmodule.bungee

Types

Link copied to clipboard
class Command(name: String, onExecute: (CommandExecutor) -> Unit)

Representation of a command

Link copied to clipboard
class CommandExecutor(commandSender: CommandSender, args: Arguments)

Represents a command executor

Link copied to clipboard
data class SubCommand(name: String, arguments: List<String>, tabCompletions: (CommandSender) -> Map<String, Collection<String>>, executor: (CommandExecutor) -> Unit)

Representation of a SubCommand