Rename method

This commit is contained in:
smoogipoo
2020-08-07 22:31:41 +09:00
parent d1765c8a45
commit e87f50f74f
16 changed files with 21 additions and 16 deletions

View File

@ -249,9 +249,9 @@ namespace osu.Game.Beatmaps
protected abstract Texture GetBackground();
private readonly RecyclableLazy<Texture> background;
public Track GetRealTrack() => GetTrack() ?? GetVirtualTrack(1000);
public Track GetTrack() => GetBeatmapTrack() ?? GetVirtualTrack(1000);
protected abstract Track GetTrack();
protected abstract Track GetBeatmapTrack();
public bool WaveformLoaded => waveform.IsResultAvailable;
public Waveform Waveform => waveform.Value;