17f54b5d78
* implement IProfile Get(Base) * use default user * changed userid
12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections.Generic;
|
|
using Ryujinx.HLE.OsHle;
|
|
|
|
namespace Ryujinx.HLE.Settings
|
|
{
|
|
public class SystemSettings
|
|
{
|
|
public Profile User { get; set; }
|
|
public ColorSet ThemeColor { get; set; }
|
|
}
|
|
}
|