Begin migrating settings implementation across to realm

This commit is contained in:
Dean Herbert
2021-08-22 02:21:45 +09:00
parent 1ba716d9f1
commit 187c557ea8
4 changed files with 50 additions and 16 deletions

View File

@ -16,9 +16,9 @@ namespace osu.Game.Rulesets
public class RulesetConfigCache : Component
{
private readonly ConcurrentDictionary<int, IRulesetConfigManager> configCache = new ConcurrentDictionary<int, IRulesetConfigManager>();
private readonly SettingsStore settingsStore;
private readonly RealmSettingsStore settingsStore;
public RulesetConfigCache(SettingsStore settingsStore)
public RulesetConfigCache(RealmSettingsStore settingsStore)
{
this.settingsStore = settingsStore;
}