2025-05-02 10:56:19 +03:00
|
|
|
using Nebula.UpdateResolver.Configuration;
|
2025-05-01 19:01:59 +03:00
|
|
|
|
|
|
|
|
namespace Nebula.UpdateResolver;
|
|
|
|
|
|
|
|
|
|
public static class UpdateConVars
|
|
|
|
|
{
|
2025-05-01 21:03:55 +03:00
|
|
|
public static readonly ConVar<string> UpdateCacheUrl =
|
2025-05-07 14:55:00 +03:00
|
|
|
ConVarBuilder.Build<string>("update.url","https://durenko.tatar/nebula/manifest/");
|
2025-05-01 19:01:59 +03:00
|
|
|
public static readonly ConVar<LauncherManifest> CurrentLauncherManifest =
|
|
|
|
|
ConVarBuilder.Build<LauncherManifest>("update.manifest");
|
|
|
|
|
}
|