Beispiel #1
0
    public void onInterstitialSkippedVideo(string msg)
    {
        int id = int.Parse(msg);

        log("onInterstitialSkippedVideo(" + msg + ")");

        if (interstitials.ContainsKey(id) && interstitials[id] != null)
        {
            TapSenseVideoListener l = interstitials[id].getVideoListener();
            if (l != null)
            {
                l.onInterstitialSkippedVideo(interstitials[id]);
            }
        }
    }
Beispiel #2
0
 public void setVideoListener(TapSenseVideoListener listener)
 {
     this.videoListener = listener;
 }