2021-12-29 19:14:10 +08:00
|
|
|
//
|
|
|
|
// XCGameRoomFaceCell.h
|
|
|
|
// XChat
|
|
|
|
//
|
|
|
|
// Created by 卫明何 on 2017/9/29.
|
|
|
|
// Copyright © 2017年 XC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2022-01-13 18:56:36 +08:00
|
|
|
#import "NetImageView.h"
|
2021-12-29 19:14:10 +08:00
|
|
|
|
|
|
|
@interface XCGameRoomFaceCell : UICollectionViewCell
|
|
|
|
|
|
|
|
/**
|
|
|
|
表情图标
|
|
|
|
*/
|
|
|
|
@property (strong, nonatomic) UIImageView *faceImageView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
表情名
|
|
|
|
*/
|
|
|
|
@property (strong, nonatomic) UILabel *faceName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
贵族标识 tag
|
|
|
|
*/
|
2022-01-13 18:56:36 +08:00
|
|
|
@property (strong, nonatomic) NetImageView *nobleTagImageView;
|
2021-12-29 19:14:10 +08:00
|
|
|
|
2022-01-11 15:01:44 +08:00
|
|
|
///贵族表情锁
|
|
|
|
@property (nonatomic, strong) UIImageView *lockImageView;
|
|
|
|
|
2021-12-29 19:14:10 +08:00
|
|
|
@end
|