mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
27 lines
674 B
C#
27 lines
674 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class KeyboardOptions : OptionsSubsection
|
|
{
|
|
public KeyboardOptions()
|
|
{
|
|
Header = "Keyboard";
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = "Change keyboard bindings"
|
|
},
|
|
new OsuButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = "osu!mania layout"
|
|
}
|
|
};
|
|
}
|
|
}
|
|
} |