Files
peko-ios/YuMi/Modules/YMRoom/View/RoomAnimationProtocol.h

32 lines
649 B
C
Raw Normal View History

2023-07-14 18:50:55 +08:00
//
// RoomAnimationProtocol.h
// YUMI
//
// Created by zu on 2022/1/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/** XPRoomAnimationView 用到的协议。
RoomVC View RoomHostDelegate RoomGuestDelegate
XPRoomAnimationView > RoomHostDelegate > RoomAnimationProtocolRoomGuestDelegate继承
*/
@protocol RoomAnimationProtocol <NSObject>
@optional
/**
* StageView
*/
- (CGPoint)animationPointAtStageViewByUid:(NSString *)uid;
- (CGPoint)animationPointAtStageViewByIndex:(NSInteger)index;
2023-07-14 18:50:55 +08:00
@end
NS_ASSUME_NONNULL_END