mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 05:03:55 -07:00
Finalising merge with head
By: stevenh <steven.hartland@multiplay.co.uk>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package org.bukkit.command;
|
||||
|
||||
|
||||
public interface CommandSender {
|
||||
/**
|
||||
* Sends this sender a message
|
||||
*
|
||||
* @param message Message to be displayed
|
||||
*/
|
||||
public void sendMessage(String message);
|
||||
|
||||
/**
|
||||
* Checks if this player is currently op
|
||||
*
|
||||
* @return true if they are
|
||||
*/
|
||||
public boolean isOp();
|
||||
|
||||
}
|
Reference in New Issue
Block a user