aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Settings
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Settings')
-rw-r--r--Ryujinx.HLE/Settings/SystemSettings.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Ryujinx.HLE/Settings/SystemSettings.cs b/Ryujinx.HLE/Settings/SystemSettings.cs
index 555e83bb..fb94807e 100644
--- a/Ryujinx.HLE/Settings/SystemSettings.cs
+++ b/Ryujinx.HLE/Settings/SystemSettings.cs
@@ -1,7 +1,11 @@
+using System.Collections.Generic;
+using Ryujinx.HLE.OsHle;
+
namespace Ryujinx.HLE.Settings
{
public class SystemSettings
{
- public ColorSet ThemeColor;
+ public Profile User { get; set; }
+ public ColorSet ThemeColor { get; set; }
}
}