blob: e65d09ad6341e6e38273a39512dbacb293b2af1c [file] [log] [blame] [raw]
package appeng.api.me.tiles;
import appeng.api.me.util.IMEInventoryHandler;
/**
* Both useless and incredibly useful, maybe...
*/
public interface ICellProvider
{
/**
* consume power to add an item to the storage system.
* @param items
* @param multiplier
* @return
*/
public int usePowerForAddition( int items, int multiplier );
/**
* returns a ME Inventory for interaction.
*/
public IMEInventoryHandler provideCell();
}