25 lines
404 B
Objective-C
25 lines
404 B
Objective-C
//
|
|
// CPLevelUpAnimation.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/9/23.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class AttachmentModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CPLevelUpAnimation : UIView
|
|
|
|
@property (nonatomic, strong) AttachmentModel *cpAttachment;
|
|
|
|
+ (void)display:(UIView *)superView
|
|
with:(AttachmentModel *)attachment
|
|
complete:(void(^)(void))complete;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|