1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-11 17:09:46 +01:00
Telegram/thirdparty/PGPhotoEditor/PGTintTool.h
2015-10-01 19:19:52 +03:00

18 lines
465 B
Objective-C

#import "PGPhotoTool.h"
@interface PGTintToolValue : NSObject <PGCustomToolValue>
@property (nonatomic, assign) UIColor *shadowsColor;
@property (nonatomic, assign) UIColor *highlightsColor;
@property (nonatomic, assign) CGFloat shadowsIntensity;
@property (nonatomic, assign) CGFloat highlightsIntensity;
@property (nonatomic, assign) bool editingHighlights;
@property (nonatomic, assign) bool editingIntensity;
@end
@interface PGTintTool : PGPhotoTool
@end