lpw
2022-07-07 323473db4a10949a6d6dab3f55ab1e40696308ba
frameworks/WASdkIntf.framework/Headers/WAICsc.h
@@ -29,9 +29,36 @@
- (void)showConversation:(nullable NSMutableDictionary *)config;
#pragma mark -- 设置游戏名称信息
- (void)setName:(nonnull NSString *)name;
/*!
 DEPRECATED: aihep2.x版本已废弃
 */
- (void)setName:(nonnull NSString *)name  __attribute__ ((deprecated));
#pragma mark -- 设置SDK语言
- (void)setLanguage:(nonnull NSString *)language;
#pragma mark -- 设置SDK方向
/*
 UIInterfaceOrientationMaskPortrait,         // 设备(屏幕)直立
 UIInterfaceOrientationMaskLandscapeLeft,    // 设备(屏幕)向左横置
 UIInterfaceOrientationMaskLandscapeRight,   // 设备(屏幕)向右橫置
 UIInterfaceOrientationMaskPortraitUpsideDown,// 设备(屏幕)直立,上下顛倒
 UIInterfaceOrientationMaskLandscape,        // 设备(屏幕)横置,包含向左和向右
 UIInterfaceOrientationMaskAll,              // 设备(屏幕)可以支持上下左右四个方向
 UIInterfaceOrientationMaskAllButUpsideDown  //设备(屏幕)可以支持上左右三个个方向,但不支持直立上下颠倒
 */
- (void)setSDKInterfaceOrientationMask:(NSUInteger)interfaceOrientationMask;
#pragma mark -- 判断是否加载aihelp模块
- (BOOL) isOpenAiHelp;
#pragma mark -- 打开aihelp
- (void) openAiHelp:(NSString * _Nonnull )language;
#pragma mark -- 打开aihelp 扩展是否为vip
- (void) openAiHelp:(NSString * _Nonnull )language isVip:(BOOL)vip;
@end