Files
Paper/paper-api/src/main/java/org/bukkit/material/Attachable.java
2019-03-13 17:42:57 +11:00

19 lines
393 B
Java

package org.bukkit.material;
import org.bukkit.block.BlockFace;
import org.jetbrains.annotations.NotNull;
/**
* 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
*/
@NotNull
public BlockFace getAttachedFace();
}