Add package update method

新增指定资源版本的资源更新下载方法。
This commit is contained in:
hevinci
2022-05-01 20:33:50 +08:00
parent 47af58bb5b
commit ce70eebda6
10 changed files with 403 additions and 75 deletions

View File

@@ -77,14 +77,14 @@ namespace YooAsset
}
#region
public bool MoveNext()
bool IEnumerator.MoveNext()
{
return !IsDone;
}
public void Reset()
void IEnumerator.Reset()
{
}
public object Current => null;
object IEnumerator.Current => null;
private TaskCompletionSource<object> _taskCompletionSource;
#endregion