mirror of
https://github.com/ppy/osu
synced 2025-03-01 09:01:22 +00:00
16 lines
514 B
C#
16 lines
514 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Rulesets.Configuration
|
|
{
|
|
public abstract class RulesetConfigManager<T> : DatabasedConfigManager<T>, IRulesetConfigManager
|
|
where T : struct
|
|
{
|
|
protected RulesetConfigManager(RulesetInfo ruleset, SettingsStore settings) : base(settings, ruleset)
|
|
{
|
|
}
|
|
}
|
|
}
|