1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00
This commit is contained in:
cdwcgt 2022-12-11 16:55:44 +09:00
parent 2d57633409
commit a87bcccc42
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2

View File

@ -95,6 +95,12 @@ namespace osu.Game.Database
}).ContinueWith(onComplete);
}
/// <summary>
/// Exports an item to Stream.
/// Override if custom export method is required.
/// </summary>
/// <param name="model">The item to export.</param>
/// <param name="outputStream">The output stream to export to.</param>
protected virtual void ExportToStream(TModel model, Stream outputStream) => exportZipArchive(model, outputStream);
/// <summary>