Files
yinmeng-ios/xplan-ios/Main/Room/View/RoomAnimationProtocol.h

30 lines
591 B
C
Raw Normal View History

2022-01-13 18:45:17 +08:00
//
// RoomAnimationProtocol.h
// xplan-ios
//
// 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