mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-27 19:24:43 +02:00
15 lines
366 B
Java
15 lines
366 B
Java
package com.plotsquared.general.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();
|
|
}
|