Files
yinmeng-ios/xplan-ios/Main/Room/View/RoomHostDelegate.h
2021-11-04 19:01:19 +08:00

25 lines
380 B
Objective-C

//
// RoomDelegate.h
// xplan-ios
//
// Created by zu on 2021/10/26.
//
#import <Foundation/Foundation.h>
#import "MicroQueueProtocol.h"
NS_ASSUME_NONNULL_BEGIN
@class RoomInfoModel;
@class UserInfoModel;
@protocol RoomHostDelegate <NSObject, MicroQueueProtocol>
- (RoomInfoModel*)getRoomInfo;
- (UserInfoModel*)getUserInfo;
- (void)exitRoom;
@end
NS_ASSUME_NONNULL_END