diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-03 14:04:58 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-03 14:04:58 -0300 |
| commit | 7d48886750dadf839eb2bb37e3a81314b5497c36 (patch) | |
| tree | bcaa7f14974ec7a00d40829ecb9f14805be131c3 /Ryujinx.Core/Settings | |
| parent | 646af2498c8ef74546f73ed993f9037e4882493b (diff) | |
Fix Rename* functions on FspSrv, add a separate class do hold system settings on Switch
Diffstat (limited to 'Ryujinx.Core/Settings')
| -rw-r--r-- | Ryujinx.Core/Settings/ColorSet.cs | 8 | ||||
| -rw-r--r-- | Ryujinx.Core/Settings/SetSys.cs | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Ryujinx.Core/Settings/ColorSet.cs b/Ryujinx.Core/Settings/ColorSet.cs new file mode 100644 index 00000000..43483363 --- /dev/null +++ b/Ryujinx.Core/Settings/ColorSet.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.Core.Settings +{ + public enum ColorSet + { + BasicWhite = 0, + BasicBlack = 1 + } +} diff --git a/Ryujinx.Core/Settings/SetSys.cs b/Ryujinx.Core/Settings/SetSys.cs new file mode 100644 index 00000000..d8b6eb6e --- /dev/null +++ b/Ryujinx.Core/Settings/SetSys.cs @@ -0,0 +1,7 @@ +namespace Ryujinx.Core.Settings +{ + public class SetSys + { + public ColorSet ThemeColor; + } +} |
