mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
18 lines
465 B
Objective-C
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
|