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.
14 lines
584 B
14 lines
584 B
#import <UIKit/UIViewController.h> |
|
#import "UMONRewardablePlacementContent.h" |
|
#import "UnityAdsFinishState.h" |
|
|
|
@protocol UMONShowAdDelegate <NSObject> |
|
-(void)unityAdsDidStart:(NSString*)placementId; |
|
-(void)unityAdsDidFinish:(NSString*)placementId withFinishState:(UnityAdsFinishState)finishState; |
|
@end |
|
|
|
@interface UMONShowAdPlacementContent : UMONRewardablePlacementContent |
|
@property (strong, nonatomic) id<UMONShowAdDelegate> delegate; |
|
-(void)show:(UIViewController *)viewController; |
|
-(void)show:(UIViewController *)viewController withDelegate:(id<UMONShowAdDelegate>)delegate; |
|
@end
|
|
|