|
using Cysharp.Threading.Tasks;
|
|
namespace PhxhSDK.AOT.VersionUpdate
|
|
{
|
|
public interface IVersionUpdateUI
|
|
{
|
|
UniTask<bool> ShowDialog(string title,
|
|
string content);
|
|
|
|
void UpdateProgress(float progress);
|
|
void UpdateProgressText(string text);
|
|
|
|
void CloseAll();
|
|
}
|
|
}
|