Wuyx
2016-12-22 d8d5ed0df38f9b558a031bfed7b0ad5a3ff6d588
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
//  WALuaCoreProxy.h
//  WACocos2dxLua
//
//  Created by wuyx on 16/9/8.
//
//
 
#import <Foundation/Foundation.h>
#import <WASdkIntf/WASdkIntf.h>
@interface WALuaCoreProxy : NSObject
/*!
 @abstract 初始化
 */
+(void)init;
/*!
 @abstract 开启数据收集
 */
+(void)initAppEventTracker;
/*!
 @abstract 是否调试模式
 */
+(NSNumber*)isDebugMode;
/*!
 @abstract 设置调试模式
 */
+(void)setDebugMode:(NSDictionary*)dict;
/*!
 @abstract 获取userId
 */
+(NSString*)getUserId;
/*!
 @abstract 设置serverId
 */
+(void)setServerId:(NSDictionary*)dict;
/*!
 @abstract 获取serverId
 */
 
+(NSString*)getServerId;
/*!
 @abstract 设置level
 */
+(void)setLevel:(NSDictionary*)dict;
/*!
 @abstract 获取level
 */
+(NSNumber*)getLevel;
/*!
 @abstract 设置gameUserId
 */
+(void)setGameUserId:(NSDictionary*)dict;
/*!
 @abstract 获取gameUserId
 */
+(NSString*)getGameUserId;
@end