1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-13 07:57:45 +08:00

25 lines
713 B
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 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
},
};
}
}
2018-01-05 20:21:19 +09:00
}