2022-12-10 10:29:37 +01:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace SteamController
|
|
|
|
|
{
|
2023-09-24 16:17:49 +02:00
|
|
|
[Category("1. Settings")]
|
2022-12-10 10:29:37 +01:00
|
|
|
[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.")]
|
2025-06-10 17:54:06 +02:00
|
|
|
public bool LizardButtons
|
|
|
|
|
{
|
|
|
|
|
get { return Get<bool>("LizardButtons", false); }
|
|
|
|
|
set { Set("LizardButtons", value); }
|
|
|
|
|
}
|
2022-12-10 10:29:37 +01:00
|
|
|
|
|
|
|
|
[Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")]
|
2025-06-10 17:54:06 +02:00
|
|
|
public bool LizardMouse
|
|
|
|
|
{
|
|
|
|
|
get { return Get<bool>("LizardMouse", false); }
|
|
|
|
|
set { Set("LizardMouse", value); }
|
|
|
|
|
}
|
2022-12-10 10:29:37 +01:00
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|