19 lines
478 B
C#
19 lines
478 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NovetusCMD
|
|
{
|
|
public static class LocalVars
|
|
{
|
|
public static bool StartInNo3D = false;
|
|
public static bool OverrideINI = false;
|
|
public static bool RequestToOutputInfo = false;
|
|
public static bool DebugMode = false;
|
|
public static bool NoWebServer = false;
|
|
public static int ProcessID = 0;
|
|
}
|
|
}
|