12345678910111213141516171819202122232425262728 |
- //
- // YOUPAIRCDDanmakuInfo.h
- // DanMuDemo
- //
- // Created by Sin on 16/9/26.
- // Copyright © 2016年 Sin. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class YOUPAIRCDDanmaku;
- @interface YOUPAIRCDDanmakuInfo : NSObject
- /**
- * 弹幕的剩余时间
- */
- @property(nonatomic, assign) NSTimeInterval leftTime;
- /**
- * 弹幕对象
- */
- @property(nonatomic, strong) YOUPAIRCDDanmaku* danmaku;
- /**
- * 弹道位置
- */
- @property(nonatomic, assign) NSInteger lineCount;
- @end
|