17 lines
299 B
Objective-C
17 lines
299 B
Objective-C
//
|
|
// XPRoomBaseUIView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomBackContainerView : UIView
|
|
- (instancetype)initWithdelegate:(id<RoomHostDelegate>)delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|