1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs

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 21:44:36 +08:00
using osu.Framework.Allocation;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Graphics
2016-11-11 06:40:42 +08:00
{
public class DetailSettings : SettingsSubsection
2016-11-11 06:40:42 +08:00
{
2016-11-09 11:38:40 +08:00
protected override string Header => "Detail Settings";
2017-09-14 21:44:36 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
2017-09-17 06:47:55 +08:00
Children = new[]
2017-09-14 21:44:36 +08:00
{
new SettingsCheckbox
{
LabelText = "Storyboards",
Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
},
2017-09-17 06:47:55 +08:00
new SettingsCheckbox
{
LabelText = "Rotate cursor when dragging",
Bindable = config.GetBindable<bool>(OsuSetting.CursorRotation)
},
2017-09-14 21:44:36 +08:00
};
}
2016-11-11 06:40:42 +08:00
}
}