Files
Applied-Energistics-2/tile/inventory/IAEAppEngInventory.java
T
AlgorithmX2 ac365b28c6 Tile Saving
2014-01-30 18:50:11 -06:00

14 lines
302 B
Java

package appeng.tile.inventory;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
public interface IAEAppEngInventory
{
void saveChanges();
void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack);
}