001    package org.bukkit.material;
002    
003    import org.bukkit.block.BlockFace;
004    
005    /**
006     * Indicates that a block can be attached to another block
007     */
008    public interface Attachable extends Directional {
009    
010        /**
011         * Gets the face that this block is attached on
012         *
013         * @return BlockFace attached to
014         */
015        public BlockFace getAttachedFace();
016    }