// Token: 0x060000E3 RID: 227 RVA: 0x00005DDE File Offset: 0x000041DE
 public static void didPassAgeGate(bool pass)
 {
     if (Chartboost.showingAgeGate)
     {
         Chartboost.doShowAgeGate(false);
         CBExternal.didPassAgeGate(pass);
     }
 }
Exemplo n.º 2
0
        //////////////////////////////////////////////////////
        /// Additional Config functions provided by Chartboost SDK
        //////////////////////////////////////////////////////

        /// <summary>
        /// Confirm if an age gate passed or failed. When specified Chartboost will wait for
        /// this call before showing the IOS App Store/Google Play Store.
        ///	If you have configured your Chartboost experience to use the age gate feature
        ///	then this method must be executed after the user has confirmed their age.  The Chartboost SDK
        ///	will halt until this is done.
        /// </summary>
        /// <param name="pass">The result of successfully passing the age confirmation.</param>
        public static void didPassAgeGate(bool pass)
        {
            CBExternal.didPassAgeGate(pass);
        }