2013-12-27 23:59:59 +01:00
|
|
|
package appeng.integration.abstraction;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-01-20 17:41:37 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public interface ITE
|
|
|
|
{
|
|
|
|
|
|
|
|
void addPulverizerRecipe(int i, ItemStack blkQuartz, ItemStack blockDust);
|
|
|
|
|
|
|
|
void addPulverizerRecipe(int i, ItemStack blkQuartzOre, ItemStack matQuartz, ItemStack matQuartzDust);
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
boolean isPipe(TileEntity te, ForgeDirection opposite);
|
|
|
|
|
2014-02-02 03:52:37 +01:00
|
|
|
ItemStack addItemsToPipe(TileEntity ad, ItemStack itemstack, ForgeDirection dir);
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|