Add xmldoc to `GetStream`

This commit is contained in:
Naxess 2021-04-20 02:28:38 +02:00
parent 4510e795e1
commit 67e4fe4284
1 changed files with 4 additions and 0 deletions

View File

@ -74,6 +74,10 @@ public interface IWorkingBeatmap
/// <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);
}
}