1234567891011121314151617181920212223 |
- //
- // NSObject+SDKManager.h
- // BaLeSDKDemo
- //
- // Created by 何晓捷 on 2024/8/5.
- //
- #import <Foundation/Foundation.h>
- @interface SDKManager : NSObject
- + (instancetype)sharedInstance;
- @property (nonatomic, assign) BOOL shouldLog;
- - (void)sdkInitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
- - (void)sdkLogin;
- - (void)sdkLogout;
- - (void)sdkPaymentWithInfo:(NSDictionary *)paymentInfo;
- - (void)sdkRoleInfo:(NSDictionary *)parRoleInfo;
- @end
|