mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 15:12:54 +08:00
22 lines
538 B
C#
22 lines
538 B
C#
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";
|
|
|
|
public OtherInputOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new BasicCheckBox { LabelText = "OS TabletPC support" },
|
|
new BasicCheckBox { LabelText = "Wiimote/TaTaCon Drum Support" },
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|