23 lines
453 B
C
23 lines
453 B
C
|
|
//
|
||
|
|
// YYRoomGamePickView.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/2/21.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYRoomGamePickView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^onPickGameBlock)(NSString *gameId);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|