mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Add BeatmapLookupCache
This commit is contained in:
@ -142,6 +142,7 @@ namespace osu.Game
|
||||
private BeatmapDifficultyCache difficultyCache;
|
||||
|
||||
private UserLookupCache userCache;
|
||||
private BeatmapLookupCache beatmapCache;
|
||||
|
||||
private FileStore fileStore;
|
||||
|
||||
@ -265,6 +266,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