Implement GetSkin() for other working beatmaps

This commit is contained in:
Salman Ahmed
2021-05-21 20:21:00 +03:00
parent 04e75d8f2b
commit 4f6de6fdc6
6 changed files with 15 additions and 0 deletions

View File

@ -526,6 +526,7 @@ namespace osu.Game.Beatmaps
protected override IBeatmap GetBeatmap() => beatmap;
protected override Texture GetBackground() => null;
protected override Track GetBeatmapTrack() => null;
protected override ISkin GetSkin() => null;
public override Stream GetStream(string storagePath) => null;
}
}