Fixed Bug: #0830 - Microblocks disappear after shift-click on cable

You can now place AE2 parts in the same block as Immibis Microblocks
This commit is contained in:
AlgorithmX2
2014-08-08 01:40:17 -05:00
parent bb83252f38
commit 36cd261683
5 changed files with 136 additions and 1 deletions
@@ -0,0 +1,18 @@
package appeng.integration.abstraction;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import appeng.api.parts.IPartHost;
public interface IImmibisMicroblocks
{
IPartHost getOrCreateHost(EntityPlayer player, int side, TileEntity te);
/**
* @param te
* @return true if this worked..
*/
boolean leaveParts(TileEntity te);
}