SDKManager.h 496 B

1234567891011121314151617181920212223
  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