2018-01-17 20:21:25 +09:00

22 lines
569 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.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
}
}