18 lines
407 B
Java
18 lines
407 B
Java
package net.Broken;
|
|
|
|
|
|
import net.dv8tion.jda.core.events.message.MessageReceivedEvent;
|
|
|
|
/**
|
|
* Created by seb65 on 19/10/2016.
|
|
*/
|
|
public interface Commande {
|
|
boolean called(String[] args, MessageReceivedEvent event);
|
|
void action(String[] args, MessageReceivedEvent event);
|
|
void executed(boolean success, MessageReceivedEvent event);
|
|
boolean isPrivateUsable();
|
|
boolean isAdminCmd();
|
|
|
|
|
|
}
|