1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Add xmldoc to GetStream

This commit is contained in:
Naxess 2021-04-20 02:28:38 +02:00
parent 4510e795e1
commit 67e4fe4284

View File

@ -74,6 +74,10 @@ namespace osu.Game.Beatmaps
/// <returns>A fresh track instance, which will also be available via <see cref="Track"/>.</returns>
Track LoadTrack();
/// <summary>
/// Returns the stream of the file from the given storage path.
/// </summary>
/// <param name="storagePath">The storage path to the file.</param>
Stream GetStream(string storagePath);
}
}