1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00

31 lines
1.0 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-09-14 15:44:36 +02:00
using osu.Framework.Allocation;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Graphics
2016-11-10 17:40:42 -05:00
{
public class DetailSettings : SettingsSubsection
2016-11-10 17:40:42 -05:00
{
2016-11-08 22:38:40 -05:00
protected override string Header => "Detail Settings";
2017-09-14 15:44:36 +02:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
2017-09-17 00:47:55 +02:00
Children = new[]
2017-09-14 15:44:36 +02:00
{
new SettingsCheckbox
{
LabelText = "Storyboards",
Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
},
2017-09-17 00:47:55 +02:00
new SettingsCheckbox
{
LabelText = "Rotate cursor when dragging",
Bindable = config.GetBindable<bool>(OsuSetting.CursorRotation)
},
2017-09-14 15:44:36 +02:00
};
}
2016-11-10 17:40:42 -05:00
}
}