22 lines
529 B
Objective-C
22 lines
529 B
Objective-C
//
|
|
// XPHomeLittleGameViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/24.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol XPHomeLittleGameViewControllerDelegate <NSObject>
|
|
|
|
-(void)headerRefreshComplete;
|
|
|
|
@end
|
|
@interface XPHomeLittleGameViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
|
@property(nonatomic,weak) id<XPHomeLittleGameViewControllerDelegate>delegate;
|
|
- (void)headerRefresh;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|