YooAsset/Assets/YooAsset/Runtime/YooAssetDriver.cs

17 lines
221 B
C#

using UnityEngine;
namespace YooAsset
{
internal class YooAssetDriver : MonoBehaviour
{
void Update()
{
YooAssets.InternalUpdate();
}
void OnApplicationQuit()
{
DownloadSystem.DestroyAll();
}
}
}