Add the concept of a "WorkingBeatmap" and make player load beatmaps and audio from SongSelect.

This commit is contained in:
Dean Herbert
2016-10-28 14:14:45 +09:00
parent 2cdda98b47
commit feccb7286c
5 changed files with 138 additions and 28 deletions

View File

@ -46,10 +46,11 @@ namespace osu.Desktop.VisualTests.Tests
Add(new Player()
{
Beatmap = new Beatmap
{
HitObjects = objects
}
Beatmap = new WorkingBeatmap(
new Beatmap
{
HitObjects = objects
})
});
}