1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Configuration/OsuRulesetConfigManager.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
C#
Raw Normal View History

2019-01-25 18:17:48 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2019-01-23 18:46:53 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2019-01-23 18:46:53 +08:00
using osu.Game.Configuration;
using osu.Game.Rulesets.Configuration;
2020-10-20 12:59:03 +08:00
using osu.Game.Rulesets.UI;
2019-01-23 18:46:53 +08:00
namespace osu.Game.Rulesets.Osu.Configuration
{
public class OsuRulesetConfigManager : RulesetConfigManager<OsuRulesetSetting>
2019-01-23 18:46:53 +08:00
{
public OsuRulesetConfigManager(SettingsStore settings, RulesetInfo ruleset, int? variant = null)
2019-01-23 18:46:53 +08:00
: base(settings, ruleset, variant)
{
}
protected override void InitialiseDefaults()
{
base.InitialiseDefaults();
SetDefault(OsuRulesetSetting.SnakingInSliders, true);
SetDefault(OsuRulesetSetting.SnakingOutSliders, true);
SetDefault(OsuRulesetSetting.ShowCursorTrail, true);
SetDefault(OsuRulesetSetting.PlayfieldBorderStyle, PlayfieldBorderStyle.None);
2019-01-23 18:46:53 +08:00
}
}
public enum OsuRulesetSetting
2019-01-23 18:46:53 +08:00
{
SnakingInSliders,
SnakingOutSliders,
ShowCursorTrail,
2020-10-20 12:59:03 +08:00
PlayfieldBorderStyle,
2019-01-23 18:46:53 +08:00
}
}