新功能开发

This commit is contained in:
liyuhua
2023-08-24 17:03:32 +08:00
parent d9234acb0c
commit 02d145bda7
104 changed files with 4806 additions and 727 deletions

View File

@@ -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