Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.material;
2
3import org.bukkit.block.BlockFace;
4
5/**
6 * Indicates that a block can be attached to another block
7 */
8public interface Attachable extends Directional {
9
10 /**
11 * Gets the face that this block is attached on
12 *
13 * @return BlockFace attached to
14 */
15 public BlockFace getAttachedFace();
16}