mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 08:07:23 +08:00
28 lines
890 B
C#
28 lines
890 B
C#
// 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.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
{
|
|
public class BindingSettings : SettingsSubsection
|
|
{
|
|
protected override LocalisableString Header => BindingSettingsStrings.ShortcutAndGameplayBindings;
|
|
|
|
public BindingSettings(KeyBindingPanel keyConfig)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsButton
|
|
{
|
|
Text = BindingSettingsStrings.Configure,
|
|
TooltipText = BindingSettingsStrings.ChangeBindingsButton,
|
|
Action = keyConfig.ToggleVisibility
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|