36cd261683
You can now place AE2 parts in the same block as Immibis Microblocks
18 lines
382 B
Java
18 lines
382 B
Java
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);
|
|
|
|
}
|