1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 11:27:38 +08:00
osu-lazer/osu.Game/Overlays/Options/InputOptions.cs
2016-11-03 19:06:22 -04:00

21 lines
413 B
C#

using System;
using osu.Framework.Graphics;
namespace osu.Game.Overlays.Options
{
public class InputOptions : OptionsSection
{
public InputOptions()
{
Header = "Input";
Children = new Drawable[]
{
new MouseOptions(),
new KeyboardOptions(),
new OtherInputOptions(),
};
}
}
}