Files
peko-ios/YuMi/Modules/YMRoom/View/AnimationView/XPRoomAnimationView.h
2024-09-12 14:01:12 +08:00

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