Files
yinmeng-ios/xplan-ios/Main/Room/View/BaseUIContainerView/XPRoomFunctionContainerView.h

30 lines
630 B
Objective-C

//
// XPRoomFunctionContainerView.h
// xplan-ios
//
// Created by 冯硕 on 2021/12/15.
//
#import <UIKit/UIKit.h>
#import "RoomHostDelegate.h"
#import "RoomGuestDelegate.h"
NS_ASSUME_NONNULL_BEGIN
@class Music;
@interface XPRoomFunctionContainerView : UIView <RoomGuestDelegate>
- (instancetype)initWithdelegate:(id<RoomHostDelegate>)delegate;
- (void)hiddenSudGamePostionView;
///获取当前的音乐
- (Music *)getCurrentMusic;
///是否正在播放
- (BOOL)isPlaying;
///获取房间PK队伍的
- (NSArray *)getRoomPKGroupTeamList;
///房间内PK是否正在进行
- (BOOL)isRoomPKPlaying;
@end
NS_ASSUME_NONNULL_END