1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 05:27:26 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Configuration/ManiaConfigManager.cs

22 lines
569 B
C#
Raw Normal View History

2018-01-17 19:10:35 +08:00
// 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
}
}