lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADMediationInterstitialAd.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2018 Google LLC. All rights reserved.
6 //
7
8 #import <GoogleMobileAds/Mediation/GADMediationAd.h>
9 #import <GoogleMobileAds/Mediation/GADMediationAdConfiguration.h>
10 #import <GoogleMobileAds/Mediation/GADMediationAdEventDelegate.h>
11 #import <UIKit/UIKit.h>
12
13 /// Rendered interstitial ad.
14 @protocol GADMediationInterstitialAd <GADMediationAd>
15
16 /// Presents the receiver from the view controller.
17 - (void)presentFromViewController:(nonnull UIViewController *)viewController;
18
19 @end
20
21 /// Interstitial ad configuration.
22 @interface GADMediationInterstitialAdConfiguration : GADMediationAdConfiguration
23 @end