2013-12-27 16:59:59 -06:00
|
|
|
package appeng.integration.abstraction;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-01-20 10:41:37 -06:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2014-02-08 19:34:52 -06:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 16:59:59 -06: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 10:41:37 -06:00
|
|
|
boolean isPipe(TileEntity te, ForgeDirection opposite);
|
|
|
|
|
2014-02-01 20:52:37 -06:00
|
|
|
ItemStack addItemsToPipe(TileEntity ad, ItemStack itemstack, ForgeDirection dir);
|
|
|
|
|
2013-12-27 16:59:59 -06:00
|
|
|
}
|