SDKManager.h 484 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)sdkInitWithDigitMap:(NSString *)gameId ring:(NSString *)adId shouldLog:(BOOL)shouldLog;
  12. - (void)sdkLogin;
  13. - (void)sdkLogout;
  14. - (void)sdkPaymentWithInfo:(NSDictionary *)paymentInfo;
  15. - (void)sdkRoleInfo:(NSDictionary *)parRoleInfo;
  16. @end