JXRechargeViewController.h 431 B

1234567891011121314151617181920212223
  1. //
  2. // JXRechargeViewController.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/10/30.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import "JXTableViewController.h"
  9. @protocol RechargeDelegate <NSObject>
  10. -(void)rechargeSuccessed;
  11. @end
  12. @interface JXRechargeViewController : admobViewController
  13. @property (nonatomic, weak) id<RechargeDelegate> rechargeDelegate;
  14. @property (nonatomic,assign) BOOL isQuitAfterSuccess;
  15. @end