RBXLegacy-src/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs

24 lines
836 B
C#

public static class GlobalVars
{
public static string ClientDir = "";
public static string ScriptsDir = "";
public static string MapsDir = "";
public static string IP = "localhost";
public static string Map = "Baseplate.rbxl";
public static int RobloxPort = 53640;
//server settings.
public static bool BodyColors = true;
//player settings
public static int UserID = 0;
public static string PlayerName = "Player";
//launcher settings.
public static bool CloseOnLaunch = false;
public static bool LocalPlayMode = false;
//client shit
public static string SelectedClient = "2008";
public static bool UsesPlayerName = false;
public static bool UsesID = true;
public static bool SupportsLocalPlay = true;
public static string SelectedClientDesc = "";
public static int LocalPlayNameSuffixNum = 0;
}