26 lines
628 B
Objective-C
26 lines
628 B
Objective-C
//
|
|
// YMRoomActivityView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/10/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "RoomGuestDelegate.h"
|
|
#import "XPRedPacketModel.h"
|
|
#import "RoomInfoModel.h"
|
|
|
|
|
|
typedef void(^OpenRedPacketHandle)(XPRedPacketModel *_Nullable,RoomType type ,BOOL isChangeRoom);
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomActivityContainerView : UIView<RoomGuestDelegate>
|
|
@property(nonatomic,strong) NSMutableArray *redPacketList;
|
|
@property(nonatomic,copy)OpenRedPacketHandle openRedPacketHandle;
|
|
- (instancetype)initWithdelegate:(id<RoomHostDelegate>)delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|