Initial framework for the item routing is completed

This commit is contained in:
WayofTime 2016-01-14 14:11:16 -05:00
parent eaefd89287
commit 652b6a45fd
12 changed files with 256 additions and 47 deletions

View file

@ -0,0 +1,10 @@
package WayofTime.bloodmagic.routing;
import net.minecraft.util.EnumFacing;
public interface IOutputItemRoutingNode extends IItemRoutingNode
{
public boolean isOutput(EnumFacing side);
public IItemFilter getOutputFilterForSide(EnumFacing side);
}