Wuyx
2016-12-19 7321fb3d92c54d5e4dd10d59bf6e583a718f9648
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
//
//  WALuaUserProxy.h
//  CocosTestLua
//
//  Created by wuyx on 16/9/2.
//
//
 
#import <Foundation/Foundation.h>
#import <WASdkIntf/WASdkIntf.h>
@interface WALuaUserProxy : NSObject<WALoginDelegate,WAAccountBindingDelegate,WALoginViewDelegate,WAAcctManagerDelegate>
+(void)login:(NSDictionary*)dict;
+(void)loginUI:(NSDictionary*)dict;
+(void)hide;
+(void)setLoginFlowType:(NSDictionary*)dict;
+(int)getLoginFlowType;
+(void)logout;
+(void)bindingAccount:(NSDictionary*)dict;
+(void)queryBoundAccount:(NSDictionary*)dict;
+(void)unBindAccount:(NSDictionary*)dict;
+(void)switchAccount:(NSDictionary*)dict;
+(void)createNewAccount:(NSDictionary*)dict;
+(void)clearLoginCache;
+(NSString*)getAccountInfo:(NSDictionary*)dict;
+(NSString*)getCurrentLoginResult;
@end