1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 01:42:54 +08:00
osu-lazer/osu.Game/Overlays/Options/InputOptions.cs
2016-11-03 23:01:11 -04:00

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(),
};
}
}
}