/// <summary> /// Removes the first occurrence of a specific object from the <see cref="AssetWriterCollection"/>. /// </summary> /// <param name="item"></param> /// <returns></returns> public bool Remove(IAssetWriter item) => _writers.Remove(item);
/// <summary> /// Removes the first occurrence of a specific object from the <see cref="AssetReaderCollection"/>. /// </summary> /// <param name="item"></param> /// <returns></returns> public bool Remove(IAssetReader item) => _readers.Remove(item);