1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 20:07:25 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Gameplay/ModsSettings.cs

28 lines
888 B
C#
Raw Normal View History

// 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.
2018-06-06 11:32:59 +08:00
using osu.Framework.Allocation;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
public class ModsSettings : SettingsSubsection
{
protected override string Header => "Mods";
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new[]
{
new SettingsCheckbox
{
2019-06-09 14:12:41 +08:00
LabelText = "Increase visibility of first object when visual impairment mods are enabled",
2019-11-21 00:27:34 +08:00
Bindable = config.GetBindable<bool>(OsuSetting.IncreaseFirstObjectVisibility),
2019-11-21 05:26:39 +08:00
Keywords = new[] { "Mod" }
2018-06-06 11:32:59 +08:00
},
};
}
}
}