BloodMagic/src/main/java/WayofTime/bloodmagic/routing/IRoutingNode.java
Nick 6c729db70c Initial 1.9 commit
This DOES NOT BUILD. Do not even attempt.

Almost everything has been ported besides the block/item packages. Then it's a matter of testing what broke.
2016-03-17 13:00:46 -07:00

27 lines
597 B
Java

package WayofTime.bloodmagic.routing;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import java.util.List;
public interface IRoutingNode
{
void connectMasterToRemainingNode(World world, List<BlockPos> alreadyChecked, IMasterRoutingNode master);
BlockPos getBlockPos();
List<BlockPos> getConnected();
BlockPos getMasterPos();
boolean isConnectionEnabled(BlockPos testPos);
boolean isMaster(IMasterRoutingNode master);
void addConnection(BlockPos pos1);
void removeConnection(BlockPos pos1);
void removeAllConnections();
}