mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 04:37:30 +09:00
21 lines
530 B
C#
21 lines
530 B
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options.Input
|
|
{
|
|
public class OtherInputOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Other";
|
|
|
|
public OtherInputOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new BasicCheckBox { LabelText = "OS TabletPC support" },
|
|
new BasicCheckBox { LabelText = "Wiimote/TaTaCon Drum Support" },
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|