Files
peko-ios/YuMi/Library/SudMGP.framework/Headers/SudLoadMGParamModel.h
2023-09-13 10:18:45 +08:00

36 lines
1011 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Created by guanghui on 2022/7/5.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface SudLoadMGParamModel : NSObject
/// loadMG模式
@property (nonatomic, assign) int loadMGMode;
/// game view container
@property (nonatomic, strong) UIView *gameViewContainer;
/// 用户ID业务系统保证每个用户拥有唯一ID
@property (nonatomic, copy) NSString *userId;
/// 房间ID业务系统保证唯一性进入同一房间内
@property (nonatomic, copy) NSString *roomId;
/// code 短期令牌Code
@property (nonatomic, copy) NSString *code;
/// 小游戏ID测试环境和生产环境小游戏ID是一致的
@property (nonatomic, assign) long mgId;
/// language 游戏语言 现支持简体zh-CN 繁体zh-TW 英语en-US 马来语ms-MY 等
@property (nonatomic, copy) NSString *language;
/// 当loadMgMode为kLoadMgModeCrossApp时该字段有效
@property (nonatomic, copy) NSString *authorizationSecret;
- (instancetype)init;
- (BOOL) check;
@end