resonant-induction/APIs/universalelectricity/prefab/tile/IRotatable.java
DarkGuardsman 841d891aa3 reworked energy prefabs
Plan to do a lot more work as i want more control over how the tiles
work even at the basic layer.
2013-09-18 06:53:42 -04:00

16 lines
449 B
Java

package universalelectricity.prefab.tile;
import net.minecraftforge.common.ForgeDirection;
/** The interface is applied to TileEntities that can rotate.
*
* @author Calclavia */
public interface IRotatable
{
/** @return Gets the facing direction. Always returns the front side of the block. */
public ForgeDirection getDirection();
/** @param Sets the facing direction. */
public void setDirection(ForgeDirection direction);
}