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; } } }