Added Attachable MaterialData

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-01-15 20:21:56 +00:00
parent 3a76f4d8dd
commit 4d443d2fc5

View file

@ -0,0 +1,16 @@
package org.bukkit.material;
import org.bukkit.BlockFace;
/**
* Indicates that a block can be attached to another block
*/
public interface Attachable {
/**
* Gets the face that this block is attached on
*
* @return BlockFace attached to
*/
public BlockFace getAttachedFace();
}