- add: Service think

This commit is contained in:
2024-12-22 16:38:47 +03:00
parent d9161f837b
commit 4d64c995f1
38 changed files with 4625 additions and 80 deletions

View File

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