//
// TPLightView.h
// ThePaperBase
//
// Created by zhousan on 15/12/29.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TPLightView : UIView
- (id)initWithValue:(int)value;
@property(nonatomic, assign)int value;
@end
|