15 lines
281 B
C#
15 lines
281 B
C#
|
using Cysharp.Threading.Tasks;
|
|||
|
namespace PhxhSDK.AOT.VersionUpdate
|
|||
|
{
|
|||
|
public interface IVersionUpdate
|
|||
|
{
|
|||
|
|
|||
|
UniTask<EVersionUpdateType> CheckVersion();
|
|||
|
|
|||
|
UniTask<bool> UpdateRes();
|
|||
|
|
|||
|
VersionUpdateInfo GetVersionInfo();
|
|||
|
|
|||
|
}
|
|||
|
}
|