1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 01:30:05 +08:00
This commit is contained in:
cdwcgt
2022-12-11 16:55:44 +09:00
Unverified
parent 2d57633409
commit a87bcccc42
+6
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>