Documentation and Flag Changes.

This commit is contained in:
MattBDev
2016-06-04 17:19:37 -04:00
parent 17ff6a7e1d
commit 70aaa984e2
15 changed files with 130 additions and 159 deletions

View File

@@ -6,13 +6,15 @@ public interface CommandCaller {
/**
* Send the player a message.
* @param message the message to send
*/
void sendMessage(String message);
/**
* Check the player's permissions. Will be cached if permission caching is enabled.
* Check the player's permissions. <i>Will be cached if permission caching is enabled.</i>
* @param permission the name of the permission
*/
boolean hasPermission(String perm);
boolean hasPermission(String permission);
RequiredType getSuperCaller();
}