This commit is contained in:
2023-12-06 14:51:43 +05:30
parent 133f0413f2
commit 5df6ee8ae5
530 changed files with 26339 additions and 12407 deletions

View File

@@ -0,0 +1,17 @@
#import <Foundation/Foundation.h>
#import <Appodeal/Appodeal.h>
typedef void (*AppodealInterstitialCallbacks) ();
typedef void (*AppodealInterstitialDidLoadCallback) (BOOL isPrecache);
@interface AppodealInterstitialDelegate : NSObject <AppodealInterstitialDelegate>
@property (assign, nonatomic) AppodealInterstitialDidLoadCallback interstitialDidLoadCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialDidFailToLoadAdCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialDidFailToPresentCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialWillPresentCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialDidDismissCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialDidClickCallback;
@property (assign, nonatomic) AppodealInterstitialCallbacks interstitialsDidExpiredCallback;
@end