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.
12 lines
575 B
12 lines
575 B
#import "UMONPlacementContent.h" |
|
#import "UnityMonetizationPlacementContentState.h" |
|
#import "UnityServices.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@protocol UnityMonetizationDelegate <UnityServicesDelegate> |
|
-(void)placementContentReady:(NSString *)placementId placementContent:(UMONPlacementContent *)decision; |
|
-(void)placementContentStateDidChange:(NSString *)placementId placementContent:(UMONPlacementContent *)placementContent previousState:(UnityMonetizationPlacementContentState)previousState newState:(UnityMonetizationPlacementContentState)newState; |
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|