1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 15:27:20 +08:00

24 lines
711 B
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-02-07 13:52:19 +09:00
using osu.Framework.Graphics;
namespace osu.Game.Overlays.Settings.Sections.Input
2017-02-07 13:52:19 +09:00
{
public class KeyboardSettings : SettingsSubsection
2017-02-07 13:52:19 +09:00
{
protected override string Header => "Keyboard";
public KeyboardSettings(KeyBindingOverlay keyConfig)
2017-02-07 13:52:19 +09:00
{
Children = new Drawable[]
{
2017-10-21 13:16:06 +10:30
new SettingsButton
2017-02-07 13:52:19 +09:00
{
Text = "Key Configuration",
Action = keyConfig.ToggleVisibility
2017-02-07 13:52:19 +09:00
},
};
}
}
2016-11-03 00:26:49 -04:00
}