YOUPAIRCDDanmakuInfo.h 478 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YOUPAIRCDDanmakuInfo.h
  3. // DanMuDemo
  4. //
  5. // Created by Sin on 16/9/26.
  6. // Copyright © 2016年 Sin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class YOUPAIRCDDanmaku;
  10. @interface YOUPAIRCDDanmakuInfo : NSObject
  11. /**
  12. * 弹幕的剩余时间
  13. */
  14. @property(nonatomic, assign) NSTimeInterval leftTime;
  15. /**
  16. * 弹幕对象
  17. */
  18. @property(nonatomic, strong) YOUPAIRCDDanmaku* danmaku;
  19. /**
  20. * 弹道位置
  21. */
  22. @property(nonatomic, assign) NSInteger lineCount;
  23. @end