v0.4.0 major code cleanup

This commit is contained in:
Szymon Porwolik
2019-03-01 01:57:00 +01:00
committed by simpo
parent f383f3c056
commit 3ff2fff728
10 changed files with 453 additions and 394 deletions

View File

@@ -0,0 +1,7 @@
// This class gathers all global variables
internal class Globals
{
public static string strPerunVersion = "DEBUG"; // Helper for pulling version definition
public static string[] arrLogHistory = new string[10]; // Log history for GUI
}