Add mania config manager

This commit is contained in:
smoogipoo
2018-01-17 20:10:35 +09:00
parent 0b7e1ce667
commit 9f4ebad6e3
4 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,21 @@
// 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.Framework.Platform;
using osu.Game.Rulesets.Configuration;
namespace osu.Game.Rulesets.Mania.Configuration
{
public class ManiaConfigManager : RulesetConfigManager<ManiaSetting>
{
public ManiaConfigManager(Ruleset ruleset, Storage storage)
: base(ruleset, storage)
{
}
}
public enum ManiaSetting
{
ScrollSpeed
}
}