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

24 lines
329 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>
NS_ASSUME_NONNULL_BEGIN
@class RoomInfoModel;
@class UserInfoModel;
@protocol RoomHostDelegate <NSObject>
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