2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.block;
|
|
|
|
|
|
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
|
2014-01-17 21:43:13 +00:00
|
|
|
public interface IOrientable
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
public ForgeDirection getInputDirection();
|
2014-01-17 21:05:38 +00:00
|
|
|
|
2014-01-17 19:12:49 +00:00
|
|
|
public ForgeDirection getOutputDirection();
|
|
|
|
|
|
|
|
public void setInputDirection(ForgeDirection direction);
|
2014-01-17 21:05:38 +00:00
|
|
|
|
2014-01-17 19:12:49 +00:00
|
|
|
public void setOutputDirection(ForgeDirection direction);
|
|
|
|
}
|