Config to only render routing lines while an INodeRenderer is held

Current INodeRenderer's are the Node Router and all Routing Nodes
This commit is contained in:
Nick 2016-02-29 23:20:57 -08:00
parent 507d41111d
commit 3f8cccf056
7 changed files with 111 additions and 80 deletions

View file

@ -0,0 +1,13 @@
package WayofTime.bloodmagic.item.block;
import WayofTime.bloodmagic.api.iface.INodeRenderer;
import net.minecraft.block.Block;
import net.minecraft.item.ItemBlock;
public class ItemBlockRoutingNode extends ItemBlock implements INodeRenderer
{
public ItemBlockRoutingNode(Block block)
{
super(block);
}
}