PKBattleViewController.h 581 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PKBattleViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/3/30.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BGBaseViewController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. //@protocol PKBattleDelegate <NSObject>
  12. //
  13. //-(void)pushToLiveController:(LivingModel *)model modelArr:(NSArray *)modelArr isFirstJump:(BOOL)isFirstJump;
  14. //
  15. //@end
  16. @interface PKBattleViewController : BGBaseViewController<UITableViewDelegate,UITableViewDataSource>
  17. //@property(nonatomic, strong) id<PKBattleDelegate> delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END