use of me.semx11.autotip.command.CommandAbstract in project Hyperium by HyperiumClient.
the class Autotip method registerCommands.
private void registerCommands(CommandAbstract... commands) {
for (CommandAbstract command : commands) {
Hyperium.INSTANCE.getHandlers().getCommandHandler().registerCommand(command);
this.commands.add(command);
}
}
Aggregations