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