24 lines
466 B
Objective-C
Executable File
24 lines
466 B
Objective-C
Executable File
//
|
|
// YYRoomGamePickCell.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/2/21.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "YYRoomGamePickModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYRoomGamePickCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
|
|
@property (nonatomic, strong) YYRoomGamePickModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|