21 lines
357 B
Objective-C
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
|