diff options
| author | Michael <[email protected]> | 2017-07-26 09:59:48 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-07-26 09:59:48 -0400 |
| commit | 74d0790ab3b91d0a46db526f2599d6bf26172377 (patch) | |
| tree | 9dc783b84a8b677c5c7020e0e584964ff9995f83 /ShiftOS.Objects/UserConfig.cs | |
| parent | c9b183a0e00720905a0da75a7d20770070a4f61d (diff) | |
| download | shiftos_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.cs | 12 |
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; |
