// // NSObject+SDKManager.h // BaLeSDKDemo // // Created by 何晓捷 on 2024/8/5. // #import @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