37 lines
914 B
C
37 lines
914 B
C
|
|
//
|
||
|
|
// QY_ZhuanPanView.h
|
||
|
|
// QiaoYuYueWan
|
||
|
|
// 押宝游戏
|
||
|
|
// Created by 翟三美 on 2020/10/19.
|
||
|
|
// Copyright © 2020 QiaoYuYueWan. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
//#import "TurntableView.h"
|
||
|
|
#import "RCMicRoomViewModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface WL_StakeView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *whiteView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *oneBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *tenBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *baiBtn;
|
||
|
|
|
||
|
|
//@property (nonatomic,strong) TurntableView * turntable;//普通转盘
|
||
|
|
/*房间ID*/
|
||
|
|
@property(nonatomic, strong) NSString *rid;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *moneyBgView;
|
||
|
|
|
||
|
|
+ (WL_StakeView *)initBoxWith:(RCMicRoomViewModel *)model;
|
||
|
|
|
||
|
|
/// show 出来
|
||
|
|
- (void)showOnView:(nullable UIView *)parent;
|
||
|
|
|
||
|
|
- (void)updateModel:(RCMicRoomViewModel *)model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|