Remove BeatmapSetInfo and Metadata from interface

There were very few accesses to this, and after realm they should all be
done via the `BeatmapInfo`, so let's remove this.
This commit is contained in:
Dean Herbert
2021-12-22 17:44:22 +09:00
parent 1b0af78831
commit 967419c9ac
3 changed files with 5 additions and 8 deletions

View File

@ -15,14 +15,13 @@ using osu.Game.Storyboards;
namespace osu.Game.Beatmaps
{
/// <summary>
/// Provides access to the multiple resources offered by a beatmap model (textures, skins, playable beatmaps etc.)
/// </summary>
public interface IWorkingBeatmap
{
IBeatmapInfo BeatmapInfo { get; }
IBeatmapSetInfo BeatmapSetInfo { get; }
IBeatmapMetadataInfo Metadata { get; }
/// <summary>
/// Whether the Beatmap has finished loading.
///</summary>