예제 #1
0
    // Offerwall

    public void OnShowOfferwall()
    {
        // Check whether an offerwall is available

        if (!Enhance.IsOfferwallReady())
        {
            return;
        }

        // The offerwall is ready, show it

        Enhance.ShowOfferwall();
    }
예제 #2
0
    // Offerwall

    public void OnShowOfferwall()
    {
        // Check whether an offerwall is available

        if (!Enhance.IsOfferwallReady())
        {
            writeLog("Offerwall is not ready");
            return;
        }

        // The offerwall is ready, show it

        Enhance.ShowOfferwall();
        writeLog("Showing offerwall");
    }
예제 #3
0
 /**
  * Show offerwall
  */
 public static void ShowOfferwall(string placement)
 {
     Enhance.ShowOfferwall(placement);
 }