26 lines
497 B
Objective-C
26 lines
497 B
Objective-C
//
|
|
// RTCBaseImpl.h
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/10/19.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RtcInterface.h"
|
|
#import "RtcImplDelegate.h"
|
|
#import "AccountInfoStorage.h"
|
|
#import "YUMINNNN.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
UIKIT_EXTERN NSString * kRoomBackMusicPlayMusicFinishKey;
|
|
|
|
@interface BaseRtcImpl : PIBaseModel <RtcInterface>
|
|
|
|
@property (nonatomic,weak) id<RtcImplDelegate> delegate;
|
|
|
|
- (instancetype)initWithDelegate:(id<RtcImplDelegate>)delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|