mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 05:07:23 +09:00
22 lines
569 B
C#
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
|
|
}
|
|
}
|