resonant-induction/archive/java/resonantinduction/core/tilenetwork/INetworkPart.java
2014-01-11 17:44:07 +08:00

21 lines
549 B
Java

package resonantinduction.core.tilenetwork;
import java.util.List;
import net.minecraft.tileentity.TileEntity;
public interface INetworkPart extends ITileConnector
{
/** Array of connections this tile has to other tiles */
public List<TileEntity> getNetworkConnections();
/** Update the connection this tile has to other tiles */
public void refresh();
/** Gets the networkPart's primary network */
public ITileNetwork getTileNetwork();
/** Sets the networkPart's primary network */
public void setTileNetwork(ITileNetwork network);
}