Files
yinmeng-ios/xplan-ios/Main/Room/View/RoomHostDelegate.h

25 lines
380 B
C
Raw Normal View History

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