// // RoomAnimationProtocol.h // xplan-ios // // Created by zu on 2022/1/13. // #import NS_ASSUME_NONNULL_BEGIN /** XPRoomAnimationView 用到的协议。 RoomVC 的子 View 之间的通信协议,通过 RoomHostDelegate 和 RoomGuestDelegate 继承实现。 调用方向:XPRoomAnimationView —> RoomHostDelegate —> RoomAnimationProtocol(RoomGuestDelegate继承) */ @protocol RoomAnimationProtocol @optional /** * StageView 专用。 */ - (CGPoint)animationPointAtStageViewByUid:(NSString *)uid; @end NS_ASSUME_NONNULL_END