24 lines
455 B
Objective-C
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
|