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();
     }
 }
Exemple #2
0
 public void OnClickedHideBanner()
 {
     AdsMaster.HideBanner();
 }