Applied-Energistics-2-tiler.../tile/inventory/IAEAppEngInventory.java

14 lines
302 B
Java
Raw Normal View History

package appeng.tile.inventory;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
public interface IAEAppEngInventory
{
2014-01-31 01:50:11 +01:00
void saveChanges();
void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack);
}