新功能开发
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// XPSessionMessageGameCell.h
|
||||
// xplan-ios
|
||||
//
|
||||
// Created by duoban on 2023/8/22.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "UserGameInfoVo.h"
|
||||
#import "UserInfoModel.h"
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@class XPSessionMessageGameCell;
|
||||
@protocol XPSessionMessageGameCellDelegate <NSObject>
|
||||
///点击头像
|
||||
- (void)xpSessionMessageGameCell:(XPSessionMessageGameCell *)cell onAvatarClick:(NSInteger)uid;
|
||||
///跟随房间
|
||||
- (void)xpSessionMessageGameCell:(XPSessionMessageGameCell *)cell onFollowInRoom:(NSString *)roomUid;
|
||||
///下单
|
||||
- (void)xpSessionMessageGameCell:(XPSessionMessageGameCell *)cell onPlaceOrder:(NSString *)uid;
|
||||
@end
|
||||
|
||||
@interface XPSessionMessageGameCell : UICollectionViewCell
|
||||
@property(nonatomic,weak) id<XPSessionMessageGameCellDelegate>delegate;
|
||||
@property(nonatomic,strong) UserInfoModel *userInfo;
|
||||
@property(nonatomic,strong) UserGameInfoVo *gameInfo;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user