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.

UnityMonetizationDelegate.h 610B

123456789101112
  1. #import <UnityAds/UMONPlacementContent.h>
  2. #import <UnityAds/UnityMonetizationPlacementContentState.h>
  3. #import <UnityAds/UnityServices.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. @protocol UnityMonetizationDelegate <UnityServicesDelegate>
  6. - (void)placementContentReady: (NSString *)placementId placementContent: (UMONPlacementContent *)decision;
  7. - (void)placementContentStateDidChange: (NSString *)placementId placementContent: (UMONPlacementContent *)placementContent previousState: (UnityMonetizationPlacementContentState)previousState newState: (UnityMonetizationPlacementContentState)newState;
  8. @end
  9. NS_ASSUME_NONNULL_END