mirror of
https://github.com/ppy/osu
synced 2024-12-21 06:16:00 +00:00
22 lines
441 B
C#
22 lines
441 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class InputOptions : OptionsSection
|
|
{
|
|
protected override string Header => "Input";
|
|
|
|
public InputOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new MouseOptions(),
|
|
new KeyboardOptions(),
|
|
new OtherInputOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|