001 package org.bukkit.material; 002 003 import org.bukkit.block.BlockFace; 004 005 public interface Directional { 006 007 /** 008 * Sets the direction that this block is facing in 009 * 010 * @param face The facing direction 011 */ 012 public void setFacingDirection(BlockFace face); 013 014 /** 015 * Gets the direction this block is facing 016 * 017 * @return the direction this block is facing 018 */ 019 public BlockFace getFacing(); 020 }