LetsGameActivityAPI.h
698 Bytes
//
// LetsGameActivityAPI.h
// GameActivitySDK
//
// Created by yanglele on 2018/6/11.
// Copyright © 2018年 alexYang. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
static NSString *actVersion = @"1.0.2";
@interface LetsGameActivityAPI : NSObject<UIApplicationDelegate>
@property(nonatomic, assign) int isDebug;
@property(nonatomic, assign) int allowRotate;
@property(nonatomic, assign) BOOL supportLandscape;
+(instancetype)instance;
- (void)hide;
-(void)decideIsDebug:(int)isDebug;
-(void)decideAllowRotate:(int)allowRotate;
-(void)GameActivityWithParaDictory:(NSDictionary *)paraDictory handleCallBackL:(void(^)(void))accomplistCallBack;
@end