ru.cwcode.commands.paperplatform.paper.PaperCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PaperCommands Show documentation
Show all versions of PaperCommands Show documentation
Commands library for Paper (Minecraft)
The newest version!
package ru.cwcode.commands.paperplatform.paper;
import ru.cwcode.commands.Command;
public class PaperCommand {
PaperTabCompleter tabCompleter;
PaperCommandParser commandParser;
public PaperCommand(Command command) {
tabCompleter = new PaperTabCompleter(command);
commandParser = new PaperCommandParser(command);
}
public PaperTabCompleter getTabCompleter() {
return tabCompleter;
}
public PaperCommandParser getCommandParser() {
return commandParser;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy