1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 07:47:35 +08:00
osu-lazer/osu.Game/Overlays/Options/Input/KeyboardOptions.cs

27 lines
690 B
C#
Raw Normal View History

2016-11-08 10:28:06 +08:00
using osu.Framework.Graphics;
2016-11-03 12:26:49 +08:00
using osu.Game.Graphics.UserInterface;
2016-11-08 10:24:41 +08:00
namespace osu.Game.Overlays.Options.Input
2016-11-03 12:26:49 +08:00
{
public class KeyboardOptions : OptionsSubsection
{
protected override string Header => "Keyboard";
2016-11-09 11:38:40 +08:00
2016-11-03 12:26:49 +08:00
public KeyboardOptions()
{
Children = new Drawable[]
{
new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = "Change keyboard bindings"
},
new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = "osu!mania layout"
}
};
}
}
}