19 lines
398 B
Objective-C
19 lines
398 B
Objective-C
//
|
|
// XPRoomAnimationView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 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>
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|