mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-12 03:30:35 +01:00
43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System.ComponentModel;
|
|
using System.Configuration;
|
|
|
|
namespace SteamController
|
|
{
|
|
[Category("1. Settings")]
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
internal sealed partial class SettingsDebug : CommonHelpers.BaseSettings
|
|
{
|
|
public static readonly SettingsDebug Default = new SettingsDebug();
|
|
|
|
public SettingsDebug() : base("SettingsDebug")
|
|
{
|
|
}
|
|
|
|
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
|
|
public bool LizardButtons
|
|
{
|
|
get { return Get<bool>("LizardButtons", false); }
|
|
set { Set("LizardButtons", value); }
|
|
}
|
|
|
|
[Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")]
|
|
public bool LizardMouse
|
|
{
|
|
get { return Get<bool>("LizardMouse", false); }
|
|
set { Set("LizardMouse", value); }
|
|
}
|
|
|
|
[Description("Emulate Lizard controls in software. LizardButtons and LizardMouse must be disabled for this to take effect.")]
|
|
public bool FauxLizardMode
|
|
{
|
|
get { return Get<bool>("FauxLizardMode", false); }
|
|
set { Set("FauxLizardMode", value); }
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
}
|