aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/UserConfig.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-07-26 09:59:48 -0400
committerMichael <[email protected]>2017-07-26 09:59:48 -0400
commit74d0790ab3b91d0a46db526f2599d6bf26172377 (patch)
tree9dc783b84a8b677c5c7020e0e584964ff9995f83 /ShiftOS.Objects/UserConfig.cs
parentc9b183a0e00720905a0da75a7d20770070a4f61d (diff)
downloadshiftos_thereturn-74d0790ab3b91d0a46db526f2599d6bf26172377.tar.gz
shiftos_thereturn-74d0790ab3b91d0a46db526f2599d6bf26172377.tar.bz2
shiftos_thereturn-74d0790ab3b91d0a46db526f2599d6bf26172377.zip
skin loading and fullscreen toggle in options
Diffstat (limited to 'ShiftOS.Objects/UserConfig.cs')
-rw-r--r--ShiftOS.Objects/UserConfig.cs12
1 files changed, 8 insertions, 4 deletions
diff --git a/ShiftOS.Objects/UserConfig.cs b/ShiftOS.Objects/UserConfig.cs
index b483e26..b36a2e0 100644
--- a/ShiftOS.Objects/UserConfig.cs
+++ b/ShiftOS.Objects/UserConfig.cs
@@ -15,12 +15,16 @@ namespace ShiftOS.Objects
public int DigitalSocietyPort { get; set; }
public int ScreenWidth = 1920;
public int ScreenHeight = 1080;
+ public bool Fullscreen = true;
private static UserConfig def = new UserConfig
- {
- Language = "english",
- DigitalSocietyAddress = "michaeltheshifter.me",
- DigitalSocietyPort = 13370
+ {
+ Language = "english",
+ DigitalSocietyAddress = "michaeltheshifter.me",
+ DigitalSocietyPort = 13370,
+ Fullscreen = true,
+ ScreenWidth = 1920,
+ ScreenHeight = 1080,
};
public static UserConfig current = null;