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.

UnityAdsExtendedDelegate.h 723B

12345678910111213141516171819202122
  1. #import <UnityAds/UnityAdsPlacementState.h>
  2. #import <UnityAds/UnityAdsDelegate.h>
  3. NS_ASSUME_NONNULL_BEGIN
  4. @protocol UnityAdsExtendedDelegate <UnityAdsDelegate>
  5. /**
  6. * Called when a click event happens.
  7. *
  8. * @param placementId The ID of the placement that was clicked.
  9. */
  10. - (void)unityAdsDidClick: (NSString *)placementId;
  11. /**
  12. * Called when a placement changes state.
  13. *
  14. * @param placementId The ID of the placement that changed state.
  15. * @param oldState The state before the change.
  16. * @param newState The state after the change.
  17. */
  18. - (void)unityAdsPlacementStateChanged: (NSString *)placementId oldState: (UnityAdsPlacementState)oldState newState: (UnityAdsPlacementState)newState;
  19. @end
  20. NS_ASSUME_NONNULL_END