Added routing nodes and a bit of infrastructure - not even working yet.

This commit is contained in:
WayofTime 2016-01-12 12:23:26 -05:00
parent 9950b32d53
commit 8b0756e9da
7 changed files with 357 additions and 7 deletions

View file

@ -0,0 +1,19 @@
package WayofTime.bloodmagic.routing;
import java.util.List;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
public interface IRoutingNode
{
public void connectMasterToRemainingNode(World world, List<BlockPos> alreadyChecked, IMasterRoutingNode master);
public BlockPos getBlockPos();
public List<BlockPos> getConnected();
public BlockPos getMasterPos();
public boolean isConnectionEnabled(BlockPos testPos);
}