001    package org.bukkit.command;
002    
003    import org.bukkit.block.Block;
004    
005    public interface BlockCommandSender extends CommandSender {
006    
007        /**
008         * Returns the block this command sender belongs to
009         *
010         * @return Block for the command sender
011         */
012        public Block getBlock();
013    }