mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Overriding variables
This commit is contained in:
parent
141da9b4ee
commit
99a70d451e
1 changed files with 5 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue