27 lines
497 B
Objective-C
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
|