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,18 @@
#import <Appodeal/Appodeal.h>
@interface AppodealUnityBannerView : NSObject
+ (instancetype)sharedInstance;
UIViewController* RootViewControllerUnityBannerView(void);
- (id)init;
- (void)setSharedBannerFrame:(CGFloat)XAxis YAxis:(CGFloat)YAxis;
- (void)hideBannerView;
- (void)showBannerView:(UIViewController*)rootViewController XAxis:(CGFloat)XAxis YAxis:(CGFloat)YAxis placement:(NSString*)placement;
- (void)reinitAppodealBannerView;
- (void)setTabletBanner: (BOOL) value;
@property(nonatomic, strong) APDBannerView *bannerView;
@property(nonatomic, assign) BOOL onScreen;
@property(nonatomic, assign) BOOL tabletBanner;
@end