// // BGVideoGiftAnimationView.h // BuguLive // // Created by Mac on 2021/8/13. // Copyright © 2021 xfg. All rights reserved. // #import @class GiftModel; @class BGVideoGiftAnimationView; NS_ASSUME_NONNULL_BEGIN @protocol BGVideoGiftAnimationViewDelegate - (void)animationView:(BGVideoGiftAnimationView *)animationView didFinishAnimation:(GiftModel *)model; @end @interface BGVideoGiftAnimationView : UIView @property(nonatomic, strong) GiftModel *giftModel; @property(nonatomic, weak) iddelegate; @end NS_ASSUME_NONNULL_END