Applied-Energistics-2-tiler.../src/api/java/mods/immibis/core/api/multipart/ICoverSystem.java
thatsIch 54802be11f Moved API
Added temporary(!) API dependencies, will resolved via Maven later on
Added mcmod.info
Added pack.mcmeta template
Added hacked BC jar to use facades indev
Split build logic into several pieces
Update gitignore
Modify build.gradle to match changes
2014-09-26 16:14:45 +02:00

23 lines
764 B
Java

package mods.immibis.core.api.multipart;
/**
* An object that allows extra parts to be added to multipart tiles.
* For example, you can add covers to InfiniTubes transport conduits
* because they use a MicroblockCoverSystem.
*
* This interface's existence is a bit unintuitive, but it was
*/
public interface ICoverSystem extends IPartContainer {
/**
* Converts the block containing this cover system into
* a block containing only parts from this cover system,
* or to air if the cover system has no parts.
*
* Call it when, for example, all wires in a RedLogic wire block are destroyed,
* to replace it with a microblock container block if there were any microblocks
* in the wire block.
*/
public void convertToContainerBlock();
}