Files
Paper/paper-api/src/main/java/org/bukkit/command/ProxiedCommandSender.java
2015-01-04 23:26:45 +00:00

21 lines
462 B
Java

package org.bukkit.command;
public interface ProxiedCommandSender extends CommandSender {
/**
* Returns the CommandSender which triggered this proxied command
*
* @return the caller which triggered the command
*/
CommandSender getCaller();
/**
* Returns the CommandSender which is being used to call the command
*
* @return the caller which the command is being run as
*/
CommandSender getCallee();
}