2023-07-14 18:50:55 +08:00
|
|
|
//
|
|
|
|
// XPMineListCell.h
|
|
|
|
// YuMi
|
|
|
|
//
|
|
|
|
// Created by YuMi on 2023/6/30.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2024-07-18 19:03:11 +08:00
|
|
|
@class XPMineFunctionItemModel, LittleGameInfoModel;
|
2023-07-14 18:50:55 +08:00
|
|
|
@interface XPMineListCell : UITableViewCell
|
|
|
|
///功能
|
2024-07-18 19:03:11 +08:00
|
|
|
@property (nonatomic,strong) XPMineFunctionItemModel *itemModel;
|
2023-07-14 18:50:55 +08:00
|
|
|
-(void)setCornerWithIsTop:(BOOL)isTop isBottom:(BOOL)isBottom;
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|