BGVideoGiftAnimationView.h 601 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BGVideoGiftAnimationView.h
  3. // BuguLive
  4. //
  5. // Created by Mac on 2021/8/13.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class GiftModel;
  10. @class BGVideoGiftAnimationView;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol BGVideoGiftAnimationViewDelegate <NSObject>
  13. - (void)animationView:(BGVideoGiftAnimationView *)animationView didFinishAnimation:(GiftModel *)model;
  14. @end
  15. @interface BGVideoGiftAnimationView : UIView
  16. @property(nonatomic, strong) GiftModel *giftModel;
  17. @property(nonatomic, weak) id<BGVideoGiftAnimationViewDelegate>delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END