1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 17:22:54 +08:00
osu-lazer/osu.Game/Overlays/Options/KeyboardOptions.cs

28 lines
702 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;
namespace osu.Game.Overlays.Options
{
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"
}
};
}
}
}