Split Profiles into Profiles/Default and Profiles/Predefined

This commit is contained in:
Kamil Trzciński 2022-12-08 20:57:20 +01:00
parent 86b73001a2
commit bdcb70d685
9 changed files with 19 additions and 26 deletions

View file

@ -1,6 +1,5 @@
using CommonHelpers;
using ExternalHelpers;
using SteamController.Profiles;
using System.ComponentModel;
using System.Diagnostics;
@ -18,10 +17,10 @@ namespace SteamController
Context context = new Context()
{
Profiles = {
new Profiles.DesktopProfile() { Name = "Desktop" },
new Profiles.SteamProfile() { Name = "Steam", Visible = false },
new Profiles.SteamWithShorcutsProfile() { Name = "Steam with Shortcuts", Visible = false },
new Profiles.X360HapticProfile() { Name = "X360" }
new Profiles.Predefined.DesktopProfile() { Name = "Desktop" },
new Profiles.Predefined.SteamProfile() { Name = "Steam", Visible = false },
new Profiles.Predefined.SteamWithShorcutsProfile() { Name = "Steam with Shortcuts", Visible = false },
new Profiles.Predefined.X360HapticProfile() { Name = "X360" }
},
Managers = {
new Managers.ProcessManager(),