24 lines
492 B
Objective-C
24 lines
492 B
Objective-C
//
|
|
// XPHomeGameView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2022/11/21.
|
|
//
|
|
#import "LittleGameInfoModel.h"
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol XPHomeGameViewDelegate <NSObject>
|
|
|
|
-(void)xpHomeGameViewChooseGameWithGameModel:(LittleGameInfoModel *_Nullable)gameModel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPHomeGameView : UIView
|
|
@property (nonatomic,strong) NSArray *playGameList;
|
|
@property (nonatomic,weak) id<XPHomeGameViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|