23 lines
361 B
Objective-C
23 lines
361 B
Objective-C
//
|
|
// RoomHighValueGiftBanner.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/11/1.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class AttachmentModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomHighValueGiftBannerAnimation : UIView
|
|
|
|
|
|
+ (void)display:(UIView *)superView
|
|
with:(AttachmentModel *)attachment
|
|
complete:(void(^)(void))complete;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|