using System;

public interface IInterstitialAdProvider : IAdProvider
{
    event EventHandler<string> OnAdShowFailed;
    event EventHandler OnAdClosed;
    void LoadInterstitialAd(double priceFloor = 0d);
    void ShowInterstitialAd(string placementName);
}
