Files
Biscuit/src/main/java/com/fpghoti/biscuit/commands/ClientCommand.java
2019-10-02 04:42:00 -05:00

18 lines
411 B
Java

package com.fpghoti.biscuit.commands;
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
public abstract class ClientCommand extends BaseCommand{
public boolean called(String[] args, MessageReceivedEvent event) {
return true;
}
public abstract void execute(String[] args, MessageReceivedEvent event);
public CommandType getType() {
return CommandType.CLIENT;
}
}