/// <summary> /// Destroys the current banner ad, if there is one. The next call to ShowWithOptions() will create a new banner ad. /// </summary> public static void Destroy() { #if UNITY_ANDROID HZBannerAdAndroid.Destroy(); #endif #if UNITY_IPHONE && !UNITY_EDITOR HZBannerAdIOS.Destroy(); #endif }
/// <summary> /// Destroys the current banner ad, if there is one. The next call to ShowWithOptions() will create a new banner ad. /// </summary> public static void Destroy() { #if !UNITY_EDITOR && (UNITY_ANDROID || UNITY_IPHONE) #if UNITY_ANDROID HZBannerAdAndroid.Destroy(); #elif UNITY_IPHONE HZBannerAdIOS.Destroy(); #endif #else #endif }
// Token: 0x0600009F RID: 159 RVA: 0x00003370 File Offset: 0x00001570 public static void Destroy() { HZBannerAdAndroid.Destroy(); }