Update YooAssetDriver.cs

This commit is contained in:
hevinci
2022-04-04 22:43:42 +08:00
parent f1615b4487
commit abdf2b859e

View File

@@ -2,11 +2,16 @@
namespace YooAsset
{
internal class YooAssetDriver : MonoBehaviour
{
void Update()
{
YooAssets.InternalUpdate();
}
}
internal class YooAssetDriver : MonoBehaviour
{
void Update()
{
YooAssets.InternalUpdate();
}
void OnApplicationQuit()
{
DownloadSystem.DestroyAll();
}
}
}