19 lines
329 B
Objective-C
19 lines
329 B
Objective-C
//
|
|
// XPLittleGameTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/1/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class LittleGameInfoModel;
|
|
@interface XPLittleGameTableViewCell : UITableViewCell
|
|
///游戏的信息
|
|
@property (nonatomic, strong) LittleGameInfoModel *info;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|