using System.Net.Http; using System.Text.Json; namespace Lentia.Core.Constants { public static class LauncherConstants { public static readonly HttpClient Http = new HttpClient(); public static readonly JsonSerializerOptions _jsonOptions = new() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }; public static class Urls { public const string MojangManifest = "https://launchermeta.mojang.com/mc/game/version_manifest_v2.json"; public const string MojangAuthServer = "https://yggdrasil.azures.fr/authserver"; } } }