コード例 #1
0
        // Token: 0x06000107 RID: 263 RVA: 0x0000628C File Offset: 0x0000468C
        private void shouldDisplayMoreAppsEvent(string location)
        {
            bool flag = true;

            if (Chartboost.shouldDisplayMoreApps != null)
            {
                flag = Chartboost.shouldDisplayMoreApps(CBLocation.locationFromName(location));
            }
            CBExternal.chartBoostShouldDisplayMoreAppsCallbackResult(flag);
            if (flag)
            {
                Chartboost.showMoreApps(CBLocation.locationFromName(location));
            }
        }
コード例 #2
0
        private void shouldDisplayMoreAppsEvent(string location)
        {
            bool shouldDisplayMoreAppsResponse = true;

            if (shouldDisplayMoreApps != null)
            {
                shouldDisplayMoreAppsResponse = shouldDisplayMoreApps(CBLocation.locationFromName(location));
            }
            CBExternal.chartBoostShouldDisplayMoreAppsCallbackResult(shouldDisplayMoreAppsResponse);
            if (shouldDisplayMoreAppsResponse)
            {
                Chartboost.showMoreApps(CBLocation.locationFromName(location));
            }
        }