aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCarver Harrison <[email protected]>2016-07-23 21:43:14 -0700
committerGitHub <[email protected]>2016-07-23 21:43:14 -0700
commit69fe691ea6111d1009f9a0ac49b162c36070e64e (patch)
tree68ba4a53d712a18c2aaee11ba888013fcc596eae /source
parent0c5b360fcc7f8fd4de0ab91624e630543615d4dd (diff)
downloadshiftos-c--69fe691ea6111d1009f9a0ac49b162c36070e64e.tar.gz
shiftos-c--69fe691ea6111d1009f9a0ac49b162c36070e64e.tar.bz2
shiftos-c--69fe691ea6111d1009f9a0ac49b162c36070e64e.zip
Diffstat (limited to 'source')
-rw-r--r--source/WindowsFormsApplication1/API.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/WindowsFormsApplication1/API.cs b/source/WindowsFormsApplication1/API.cs
index ce0ad8c..e81788d 100644
--- a/source/WindowsFormsApplication1/API.cs
+++ b/source/WindowsFormsApplication1/API.cs
@@ -84,7 +84,7 @@ namespace ShiftOS
{
public static Dictionary<Form, string> OpenGUIDs = new Dictionary<Form, string>();
public static Dictionary<string, Widget> DEF_PanelGUIDs = new Dictionary<string, Widget>();
-
+
/// <summary>
/// Settings file.
@@ -104,7 +104,7 @@ namespace ShiftOS
/// Developer mode should ALWAYS be off in non-dev releases, to prevent cheating.
/// </summary>
public static bool DeveloperMode = true;
-
+
/// <summary>
/// If this is true, only certain applications will open and only
/// certain features will work.
@@ -139,6 +139,10 @@ namespace ShiftOS
public static Dictionary<string, string> CommandAliases = new Dictionary<string, string>();
public static Terminal LoggerTerminal = null;
+ // Alternate Names for True and False
+ public static bool yes = true;
+ public static bool no = false;
+
/// <summary>
/// Logs an exception to the log.
/// </summary>