Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / material / Attachable.java
@vlad20012 vlad20012 on 24 Feb 2017 319 bytes initial
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();
}