0

add CommandManager

This commit is contained in:
2021-01-02 01:24:09 +03:00
parent 1bb5eee5cf
commit 72c858db2d
5 changed files with 158 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
package ghast.command;
import org.bukkit.command.CommandSender;
public interface ErrorConsumer {
void accept(CommandSender sender, String commandName, String[] args, Exception exception);
}