15f300c553
Added Crystal Growth ( for Nether, Certus, and Fluix. ) Added Macerator Crafting Handler. Added Pulverizer Crafting Handler. Implemented Grid Crafting Handler. Formation Planes now eject items in a more consistent manner. Formation Planes can now place, or eject into replaceable blocks ( air/grass/fluids )
17 lines
353 B
Java
17 lines
353 B
Java
package appeng.integration.abstraction;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
public interface IIC2
|
|
{
|
|
|
|
void addToEnergyNet(TileEntity appEngTile);
|
|
|
|
void removeFromEnergyNet(TileEntity appEngTile);
|
|
|
|
ItemStack getItem(String string);
|
|
|
|
void maceratorRecipe(ItemStack in, ItemStack out);
|
|
|
|
}
|