Files
peko-ios/YuMi/Modules/YMRoom/View/RoomAnimationProtocol.h
2023-07-14 18:50:55 +08:00

30 lines
586 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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;
@end
NS_ASSUME_NONNULL_END