2021-10-14 21:10:04 +08:00
|
|
|
//
|
|
|
|
// XPRoomBaseUIView.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/10/11.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2021-11-18 15:34:52 +08:00
|
|
|
#import "RoomHostDelegate.h"
|
2021-10-14 21:10:04 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2021-10-18 19:10:13 +08:00
|
|
|
@interface XPRoomBackContainerView : UIView
|
2021-11-18 15:34:52 +08:00
|
|
|
- (instancetype)initWithdelegate:(id<RoomHostDelegate>)delegate;
|
2021-10-14 21:10:04 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|