using Nebula.Launcher.ViewModels.Pages; using Nebula.Shared.Services; namespace Nebula.Launcher; public static class LauncherConVar { public static readonly ConVar AuthProfiles = ConVarBuilder.Build("auth.profiles.v2", []); public static readonly ConVar AuthCurrent = ConVarBuilder.Build("auth.current.v2"); public static readonly ConVar Favorites = ConVarBuilder.Build("server.favorites", []); public static readonly ConVar AuthServers = ConVarBuilder.Build("launcher.authServers", [ new AuthServerCredentials( "WizDen", [ "https://auth.spacestation14.com/", "https://auth.fallback.spacestation14.com/" ]) ]); public static readonly ConVar CurrentLang = ConVarBuilder.Build("launcher.language", "en-US"); public static readonly ConVar ILSpyUrl = ConVarBuilder.Build("decompiler.url", "https://github.com/icsharpcode/ILSpy/releases/download/v9.0/ILSpy_binaries_9.0.0.7889-x64.zip"); }