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

21 lines
510 B
C#

using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class OtherInputOptions : OptionsSubsection
{
public OtherInputOptions()
{
Header = "Other";
Children = new Drawable[]
{
new BasicCheckBox { LabelText = "OS TabletPC support" },
new BasicCheckBox { LabelText = "Wiimote/TaTaCon Drum Support" },
};
}
}
}