public void OnClickedShowInterstitial() { if (SelectedAdNetwork == 0) { AdsMaster.ShowInterstitial((result) => { CLog.Log("Interstitial result " + result); }); } else if (adPartner != null && adPartner.IsSupport(AdType.Interstitial)) { adPartner.ShowInterstitial(); } }
void HandleClicked() { if (action == Action.ShowInterstitial) { AdsMaster.ShowInterstitial(null, key); } else if (action == Action.ShowBanner) { AdsMaster.ShowBannerIfLoaded(key); } else if (action == Action.HideBanner) { AdsMaster.HideBanner(); } }
public void OnClickedShowInterstitialAd2() { AdsMaster.ShowInterstitial(null, "ad2"); }