Add BlockCommandSender for Command block

By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
Bukkit/Spigot 2012-10-31 06:35:57 -05:00
parent 517f115fc0
commit 38f6b24c1c

View file

@ -0,0 +1,12 @@
package org.bukkit.command;
import org.bukkit.block.Block;
public interface BlockCommandSender extends CommandSender {
/**
* Returns the block this command sender belongs to
*
* @return Block for the command sender
*/
public Block getBlock();
}