using System; public interface IUnityInterstitial { //Mediation Interstitial callbacks event Action OnInterstitialAdShowFailed; event Action OnInterstitialAdLoadFailed; event Action OnInterstitialAdReady; event Action OnInterstitialAdOpened; event Action OnInterstitialAdClosed; event Action OnInterstitialAdShowSucceeded; event Action OnInterstitialAdClicked; //Rewarded Interstitial callback event Action OnInterstitialAdRewarded; //Demand Only Interstitial callbacks event Action OnInterstitialAdReadyDemandOnly; event Action OnInterstitialAdOpenedDemandOnly; event Action OnInterstitialAdClosedDemandOnly; event Action OnInterstitialAdLoadFailedDemandOnly; event Action OnInterstitialAdClickedDemandOnly; event Action OnInterstitialAdShowFailedDemandOnly; }