SteamController: Add configuration wizard

This commit is contained in:
Kamil Trzciński 2023-01-21 21:41:55 +01:00
parent 54aec613ed
commit caf6672174
5 changed files with 99 additions and 80 deletions

View file

@ -14,9 +14,9 @@ namespace SteamController
}
[Browsable(false)]
public bool EnableSteamDetection
public bool? EnableSteamDetection
{
get { return Get<bool>("EnableSteamDetection", false); }
get { return Get<bool?>("EnableSteamDetection", null); }
set { Set("EnableSteamDetection", value); }
}