public void OnShowInterstitialAd(object sender, NendAdInterstitialShowEventArgs args)
 {
     Debug.Log("Show Interstitial Ad");
     switch (args.ShowResult)
     {
     }
 }
    public void OnShowInterstitialAd(object sender, NendAdInterstitialShowEventArgs args)
    {
        switch (args.ShowResult)
        {
        case NendAdInterstitialShowResult.AD_SHOW_SUCCESS:
            Debug.Log(">> OnShowInterstitialAd: AD_SHOW_SUCCESS");
            break;

        case NendAdInterstitialShowResult.AD_SHOW_ALREADY:
            Debug.Log(">> OnShowInterstitialAd: AD_SHOW_ALREADY");
            break;

        case NendAdInterstitialShowResult.AD_REQUEST_INCOMPLETE:
            Debug.Log(">> OnShowInterstitialAd: AD_REQUEST_INCOMPLETE");
            break;

        case NendAdInterstitialShowResult.AD_LOAD_INCOMPLETE:
            Debug.Log(">> OnShowInterstitialAd: AD_LOAD_INCOMPLETE");
            break;

        case NendAdInterstitialShowResult.AD_FREQUENCY_NOT_RECHABLE:
            Debug.Log(">> OnShowInterstitialAd: AD_FREQUENCY_NOT_RECHABLE");
            break;

        case NendAdInterstitialShowResult.AD_DOWNLOAD_INCOMPLETE:
            Debug.Log(">> OnShowInterstitialAd: AD_DOWNLOAD_INCOMPLETE");
            break;

        case NendAdInterstitialShowResult.AD_CANNOT_DISPLAY:
            Debug.Log(">> OnShowInterstitialAd: AD_CANNOT_DISPLAY");
            break;
        }
    }