mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-01 06:10:00 +01:00
23 lines
525 B
C#
23 lines
525 B
C#
using System.ComponentModel;
|
|
using System.Configuration;
|
|
using WindowsInput;
|
|
|
|
namespace SteamController.ProfilesSettings
|
|
{
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
internal abstract class BaseSettings : ApplicationSettingsBase
|
|
{
|
|
public BaseSettings(String settingsKey) : base(settingsKey)
|
|
{
|
|
PropertyChanged += delegate
|
|
{
|
|
Save();
|
|
};
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
} |