13 lines
208 B
Java
13 lines
208 B
Java
package nl.iobyte.commandapi.interfaces;
|
|
|
|
public interface ICommandExecutor {
|
|
|
|
boolean isPlayer();
|
|
|
|
boolean hasPermission(String str);
|
|
|
|
void sendMessage(String str);
|
|
|
|
Object getOriginal();
|
|
|
|
}
|