Forest_Client/Forest/Assets/PhxhSDK/AOT/YooAsset/LTRemoteServices.cs

25 lines
528 B
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
using YooAsset;
namespace PhxhSDK.AOT
{
public class LTRemoteServices : IRemoteServices
{
private string _remotePath;
public LTRemoteServices(string remotePath)
{
_remotePath = remotePath;
}
public string GetRemoteMainURL(string fileName)
{
return _remotePath + "/" + fileName;
}
public string GetRemoteFallbackURL(string fileName)
{
return _remotePath + "/" + fileName;
}
}
}