blob: cd4e35a628bb5744f6c94328ae19c01b028afcf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using System;
using GoogleMobileAds.Api;
namespace GoogleMobileAds.Common
{
public interface IInterstitialClient
{
event EventHandler<EventArgs> OnAdLoaded;
event EventHandler<AdFailedToLoadEventArgs> OnAdFailedToLoad;
event EventHandler<EventArgs> OnAdOpening;
event EventHandler<EventArgs> OnAdClosed;
event EventHandler<EventArgs> OnAdLeavingApplication;
void CreateInterstitialAd(string adUnitId);
void LoadAd(AdRequest request);
bool IsLoaded();
void ShowInterstitial();
void DestroyInterstitial();
string MediationAdapterClassName();
}
}
|