Wuyx
2016-12-22 d8d5ed0df38f9b558a031bfed7b0ad5a3ff6d588
commit | author | age
7321fb 1 //
W 2 //  WALuaCoreProxy.h
3 //  WACocos2dxLua
4 //
5 //  Created by wuyx on 16/9/8.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <WASdkIntf/WASdkIntf.h>
11 @interface WALuaCoreProxy : NSObject
12 /*!
13  @abstract 初始化
14  */
15 +(void)init;
16 /*!
17  @abstract 开启数据收集
18  */
19 +(void)initAppEventTracker;
20 /*!
21  @abstract 是否调试模式
22  */
23 +(NSNumber*)isDebugMode;
24 /*!
25  @abstract 设置调试模式
26  */
27 +(void)setDebugMode:(NSDictionary*)dict;
28 /*!
29  @abstract 获取userId
30  */
31 +(NSString*)getUserId;
32 /*!
33  @abstract 设置serverId
34  */
35 +(void)setServerId:(NSDictionary*)dict;
36 /*!
37  @abstract 获取serverId
38  */
39
40 +(NSString*)getServerId;
41 /*!
42  @abstract 设置level
43  */
44 +(void)setLevel:(NSDictionary*)dict;
45 /*!
46  @abstract 获取level
47  */
48 +(NSNumber*)getLevel;
49 /*!
50  @abstract 设置gameUserId
51  */
52 +(void)setGameUserId:(NSDictionary*)dict;
53 /*!
54  @abstract 获取gameUserId
55  */
56 +(NSString*)getGameUserId;
57 @end