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

15 lines
281 B
C#

using Cysharp.Threading.Tasks;
namespace PhxhSDK.AOT.VersionUpdate
{
public interface IVersionUpdate
{
UniTask<EVersionUpdateType> CheckVersion();
UniTask<bool> UpdateRes();
VersionUpdateInfo GetVersionInfo();
}
}