Make BeatmapStore's BeatmapDatabase private

This commit is contained in:
Dean Herbert
2017-07-27 15:34:13 +09:00
parent 96b08b8777
commit cbe7b08642
8 changed files with 85 additions and 43 deletions

View File

@ -180,7 +180,7 @@ namespace osu.Game.Screens.Select
initialAddSetsTask = new CancellationTokenSource();
carousel.Beatmaps = store.Database.QueryAndPopulate<BeatmapSetInfo>(b => !b.DeletePending);
carousel.Beatmaps = store.GetAllUsableBeatmapSets();
Beatmap.ValueChanged += beatmap_ValueChanged;