ec98b19ffb
(Items done!)
20 lines
434 B
Java
20 lines
434 B
Java
package cofh.api.item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
/**
|
|
* Implement this interface on Item classes that are themselves inventories.
|
|
*
|
|
* There's no real interaction here - the point of this is to correctly identify these items and prevent nesting.
|
|
*
|
|
* @author King Lemming
|
|
*
|
|
*/
|
|
public interface IInventoryContainerItem {
|
|
|
|
/**
|
|
* Get the size of this inventory.
|
|
*/
|
|
int getSizeInventory(ItemStack container);
|
|
|
|
}
|