AntiAddictionHttpManager.h 436 B

1234567891011121314151617181920
  1. #import <Foundation/Foundation.h>
  2. #import "AntiAddictionAsyncHttp.h"
  3. NS_ASSUME_NONNULL_BEGIN
  4. extern NSString *ANTI_ADDICTION_HTTP_FINISH_NOTIFICATION;
  5. @interface AntiAddictionHttpManager : NSObject
  6. @property (nonatomic) NSString *unityVersion;
  7. + (NSInteger)httpTaskIndex;
  8. + (void)addHttpTask:(AntiAddictionAsyncHttp *)httpTask index:(NSInteger)taskIndex;
  9. + (AntiAddictionHttpManager *)shareInstance;
  10. @end
  11. NS_ASSUME_NONNULL_END