23 lines
548 B
Objective-C
23 lines
548 B
Objective-C
//
|
|
// YMRoomAnimationView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPRoomAnimationHitView.h"
|
|
#import "RoomHostDelegate.h"
|
|
#import "RoomGuestDelegate.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomAnimationView : XPRoomAnimationHitView <RoomGuestDelegate>
|
|
-(void)resumeTimer;
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
|
|
- (void)receiveLuckGiftWinning:( AttachmentModel * _Nullable )attachment;
|
|
- (void)receiveLuckGiftBanner:(AttachmentModel *)attachment ;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|