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