15 lines
334 B
C#
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();
|
|||
|
}
|
|||
|
}
|