aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Settings
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Settings')
-rw-r--r--Ryujinx.HLE/Settings/ColorSet.cs8
-rw-r--r--Ryujinx.HLE/Settings/SystemSettings.cs7
2 files changed, 15 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Settings/ColorSet.cs b/Ryujinx.HLE/Settings/ColorSet.cs
new file mode 100644
index 00000000..77485d22
--- /dev/null
+++ b/Ryujinx.HLE/Settings/ColorSet.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.Settings
+{
+ public enum ColorSet
+ {
+ BasicWhite = 0,
+ BasicBlack = 1
+ }
+}
diff --git a/Ryujinx.HLE/Settings/SystemSettings.cs b/Ryujinx.HLE/Settings/SystemSettings.cs
new file mode 100644
index 00000000..555e83bb
--- /dev/null
+++ b/Ryujinx.HLE/Settings/SystemSettings.cs
@@ -0,0 +1,7 @@
+namespace Ryujinx.HLE.Settings
+{
+ public class SystemSettings
+ {
+ public ColorSet ThemeColor;
+ }
+}