21 lines
392 B
C
21 lines
392 B
C
|
|
//
|
||
|
|
// MSRoomSetBgCell.h
|
||
|
|
// misheng
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/12/1.
|
||
|
|
// Copyright © 2022 syllable interactive. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MSRoomSetBgCell : UICollectionViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *selImgV;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|