using System;

public interface IInterstitialAdController
{
    event EventHandler OnAdShowFailed;
    event EventHandler OnAdClosed;
    bool IsLoaded();
    void ShowInterstitial(string placementName);
}
