mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-17 14:34:05 -05:00
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; }
|
|
}
|
|
}
|