Files
VRCX/Dotnet/AppApi/Common/Update.cs
2025-08-11 14:11:46 +12:00

21 lines
420 B
C#

using System.Threading.Tasks;
namespace VRCX;
public partial class AppApi
{
public async Task DownloadUpdate(string fileUrl, string hashString, int downloadSize)
{
await Update.DownloadUpdate(fileUrl, hashString, downloadSize);
}
public void CancelUpdate()
{
Update.CancelUpdate();
}
public int CheckUpdateProgress()
{
return Update.UpdateProgress;
}
}