Files
peko-ios/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameSendMsgView.h
2024-06-07 17:10:06 +08:00

21 lines
357 B
Objective-C

//
// MSRoomGameSendMsgView.h
// YuMi
//
// Created by duoban on 2024/5/27.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol MSRoomGameSendMsgViewDelegate <NSObject>
- (void)clickSendMsgAction;
@end
@interface MSRoomGameSendMsgView : UIView
@property(nonatomic,weak) id<MSRoomGameSendMsgViewDelegate>delegate;
@end
NS_ASSUME_NONNULL_END