mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Bring back SettingsStore
to avoid changing ruleset API for now
Also fixes some remaining test failures due to locally constructed rulesets that are not being tracked by the game.
This commit is contained in:
@ -3,15 +3,14 @@
|
||||
|
||||
using System;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Database;
|
||||
|
||||
namespace osu.Game.Rulesets.Configuration
|
||||
{
|
||||
public abstract class RulesetConfigManager<TLookup> : DatabasedConfigManager<TLookup>, IRulesetConfigManager
|
||||
where TLookup : struct, Enum
|
||||
{
|
||||
protected RulesetConfigManager(RealmContextFactory realmFactory, RulesetInfo ruleset, int? variant = null)
|
||||
: base(realmFactory, ruleset, variant)
|
||||
protected RulesetConfigManager(SettingsStore settings, RulesetInfo ruleset, int? variant = null)
|
||||
: base(settings, ruleset, variant)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user