ILocationServices.cs 195 B

1234567891011
  1. 
  2. namespace YooAsset
  3. {
  4. public interface ILocationServices
  5. {
  6. /// <summary>
  7. /// 定位地址转换为资源路径
  8. /// </summary>
  9. string ConvertLocationToAssetPath(string location);
  10. }
  11. }