Files
Paper/paper-api/src/main/java/org/bukkit/material/Attachable.java
Bukkit/Spigot 855f4133b6 Whitespace + general cleanup
By: Erik Broes <erikbroes@grum.nl>
2011-05-14 23:22:54 +02:00

17 lines
338 B
Java

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