using Nebula.Launcher.Services; namespace Nebula.Launcher; public static class CurrentConVar { public static readonly ConVar EngineManifestUrl = ConVar.Build("engine.manifestUrl", "https://robust-builds.cdn.spacestation14.com/manifest.json"); public static readonly ConVar EngineModuleManifestUrl = ConVar.Build("engine.moduleManifestUrl", "https://robust-builds.cdn.spacestation14.com/modules.json"); public static readonly ConVar ManifestDownloadProtocolVersion = ConVar.Build("engine.manifestDownloadProtocolVersion", 1); public static readonly ConVar RobustAssemblyName = ConVar.Build("engine.robustAssemblyName", "Robust.Client"); public static readonly ConVar Hub = ConVar.Build("launcher.hub", [ "https://hub.spacestation14.com/api/servers" ]); public static readonly ConVar AuthServers = ConVar.Build("launcher.authServers", [ "https://auth.spacestation14.com/api/auth/authenticate" ]); }