From 74d0790ab3b91d0a46db526f2599d6bf26172377 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 26 Jul 2017 09:59:48 -0400 Subject: skin loading and fullscreen toggle in options --- ShiftOS.Objects/UserConfig.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'ShiftOS.Objects/UserConfig.cs') 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; -- cgit v1.2.3