Move DummyWorkingBeatmap to a more global level (OsuScreen)

This commit is contained in:
Dean Herbert
2017-07-18 17:44:45 +09:00
parent 6016310b09
commit 21984ba764
3 changed files with 3 additions and 5 deletions

View File

@ -20,6 +20,7 @@ namespace osu.Game.Beatmaps
Title = "no beatmaps available!",
Author = "no one",
},
BeatmapSet = new BeatmapSetInfo(),
Difficulty = new BeatmapDifficulty(),
})
{
@ -32,6 +33,6 @@ namespace osu.Game.Beatmaps
protected override Texture GetBackground() => null;
protected override Track GetTrack() => null;
protected override Track GetTrack() => new TrackVirtual();
}
}