2023-07-14 18:50:55 +08:00
|
|
|
//
|
|
|
|
// YMReceiveRedPacketView.h
|
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by YUMI on 2022/9/2.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2023-10-25 19:26:20 +08:00
|
|
|
#import "XPRedPacketModel.h"
|
|
|
|
|
2023-10-31 11:09:04 +08:00
|
|
|
@protocol XPReceiveRedPacketViewDelegate <NSObject>
|
|
|
|
|
|
|
|
-(void)closeViewAction;
|
|
|
|
|
|
|
|
@end
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@class XPReceiveRedPacketModel, XPRedPacketModel;
|
|
|
|
@interface XPReceiveRedPacketView : UIView
|
|
|
|
|
|
|
|
///是否在全服红包的房间内
|
|
|
|
@property (nonatomic, assign) BOOL inAllPacketRoom;
|
2023-10-31 11:09:04 +08:00
|
|
|
@property(nonatomic,weak) id<XPReceiveRedPacketViewDelegate>delegate;
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
@property (nonatomic, strong) XPRedPacketModel *receiveModel;
|
|
|
|
|
|
|
|
@property (nonatomic, strong) UIView *alphaView;
|
2023-10-26 15:20:20 +08:00
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|