add slash server aliases
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package us.ajg0702.queue.api;
|
||||
|
||||
import us.ajg0702.queue.api.commands.IBaseCommand;
|
||||
|
||||
public interface Implementation {
|
||||
void registerCommand(IBaseCommand command);
|
||||
void unregisterCommand(String name);
|
||||
default void unregisterCommand(IBaseCommand command) {
|
||||
unregisterCommand(command.getName());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user