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