27 lines
557 B
Objective-C
27 lines
557 B
Objective-C
//
|
|
// GameUniversalBannerView.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/10/15.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class SVGAVideoEntity, PIUniversalBannerModel, AttachmentModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface GameUniversalBannerView : UIView
|
|
|
|
@property (nonatomic, strong) SVGAVideoEntity *entity;
|
|
@property (nonatomic, strong) PIUniversalBannerModel *model;
|
|
|
|
+ (void)display:(UIView *)superView
|
|
with:(AttachmentModel *)attachment
|
|
complete:(void(^)(void))complete
|
|
goToGame:(void(^)(NSInteger gameID))go;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|