Move score download logic out of ScoreManager

This commit is contained in:
Dean Herbert
2021-11-25 17:21:05 +09:00
parent 716543b5b3
commit a2ab9f457d
7 changed files with 27 additions and 45 deletions

View File

@ -657,6 +657,8 @@ namespace osu.Game
BeatmapManager.PostImport = items => PresentBeatmap(items.First().Value);
BeatmapDownloader.PostNotification = n => Notifications.Post(n);
ScoreDownloader.PostNotification = n => Notifications.Post(n);
ScoreManager.PostNotification = n => Notifications.Post(n);
ScoreManager.PostImport = items => PresentScore(items.First().Value);