BloodMagic/src/main/java/WayofTime/bloodmagic/routing/IRoutingNode.java
Nick f5d02b2807 Interface cleanup
Specifying public in an interface is redundant.
2016-03-14 18:55:44 -07:00

28 lines
592 B
Java

package WayofTime.bloodmagic.routing;
import java.util.List;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
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();
}