public ABRemoteManager(ABRemoteSetting setting, ABLocalManager localManager) { this.setting = setting; this.localManager = localManager; }
public ABUpdater(ABRemoteSetting remoteSetting, ABLocalSetting localSetting) { localManager = new ABLocalManager(localSetting); remoteManager = new ABRemoteManager(remoteSetting, localManager.LocalAssetBundlePath); }
public ABRemoteManager(ABRemoteSetting setting, string localAssetBundlePath) { this.setting = setting; this.localAssetBundlePath = localAssetBundlePath; }