Initial Commit

This commit is contained in:
2019-10-02 04:42:00 -05:00
commit ffd6e5978b
48 changed files with 2040 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}