aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Settings
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-08-14 03:13:01 +0300
committergdkchan <gab.dark.100@gmail.com>2018-08-13 21:13:01 -0300
commit17f54b5d78ac9ee83419dc204a02e3887bdca8e4 (patch)
tree76b922c31f620661b541465ba72d10ef049830dd /Ryujinx.HLE/Settings
parent4f499b6845f7f46542cde945bad8f3275d3a11d5 (diff)
Implement IProfile Get and GetBase (#266)
* implement IProfile Get(Base) * use default user * changed userid
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; }
}
}