Applied-Energistics-2-tiler.../tile/inventory/IAEAppEngInventory.java
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);
}