12345678910111213141516171819202122232425262728293031323334 |
- //
- // PBSelectBallView.h
- // PBSDK
- //
- // Created by hello on 2025/1/3.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class PBRoomManageModel;
- typedef void (^DidSelectedSelectBallCallBack)(PBRoomManageModel *model);
- @interface PBSelectBallContentView : UIView
- @end
- @interface PBSelectBallView : UIView
- + (void)show:(DidSelectedSelectBallCallBack )didSelectedSelectBallCallBack;
- @end
- NS_ASSUME_NONNULL_END
|