SDKManager.h 465 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)InitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
  12. - (void)Login;
  13. - (void)Logout;
  14. - (void)PaymentWithJson:(NSString *)paymentJson;
  15. - (void)RoleInfoWithJson:(NSString *)roleJson;
  16. @end