// // BreakThroughFinishViewController.h // Lighting // // Created by 曹云霄 on 2016/12/8. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" @protocol CompeteDelegate @optional /** 完成 */ - (void)finished; @end @interface BreakThroughFinishViewController : BaseViewController @property (nonatomic,weak) iddelegate; @property (nonatomic,assign) RESULT_STATE state; /** 闯关结果 */ @property (weak, nonatomic) IBOutlet UILabel *emigratedResultLabel; /** 得分 */ @property (nonatomic,copy) NSString *score; /** 积分 */ @property (weak, nonatomic) IBOutlet UILabel *integralLabel; /** 积分 */ @property (nonatomic,copy) NSString *integral; @end