17 lines
396 B
C#
17 lines
396 B
C#
|
|
namespace NovetusLauncher
|
|
{
|
|
#region LocalVars
|
|
class LocalVars
|
|
{
|
|
#region Variables
|
|
public static int Clicks = 0;
|
|
public static string prevsplash = "";
|
|
public static bool launcherInitState = true;
|
|
//hack for linux. store the command line variables locally.
|
|
public static string cmdLine = "";
|
|
#endregion
|
|
}
|
|
#endregion
|
|
}
|