2023-02-10 15:13:26 +08:00

14 lines
363 B
C

/**
* An enumeration for the show completion state of an ad.
*/
typedef NS_ENUM (NSInteger, UnityAdsShowCompletionState) {
/**
* A state that indicates that the user skipped the ad.
*/
kUnityShowCompletionStateSkipped,
/**
* A state that indicates that the ad was played entirely.
*/
kUnityShowCompletionStateCompleted
};