change name of interface and expose method instead of seperate values

This commit is contained in:
Albie
2019-11-25 07:24:29 +00:00
parent 9a8e3fe1da
commit 9fdbb2a58e
5 changed files with 33 additions and 51 deletions

View File

@ -9,6 +9,6 @@ namespace osu.Game.Screens.Play
{
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap.Value);
protected new BackgroundScreenBeatmap Background => (BackgroundScreenBeatmap)base.Background;
public new BackgroundScreenBeatmap Background => (BackgroundScreenBeatmap)base.Background;
}
}