Files
yinmeng-ios/xplan-ios/Main/Room/View/AnimationView/XPRoomAnimationView.h

19 lines
398 B
C
Raw Normal View History

//
// XPRoomAnimationView.h
// xplan-ios
//
// Created by 冯硕 on 2021/12/6.
//
#import <UIKit/UIKit.h>
#import "XPRoomAnimationHitView.h"
#import "RoomHostDelegate.h"
2021-12-16 20:22:01 +08:00
#import "RoomGuestDelegate.h"
NS_ASSUME_NONNULL_BEGIN
2021-12-16 20:22:01 +08:00
@interface XPRoomAnimationView : XPRoomAnimationHitView <RoomGuestDelegate>
2022-01-13 18:45:17 +08:00
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
@end
NS_ASSUME_NONNULL_END