mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Merge branch 'master' into realm-integration/skins-rebase
This commit is contained in:
@ -142,6 +142,7 @@ namespace osu.Game
|
||||
private BeatmapDifficultyCache difficultyCache;
|
||||
|
||||
private UserLookupCache userCache;
|
||||
private BeatmapLookupCache beatmapCache;
|
||||
|
||||
private FileStore fileStore;
|
||||
|
||||
@ -259,6 +260,9 @@ namespace osu.Game
|
||||
dependencies.Cache(userCache = new UserLookupCache());
|
||||
AddInternal(userCache);
|
||||
|
||||
dependencies.Cache(beatmapCache = new BeatmapLookupCache());
|
||||
AddInternal(beatmapCache);
|
||||
|
||||
var scorePerformanceManager = new ScorePerformanceCache();
|
||||
dependencies.Cache(scorePerformanceManager);
|
||||
AddInternal(scorePerformanceManager);
|
||||
|
Reference in New Issue
Block a user