SDKManager.h 505 B

12345678910111213141516171819202122
  1. //
  2. // NSObject+SDKManager.h
  3. // BaLeSDKDemo
  4. //
  5. // Created by 何晓捷 on 2024/8/5.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface SDKManager : NSObject
  9. + (instancetype)sharedInstance;
  10. @property (nonatomic, assign) BOOL shouldLog;
  11. - (void)__ImportInitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
  12. - (void)__ImportLogin;
  13. - (void)__ImportLogout;
  14. - (void)__ImportPaymentWithJson:(NSString *)paymentJson;
  15. - (void)__ImportRoleInfoWithJson:(NSString *)roleJson;
  16. @end