1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00

Mark WorkingBeatmap.GetSkin() as abstract

This commit is contained in:
Salman Ahmed 2021-05-21 20:14:26 +03:00
parent c0dfe37965
commit 318e5fc60b

View File

@ -324,7 +324,7 @@ namespace osu.Game.Beatmaps
public bool SkinLoaded => skin.IsResultAvailable;
public ISkin Skin => skin.Value;
protected virtual ISkin GetSkin() => new BeatmapSkin(BeatmapInfo);
protected abstract ISkin GetSkin();
private readonly RecyclableLazy<ISkin> skin;
public abstract Stream GetStream(string storagePath);