29 lines
715 B
Objective-C
29 lines
715 B
Objective-C
//
|
|
// XPMineGameOrderDetailsView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/8/23.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UserGameInfoVo.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol XPMineGameOrderDetailsViewDelegate <NSObject>
|
|
@optional
|
|
///再次邀请
|
|
-(void)againinitiateInvitationWithGameInfo:(UserGameInfoVo *)gameInfo;
|
|
///发信息
|
|
-(void)sendMessageHandleWithGameInfo:(UserGameInfoVo *)gameInfo;;
|
|
|
|
@end
|
|
|
|
|
|
@interface XPMineGameOrderDetailsView : UIView
|
|
@property(nonatomic,weak) id<XPMineGameOrderDetailsViewDelegate>delegate;
|
|
@property(nonatomic,strong) UserGameInfoVo *gameInfo;
|
|
@property(nonatomic,assign) BOOL isFormChat;
|
|
-(instancetype)initWithFrame:(CGRect)frame type:(int)type;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|