Files
YooAsset/Assets/YooAsset/Runtime/Services/LocationServices/AddressLocationServices.cs
2022-09-29 18:40:43 +08:00

11 lines
242 B
C#

namespace YooAsset
{
public class AddressLocationServices : ILocationServices
{
string ILocationServices.ConvertLocationToAssetPath(YooAssetPackage package, string location)
{
return package.MappingToAssetPath(location);
}
}
}