18 lines
353 B
C
18 lines
353 B
C
|
#ifndef SdkHub_h
|
||
|
#define SdkHub_h
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <HuoSDK/HuoSDK.h>
|
||
|
@interface SdkHub : NSObject
|
||
|
{
|
||
|
}
|
||
|
+ (instancetype)sharedInstance;
|
||
|
-(void)Init;
|
||
|
-(char*)GetChannel;
|
||
|
-(void)Login:(BOOL)isAuto;
|
||
|
-(void)Logout;
|
||
|
-(void)SwitchAccount;
|
||
|
-(void)Payment:(char*)payString;
|
||
|
-(void)SubmitRole:(char*)roleString;
|
||
|
@end
|
||
|
#endif /* SdkHub_h */
|