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.")]
|
|
|
|
|
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 "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|