This commit is contained in:
zhangzheng
2025-12-31 15:56:05 +08:00
parent f154e98620
commit 189c5016be
15 changed files with 694 additions and 495 deletions

View File

@@ -0,0 +1,15 @@
using Cysharp.Threading.Tasks;
using UnityEngine;
namespace Stary.Evo.AudioCore
{
public interface IResources
{
/// <summary>
/// 加载音频资源
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
UniTask<T> LoadAssetAsync<T>(string packageName, string assetName) where T : Object;
}
}