25 lines
528 B
C#
25 lines
528 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|