You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
904 B
Objective-C
34 lines
904 B
Objective-C
//
|
|
// iOSBridge.h
|
|
// iOSBridge
|
|
//
|
|
// Created by Supersonic.
|
|
// Copyright (c) 2015 Supersonic. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <IronSource/IronSource.h>
|
|
#import "RewardedVideoLevelPlayCallbacksWrapper.h"
|
|
#import "InterstitialLevelPlayCallbacksWrapper.h"
|
|
#import "BannerLevelPlayCallbacksWrapper.h"
|
|
|
|
static NSString * UnityGitHash = @"a841514";
|
|
typedef void (*ISUnityBackgroundCallback)(const char* args);
|
|
typedef void (*ISUnityPauseGame)(const bool gamePause);
|
|
|
|
@interface iOSBridge : NSObject<ISRewardedVideoDelegate,
|
|
ISDemandOnlyRewardedVideoDelegate,
|
|
ISInterstitialDelegate,
|
|
ISDemandOnlyInterstitialDelegate,
|
|
ISOfferwallDelegate,
|
|
ISBannerDelegate,
|
|
ISSegmentDelegate,
|
|
ISImpressionDataDelegate,
|
|
ISConsentViewDelegate,
|
|
ISRewardedVideoManualDelegate,
|
|
ISInitializationDelegate>
|
|
|
|
@end
|
|
|
|
|