Files
peko-ios/YuMi/Modules/YMNewHome/View/Cell/XPNewHomePlayEmptyTableViewCell.h
2023-09-21 17:44:59 +08:00

27 lines
497 B
Objective-C

//
// XPNewHomePlayEmptyTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/10/8.
//
#import <UIKit/UIKit.h>
#import "ClanDetailInfoModel.h"
@protocol XPNewHomePlayEmptyTableViewCellDelegate <NSObject>
-(void)emptyCellChooseGameAction;
@end
NS_ASSUME_NONNULL_BEGIN
@interface XPNewHomePlayEmptyTableViewCell : UITableViewCell
@property (nonatomic,assign) BOOL isClan;
@property (nonatomic,weak) id<XPNewHomePlayEmptyTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END