Forest_Client/Forest/Assets/PhxhSDK/AOT/VersionUpdate/IVersionUpdateUI.cs

15 lines
334 B
C#

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();
}
}