Add BlockCommandSender for Command block

This commit is contained in:
Travis Watkins 2012-10-31 06:35:57 -05:00
parent 772d6ca804
commit a764c850c1

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();
}