PBSelectBallView.h 430 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // PBSelectBallView.h
  3. // PBSDK
  4. //
  5. // Created by hello on 2025/1/3.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PBRoomManageModel;
  10. typedef void (^DidSelectedSelectBallCallBack)(PBRoomManageModel *model);
  11. @interface PBSelectBallContentView : UIView
  12. @end
  13. @interface PBSelectBallView : UIView
  14. + (void)show:(DidSelectedSelectBallCallBack )didSelectedSelectBallCallBack;
  15. @end
  16. NS_ASSUME_NONNULL_END