No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityAdsFinishState.h 460B

1234567891011121314151617
  1. /**
  2. * An enumeration for the completion state of an ad.
  3. */
  4. typedef NS_ENUM (NSInteger, UnityAdsFinishState) {
  5. /**
  6. * A state that indicates that the ad did not successfully display.
  7. */
  8. kUnityAdsFinishStateError,
  9. /**
  10. * A state that indicates that the user skipped the ad.
  11. */
  12. kUnityAdsFinishStateSkipped,
  13. /**
  14. * A state that indicates that the ad was played entirely.
  15. */
  16. kUnityAdsFinishStateCompleted
  17. };