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