2018-01-17 10:45:18 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-01-24 08:35:37 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2018-01-17 10:45:18 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Configuration
|
|
|
|
|
{
|
2018-01-24 08:35:37 +00:00
|
|
|
|
public abstract class RulesetConfigManager<T> : DatabasedConfigManager<T>, IRulesetConfigManager
|
2018-01-17 10:45:18 +00:00
|
|
|
|
where T : struct
|
|
|
|
|
{
|
2018-01-24 08:35:37 +00:00
|
|
|
|
protected RulesetConfigManager(RulesetInfo ruleset, SettingsStore settings) : base(settings, ruleset)
|
2018-01-17 10:45:18 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|