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

15 lines
281 B
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
using Cysharp.Threading.Tasks;
namespace PhxhSDK.AOT.VersionUpdate
{
public interface IVersionUpdate
{
UniTask<EVersionUpdateType> CheckVersion();
UniTask<bool> UpdateRes();
VersionUpdateInfo GetVersionInfo();
}
}