Files
yinmeng-ios/xplan-ios/Main/Home/View/XPHomeLittleGameViewController.h
2023-10-10 11:19:56 +08:00

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