resonant-induction/archive/java/dark/lib/interfaces/IExtendedStorage.java
2014-01-11 17:44:07 +08:00

14 lines
291 B
Java

package dark.lib.interfaces;
import net.minecraft.item.ItemStack;
/**
* Applied to blocks that store items in stacks above 64 and as one large collective of items
*
* @author DarkGuardsman
*/
public interface IExtendedStorage
{
public ItemStack addStackToStorage(ItemStack stack);
}