Files
yinmeng-ios/xplan-ios/Main/Message/View/Session/XPSessionMessageGameInfoView.h
2023-08-28 18:55:29 +08:00

24 lines
455 B
Objective-C

//
// XPSessionMessageGameInfoView.h
// xplan-ios
//
// Created by duoban on 2023/8/25.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol XPSessionMessageGameInfoViewDelegate <NSObject>
-(void)clicTokMineUserInfo;
@end
@interface XPSessionMessageGameInfoView : UICollectionReusableView
@property(nonatomic,copy) NSString *headUrl;
@property(nonatomic,weak) id<XPSessionMessageGameInfoViewDelegate>delegate;
@end
NS_ASSUME_NONNULL_END