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.

UnityAdsDelegateUtil.h 652B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import <UnityAds/UnityAdsDelegate.h>
  3. #import <UnityAds/UnityAdsPlacementState.h>
  4. @interface UnityAdsDelegateUtil : NSObject
  5. + (void)unityAdsReady: (NSString *)placementId;
  6. + (void)unityAdsDidError: (UnityAdsError)error withMessage: (NSString *)message;
  7. + (void)unityAdsDidStart: (NSString *)placementId;
  8. + (void)unityAdsDidFinish: (NSString *)placementId
  9. withFinishState: (UnityAdsFinishState)state;
  10. + (void)unityAdsDoClick: (NSString *)placementId;
  11. + (void)unityAdsPlacementStateChange: (NSString *)placementId oldState: (UnityAdsPlacementState)oldState newState: (UnityAdsPlacementState)newState;
  12. @end