mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-24 14:16:44 +01:00
15 lines
364 B
Java
15 lines
364 B
Java
package com.intellectualsites.commands;
|
|
|
|
import com.intellectualcrafters.plot.commands.RequiredType;
|
|
import com.intellectualcrafters.plot.config.C;
|
|
|
|
public interface CommandCaller {
|
|
void sendMessage(final String message);
|
|
|
|
void sendMessage(C c, String ... args);
|
|
|
|
boolean hasPermission(final String perm);
|
|
|
|
RequiredType getSuperCaller();
|
|
}
|