mirror of
https://github.com/ppy/osu.git
synced 2025-01-07 21:32:57 +08:00
Remove incorrect class
This commit is contained in:
parent
109f577b59
commit
d54750aa37
@ -1,32 +0,0 @@
|
|||||||
// 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.Game.Configuration;
|
|
||||||
using osu.Game.Rulesets.Configuration;
|
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Osu.Configuration
|
|
||||||
{
|
|
||||||
public class OsuConfigManager : RulesetConfigManager<OsuSetting>
|
|
||||||
{
|
|
||||||
public OsuConfigManager(SettingsStore settings, RulesetInfo ruleset, int? variant = null)
|
|
||||||
: base(settings, ruleset, variant)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void InitialiseDefaults()
|
|
||||||
{
|
|
||||||
base.InitialiseDefaults();
|
|
||||||
|
|
||||||
Set(OsuSetting.SnakingInSliders, true);
|
|
||||||
Set(OsuSetting.SnakingOutSliders, true);
|
|
||||||
Set(OsuSetting.ShowCursorTrail, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum OsuSetting
|
|
||||||
{
|
|
||||||
SnakingInSliders,
|
|
||||||
SnakingOutSliders,
|
|
||||||
ShowCursorTrail
|
|
||||||
}
|
|
||||||
}
|
|
@ -16,7 +16,6 @@ namespace osu.Game.Rulesets.Osu.Configuration
|
|||||||
protected override void InitialiseDefaults()
|
protected override void InitialiseDefaults()
|
||||||
{
|
{
|
||||||
base.InitialiseDefaults();
|
base.InitialiseDefaults();
|
||||||
|
|
||||||
Set(OsuRulesetSetting.SnakingInSliders, true);
|
Set(OsuRulesetSetting.SnakingInSliders, true);
|
||||||
Set(OsuRulesetSetting.SnakingOutSliders, true);
|
Set(OsuRulesetSetting.SnakingOutSliders, true);
|
||||||
Set(OsuRulesetSetting.ShowCursorTrail, true);
|
Set(OsuRulesetSetting.ShowCursorTrail, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user