Files
Golf2D/Assets/Plugins/iOS/Appodeal/AppodealMrecViewDelegate.h
2023-12-06 14:51:43 +05:30

17 lines
757 B
Objective-C

#import <Foundation/Foundation.h>
#import <Appodeal/Appodeal.h>
typedef void (*AppodealMrecViewCallbacks) ();
typedef void (*AppodealMrecViewDidLoadCallback) ();
@interface AppodealMrecViewDelegate : NSObject <APDBannerViewDelegate>
@property (assign, nonatomic) AppodealMrecViewDidLoadCallback mrecViewDidLoadAdCallback;
@property (assign, nonatomic) AppodealMrecViewCallbacks mrecViewDidFailToLoadAdCallback;
@property (assign, nonatomic) AppodealMrecViewCallbacks mrecViewDidClickCallback;
@property (assign, nonatomic) AppodealMrecViewCallbacks mrecViewDidShowCallback;
@property (assign, nonatomic) AppodealMrecViewCallbacks mrecViewDidFailToPresentCallback;
@property (assign, nonatomic) AppodealMrecViewCallbacks mrecViewDidExpiredCallback;
@end