Implement IProfile Get and GetBase (#266)

* implement IProfile Get(Base)

* use default user

* changed userid
This commit is contained in:
emmauss 2018-08-14 03:13:01 +03:00 committed by gdkchan
parent 4f499b6845
commit 17f54b5d78
8 changed files with 154 additions and 13 deletions

View file

@ -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; }
}
}