YOUPAILZLiveBarrageTool.h 602 B

1234567891011121314151617181920212223
  1. //
  2. // YOUPAILZLiveBarrageTool.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/8/30.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZLiveBarrageAttachment.h"
  10. #import "YOUPAILZLiveVipBarrageAttachment.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface YOUPAILZLiveBarrageTool : NSObject
  13. /// 处理VIP进场弹幕消息
  14. + (UIView *)youpaifhandleVipBarrageAttachment:(YOUPAILZLiveVipBarrageAttachment *)barrageAttachment;
  15. /// 处理榜单进场弹幕消息
  16. + (UIView *)youpaifhandleBarrageAttachment:(YOUPAILZLiveBarrageAttachment *)barrageAttachment;
  17. @end
  18. NS_ASSUME_NONNULL_END