Files
yinmeng-ios/xplan-ios/Main/ModuleKit/FaceView/View/Cell/XCGameRoomFaceCell.h

33 lines
593 B
C
Raw Normal View History

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
///贵族表情锁
@property (nonatomic, strong) UIImageView *lockImageView;
2021-12-29 19:14:10 +08:00
@end