blob: 0f4c635257e2ceb73044a5b50c97ba654a568008 [file] [log] [blame] [raw]
package appeng.api;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.ForgeDirection;
public interface IExternalStorageRegistry {
/**
* A registry for StorageBus interactions
* @param ei
*/
void addExternalStorageInterface( IExternalStorageHandler ei );
/**
* returns the handler for a given tile / forge direction.
* @param te
* @param opposite
* @return
*/
IExternalStorageHandler getHandler(TileEntity te, ForgeDirection opposite);
}