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

28 lines
708 B
C#
Raw Normal View History

2016-11-03 12:26:49 +08:00
using System;
using osu.Framework.Graphics;
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-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"
}
};
}
}
}