Overriding variables

This commit is contained in:
Sigmanor 2016-01-27 19:19:25 +02:00
parent 141da9b4ee
commit 99a70d451e

View file

@ -19,9 +19,10 @@ static void Main()
static class publicVar
{
public static string encryptionKey { get; set; }
public static bool keyChanged { get; set; }
public static bool settingsChanged{ get; set; }
public static bool okPressed { get; set; }
public static string encryptionKey = "";
public static bool keyChanged = false;
public static bool settingsChanged = false;
public static bool okPressed = false;
}
}