2014-06-27 19:43:09 -04:00
|
|
|
package WayofTime.alchemicalWizardry.common.block;
|
|
|
|
|
2015-07-31 12:09:09 -04:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-06-27 19:43:09 -04:00
|
|
|
|
|
|
|
public interface IOrientable
|
|
|
|
{
|
2015-07-31 12:09:09 -04:00
|
|
|
ForgeDirection getInputDirection();
|
2014-06-27 19:43:09 -04:00
|
|
|
|
2015-07-31 12:09:09 -04:00
|
|
|
ForgeDirection getOutputDirection();
|
2014-06-27 19:43:09 -04:00
|
|
|
|
2015-07-31 12:09:09 -04:00
|
|
|
void setInputDirection(ForgeDirection direction);
|
2014-06-27 19:43:09 -04:00
|
|
|
|
2015-07-31 12:09:09 -04:00
|
|
|
void setOutputDirection(ForgeDirection direction);
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|