Remove unused load checks

This commit is contained in:
Dean Herbert
2021-12-22 18:12:01 +09:00
parent 3c95497ed7
commit f3f491374b
3 changed files with 1 additions and 25 deletions

View File

@ -54,10 +54,6 @@ namespace osu.Game.Beatmaps
#region Load checks
public virtual bool TrackLoaded => loadedTrack != null;
public bool WaveformLoaded => waveform.IsResultAvailable;
public bool StoryboardLoaded => storyboard.IsResultAvailable;
public bool SkinLoaded => skin.IsResultAvailable;
public bool BackgroundLoaded => background.IsResultAvailable;
public virtual bool BeatmapLoaded => beatmapLoadTask?.IsCompleted ?? false;
#endregion