30 lines
820 B
Objective-C
30 lines
820 B
Objective-C
//
|
|
// PIRoomSendRedPacketItemVC.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/10/18.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXPagingView/JXPagerView.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "WalletInfoModel.h"
|
|
typedef enum : NSUInteger {
|
|
Room_Send_Red_Packet_Type_Lobby = 0,///大厅红包
|
|
Room_Send_Red_Packet_Type_Entire_Server,///全服红包
|
|
} PIRoomSendRedPacketItemVCType;
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PIRoomSendRedPacketItemVC : MvpViewController<JXPagerViewListViewDelegate>
|
|
@property (nonatomic, copy) void(^scrollCallback)(UIScrollView *scrollView);
|
|
@property (nonatomic, copy) NSString *roomUid;
|
|
@property(nonatomic,strong) WalletInfoModel *walletModel;
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate type:(PIRoomSendRedPacketItemVCType)type;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|