Files
peko-ios/YuMi/Modules/YMNewHome/View/Cell/XPNewHomePlayTableViewCell.h
2023-09-12 18:05:51 +08:00

29 lines
645 B
Objective-C

//
// XPNewHomePlayTableViewCell.h
// YuMi
//
// Created by YuMi on 2022/10/8.
//
#import <UIKit/UIKit.h>
#import "ClanDetailInfoModel.h"
NS_ASSUME_NONNULL_BEGIN
@class HomePlayRoomModel, XPNewHomePlayTableViewCell;
@protocol XPNewHomePlayTableViewCellDelegate <NSObject>
- (void)xPNewHomePlayTableViewCell:(XPNewHomePlayTableViewCell *)cell didSelectItem:(HomePlayRoomModel *)info;
-(void)chooseGameAction;
@end
@interface XPNewHomePlayTableViewCell : UITableViewCell
@property (nonatomic,strong) NSArray *playRoomList;
///代理
@property (nonatomic,weak) id<XPNewHomePlayTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END