From e9ea621b93fbb58d9edfca8375918791637bbd52 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 30 Dec 2020 20:59:04 +0800 Subject: +init --- .../GoogleMobileAds/Common/IInterstitialClient.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Client/Assembly-CSharp/GoogleMobileAds/Common/IInterstitialClient.cs (limited to 'Client/Assembly-CSharp/GoogleMobileAds/Common/IInterstitialClient.cs') diff --git a/Client/Assembly-CSharp/GoogleMobileAds/Common/IInterstitialClient.cs b/Client/Assembly-CSharp/GoogleMobileAds/Common/IInterstitialClient.cs new file mode 100644 index 0000000..cd4e35a --- /dev/null +++ b/Client/Assembly-CSharp/GoogleMobileAds/Common/IInterstitialClient.cs @@ -0,0 +1,30 @@ +using System; +using GoogleMobileAds.Api; + +namespace GoogleMobileAds.Common +{ + public interface IInterstitialClient + { + event EventHandler OnAdLoaded; + + event EventHandler OnAdFailedToLoad; + + event EventHandler OnAdOpening; + + event EventHandler OnAdClosed; + + event EventHandler OnAdLeavingApplication; + + void CreateInterstitialAd(string adUnitId); + + void LoadAd(AdRequest request); + + bool IsLoaded(); + + void ShowInterstitial(); + + void DestroyInterstitial(); + + string MediationAdapterClassName(); + } +} -- cgit v1.1-26-g67d0