mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
16 lines
459 B
C#
16 lines
459 B
C#
|
|
using System.ComponentModel;
|
||
|
|
using System.Configuration;
|
||
|
|
|
||
|
|
namespace SteamController.ProfilesSettings
|
||
|
|
{
|
||
|
|
internal class DS4BackPanelSettings : BackPanelSettings
|
||
|
|
{
|
||
|
|
private const String MappingsDescription = @"Shortcuts are to be changed in future release.";
|
||
|
|
|
||
|
|
public static DS4BackPanelSettings Default { get; } = new DS4BackPanelSettings();
|
||
|
|
|
||
|
|
public DS4BackPanelSettings() : base("DS4BackPanelSettings")
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|