Files
YooAsset/Assets/YooAsset/Runtime/Services/ILocationServices.cs
2022-10-14 11:49:32 +08:00

11 lines
218 B
C#

namespace YooAsset
{
public interface ILocationServices
{
/// <summary>
/// 定位地址转换为资源路径
/// </summary>
string ConvertLocationToAssetPath(AssetsPackage package, string location);
}
}