21 lines
340 B
C
21 lines
340 B
C
![]() |
//
|
||
|
// XPRoomInfoView.h
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by 冯硕 on 2021/10/11.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "RoomHostDelegate.h"
|
||
|
#import "RoomGuestDelegate.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface RoomHeaderView : UIView<RoomGuestDelegate>
|
||
|
|
||
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|