46 lines
1.2 KiB
Objective-C
Executable File
46 lines
1.2 KiB
Objective-C
Executable File
//
|
|
// BJPassData.h
|
|
// QiaoYuYueWan
|
|
//
|
|
// Created by ybb on 2021/4/8.
|
|
// Copyright © 2021 QiaoYuYueWan. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BJPassData : NSObject
|
|
@property (nonatomic, assign) NSInteger boxValue_1, boxValue_2, boxValue_3, boxValue_4, boxValue_5, boxValue_6;
|
|
|
|
singleton_interface(BJPassData)
|
|
|
|
/// 房间大类型
|
|
+ (void)refreshRoomBigTypeArr:(void(^)(NSArray *cateArr))cateBlock;
|
|
|
|
/// 拿到当前的房间类型
|
|
/// @param cateBlock 回调
|
|
+ (void)refreshRoomSubType:(NSString *)subId finish:(void(^)(NSArray *cateArr))cateBlock;
|
|
|
|
+ (void)refreshLimaoRoomSubTypeWithRid:(NSString *)rId finish:(void(^)(NSArray *cateArr))cateBlock;
|
|
|
|
/// 拿到房间背景图列表
|
|
/// @param imgArrBlock 回调
|
|
+ (void)refreshRoomBgArr:(void(^)(NSArray *imgArr))imgArrBlock;
|
|
|
|
/*
|
|
"gid": 2,
|
|
"game_name": "\u82f1\u96c4\u8054\u76df",
|
|
"game_ico": "http:\/\/cdn.guduxingqiu.cloud\/game_icon\/20210427\/ae3bdf83305d9cced431209574c29db8.png",
|
|
"sort": 4,
|
|
"status": 0
|
|
*/
|
|
- (void)getGameList:(void(^)(NSArray<NSDictionary *> *gameArr))imgArrBlock;
|
|
|
|
/// 提前获取宝箱价值
|
|
+ (void)refreshBoxList:(nullable void(^)(NSArray *listArr))finishBlock;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|