Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 18 lines 378 B view raw
1package org.bukkit.material; 2 3import org.bukkit.block.BlockFace; 4 5public interface Directional { 6 7 /** 8 * Sets the direction that this block is facing in 9 */ 10 public void setFacingDirection(BlockFace face); 11 12 /** 13 * Gets the direction this block is facing 14 * 15 * @return the direction this block is facing 16 */ 17 public BlockFace getFacing(); 18}