Blame view

GameActivitySDK.framework/Versions/A/Headers/LetsGameActivityAPI.h 556 Bytes
c80ffd587   alexYang   SDK
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  //
  //  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;
  
  +(instancetype)instance;
  
  - (void)hide;
  
  -(void)decideIsDebug:(int)isDebug;
  
  -(void)GameActivityWithParaDictory:(NSDictionary *)paraDictory handleCallBackL:(void(^)(void))accomplistCallBack;
  
  @end