29 lines
553 B
C
29 lines
553 B
C
|
|
//
|
||
|
|
// RoomFloatingWindow.h
|
||
|
|
// QiaoYuYueWan
|
||
|
|
//
|
||
|
|
// Created by aa on 2019/7/2.
|
||
|
|
// Copyright © 2019 QiaoYuYueWan. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "BaseView.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
//悬浮球
|
||
|
|
@interface RoomFloatingWindow : BaseView
|
||
|
|
|
||
|
|
@property (nonatomic , copy) void(^muteSwitchButtonBlock)(void);
|
||
|
|
@property (nonatomic , copy) void(^shutDownButtonBlock)(void);
|
||
|
|
@property (nonatomic , copy) void(^enterTheRoomBlock)(void);
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *icon;
|
||
|
|
|
||
|
|
|
||
|
|
/// 没用了
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *muteSwitchButton;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|