19 lines
341 B
Objective-C
19 lines
341 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class AttachmentModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BravoGiftBannerView : UIView
|
|
|
|
|
|
+ (void)display:(UIView *)superView
|
|
inRoomUid:(NSInteger)roomUid
|
|
with:(AttachmentModel *)attachment
|
|
complete:(void(^)(void))complete
|
|
exitCurrentRoom:(void(^)(void))exit;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|