Esempio n. 1
0
    // Special Offer

    public void OnShowSpecialOffer()
    {
        // Check whether a special offer is available

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

        // The special offer is ready, display it

        Enhance.ShowSpecialOffer();
    }
Esempio n. 2
0
    // Special Offer

    public void OnShowSpecialOffer()
    {
        // Check whether a special offer is available

        if (!Enhance.IsSpecialOfferReady())
        {
            writeLog("Special offer is not ready");
            return;
        }

        // The special offer is ready, display it

        Enhance.ShowSpecialOffer();
        writeLog("Showing special offer");
    }
Esempio n. 3
0
 /**
  * Show special offer
  */
 public static void ShowSpecialOffer(string placement)
 {
     Enhance.ShowSpecialOffer(placement);
 }