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.

UnityAdsShowCompletionState.h 363B

12345678910111213
  1. /**
  2. * An enumeration for the show completion state of an ad.
  3. */
  4. typedef NS_ENUM (NSInteger, UnityAdsShowCompletionState) {
  5. /**
  6. * A state that indicates that the user skipped the ad.
  7. */
  8. kUnityShowCompletionStateSkipped,
  9. /**
  10. * A state that indicates that the ad was played entirely.
  11. */
  12. kUnityShowCompletionStateCompleted
  13. };