29 lines
567 B
Objective-C
29 lines
567 B
Objective-C
//
|
|
// QXDirectDelegate.h
|
|
// IsLandVoice
|
|
//
|
|
// Created by 启星 on 2025/3/17.
|
|
//
|
|
//#import "SRUserHomeModel.h"
|
|
|
|
#ifndef QXDirectDelegate_h
|
|
#define QXDirectDelegate_h
|
|
#import "QXSearchModel.h"
|
|
@protocol QXDirectDelegate <NSObject>
|
|
|
|
@optional
|
|
/// 设置主持人比例
|
|
-(void)setDirectRatioSuccess;
|
|
/// 删除主持人
|
|
-(void)removeDirectSuccess;
|
|
/// 添加主持人
|
|
-(void)addDirectWithUser:(QXSearchModel*)user;
|
|
/// 删除亲密关系
|
|
-(void)removeRelationshipSuccess;
|
|
/// 发起pk
|
|
-(void)sendPKWithRoomId:(NSString*)roomId;
|
|
|
|
@end
|
|
|
|
#endif /* QXDirectDelegate_h */
|