// 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(); }
// 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"); }
/** * Show special offer */ public static void ShowSpecialOffer(string placement) { Enhance.ShowSpecialOffer(placement); }