1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 00:42:55 +08:00
osu-lazer/osu.Game/Overlays/Options/OtherInputOptions.cs

22 lines
538 B
C#
Raw Normal View History

2016-11-03 12:26:49 +08:00
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class OtherInputOptions : OptionsSubsection
{
protected override string Header => "Other";
2016-11-03 12:26:49 +08:00
public OtherInputOptions()
{
Children = new Drawable[]
{
new BasicCheckBox { LabelText = "OS TabletPC support" },
new BasicCheckBox { LabelText = "Wiimote/TaTaCon Drum Support" },
};
}
}
}