20 lines
340 B
Objective-C
20 lines
340 B
Objective-C
//
|
|
// XPMIneGameCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class LittleGameInfoModel;
|
|
@interface XPMIneGameCollectionViewCell : UICollectionViewCell
|
|
|
|
///游戏
|
|
@property (nonatomic, strong) LittleGameInfoModel *gameModel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|