Example #1
0
    public void ShowAd(Action onClosedAd)
    {
        if (DataManager.isLocalTestMode)
        {
            onClosedAd?.Invoke();
        }

        this.onClosedAd = onClosedAd;
        InterstitialAdManager.ShowAd();
    }
Example #2
0
    private IEnumerator ShowAdWithDelay(float delay)
    {
        yield return(new WaitForSeconds(delay));

        InterstitialAdManager.ShowAd();
    }