diff --git a/osu.Game/Beatmaps/IWorkingBeatmap.cs b/osu.Game/Beatmaps/IWorkingBeatmap.cs index b1cf6db6fc..053c6d373f 100644 --- a/osu.Game/Beatmaps/IWorkingBeatmap.cs +++ b/osu.Game/Beatmaps/IWorkingBeatmap.cs @@ -74,6 +74,10 @@ namespace osu.Game.Beatmaps /// A fresh track instance, which will also be available via . Track LoadTrack(); + /// + /// Returns the stream of the file from the given storage path. + /// + /// The storage path to the file. Stream GetStream(string storagePath); } }