Ton of Material extensions handling the meta-data of blocks.

By: sunkid <sunkid@iminurnetz.com>
This commit is contained in:
Bukkit/Spigot
2011-04-02 16:42:12 -07:00
parent a449fb01d1
commit 84a31c3951
31 changed files with 1203 additions and 135 deletions

View File

@@ -1,4 +1,3 @@
package org.bukkit.material;
import org.bukkit.block.BlockFace;
@@ -6,11 +5,11 @@ import org.bukkit.block.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();
public interface Attachable extends Directional {
/**
* Gets the face that this block is attached on
*
* @return BlockFace attached to
*/
public BlockFace getAttachedFace();
}