mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 13:57:39 +00:00
Move LizardMouse/Buttons into DEBUG settings
This commit is contained in:
parent
ef73516bfe
commit
fdb94c42ed
6 changed files with 39 additions and 30 deletions
27
SteamController/SettingsDebug.cs
Normal file
27
SteamController/SettingsDebug.cs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
using System.ComponentModel;
|
||||
using System.Configuration;
|
||||
|
||||
namespace SteamController
|
||||
{
|
||||
[Category("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; set; } = false;
|
||||
|
||||
[Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")]
|
||||
public bool LizardMouse { get; set; } = true;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue