Add BlockCommandSender for Command block

This commit is contained in:
Travis Watkins
2012-10-31 06:35:57 -05:00
parent d6d81089a1
commit 07ba841f34

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