Wuyx
2016-12-19 7321fb3d92c54d5e4dd10d59bf6e583a718f9648
commit | author | age
7321fb 1 //
W 2 //  WALuaUserProxy.h
3 //  CocosTestLua
4 //
5 //  Created by wuyx on 16/9/2.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <WASdkIntf/WASdkIntf.h>
11 @interface WALuaUserProxy : NSObject<WALoginDelegate,WAAccountBindingDelegate,WALoginViewDelegate,WAAcctManagerDelegate>
12 +(void)login:(NSDictionary*)dict;
13 +(void)loginUI:(NSDictionary*)dict;
14 +(void)hide;
15 +(void)setLoginFlowType:(NSDictionary*)dict;
16 +(int)getLoginFlowType;
17 +(void)logout;
18 +(void)bindingAccount:(NSDictionary*)dict;
19 +(void)queryBoundAccount:(NSDictionary*)dict;
20 +(void)unBindAccount:(NSDictionary*)dict;
21 +(void)switchAccount:(NSDictionary*)dict;
22 +(void)createNewAccount:(NSDictionary*)dict;
23 +(void)clearLoginCache;
24 +(NSString*)getAccountInfo:(NSDictionary*)dict;
25 +(NSString*)getCurrentLoginResult;
26 @end