SVGAAudioEntity.h 546 B

12345678910111213141516171819202122
  1. //
  2. // SVGAAudioEntity.h
  3. // SVGAPlayer
  4. //
  5. // Created by PonyCui on 2018/10/18.
  6. // Copyright © 2018年 UED Center. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class SVGAProtoAudioEntity;
  10. @interface SVGAAudioEntity : NSObject
  11. @property (nonatomic, readonly) NSString *audioKey;
  12. @property (nonatomic, readonly) NSInteger startFrame;
  13. @property (nonatomic, readonly) NSInteger endFrame;
  14. @property (nonatomic, readonly) NSInteger startTime;
  15. - (instancetype)initWithProtoObject:(SVGAProtoAudioEntity *)protoObject;
  16. @end