21 lines
335 B
C
21 lines
335 B
C
![]() |
//
|
||
|
// XPMiniRoomView.h
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by 冯硕 on 2021/12/3.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
@class RoomInfoModel;
|
||
|
@interface XPMiniRoomView : UIView
|
||
|
|
||
|
///房间最小化 初始化
|
||
|
- (void)configView:(RoomInfoModel *)roomInfo controller:(UIViewController *)controller;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|