TCUserAgreementController.h 315 B

123456789101112131415
  1. //
  2. // TCUserAgreementController.h
  3. // TCLVBIMDemo
  4. //
  5. // Created by zhangxiang on 16/9/14.
  6. // Copyright © 2016年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^Agree)(BOOL isAgree);
  10. @interface TCUserAgreementController : UIViewController
  11. @property(nonatomic,strong)Agree agree;
  12. @end