blob: c5d7c433eb39db6f62a5aea473317d92d21a0bdb [file] [log] [blame] [raw]
package appeng.api.me.tiles;
import appeng.api.IItemList;
@Deprecated
public interface IStorageAware {
/**
* if your GridTile Implements this interface, the Network will notify it of changes, and send you a list of the contents so you can updates statues, WAY BETTER then polling.
* @param iss
*/
void onNetworkInventoryChange( IItemList iss );
}