aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Settings
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-03 14:04:58 -0300
committergdkchan <gab.dark.100@gmail.com>2018-03-03 14:04:58 -0300
commit7d48886750dadf839eb2bb37e3a81314b5497c36 (patch)
treebcaa7f14974ec7a00d40829ecb9f14805be131c3 /Ryujinx.Core/Settings
parent646af2498c8ef74546f73ed993f9037e4882493b (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.cs8
-rw-r--r--Ryujinx.Core/Settings/SetSys.cs7
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;
+ }
+}