12345678910111213141516171819202122 |
- //
- // 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)__ImportInitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
- - (void)__ImportLogin;
- - (void)__ImportLogout;
- - (void)__ImportPaymentWithJson:(NSString *)paymentJson;
- - (void)__ImportRoleInfoWithJson:(NSString *)roleJson;
- @end
|