SDKManager.h 493 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)InitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
  12. - (void)Login;
  13. - (void)Logout;
  14. - (void)PaymentWithJson:(NSDictionary *)paymentInfo;
  15. - (void)RoleInfoWithJson:(NSDictionary *)roleInfo;
  16. - (void)SdkJumpUrl;
  17. @end