mirror of
https://github.com/ppy/osu.git
synced 2025-01-31 01:22:58 +08:00
cc0f61f545
# Conflicts: # osu-framework # osu.Game/GameModes/OsuGameMode.cs # osu.Game/GameModes/Play/Player.cs # osu.Game/OsuGame.cs # osu.Game/Overlays/MusicController.cs # osu.Game/Overlays/Options/EditorSection.cs # osu.Game/Overlays/Options/Input/MouseOptions.cs # osu.Game/Overlays/Options/Online/InGameChatOptions.cs # osu.Game/Overlays/Options/SkinSection.cs
33 lines
948 B
C#
33 lines
948 B
C#
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Overlays.Options.Input
|
|
{
|
|
public class OtherInputOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Other";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "OS TabletPC support",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.Tablet)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Wiimote/TaTaCon Drum Support",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.Wiimote)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|