mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 16:46:02 +02:00
20 lines
506 B
Objective-C
20 lines
506 B
Objective-C
#import "PGPhotoTool.h"
|
|
|
|
@interface PGTintToolValue : NSObject <PGCustomToolValue>
|
|
|
|
@property (nonatomic, strong) UIColor *shadowsColor;
|
|
@property (nonatomic, strong) UIColor *highlightsColor;
|
|
@property (nonatomic, assign) CGFloat shadowsIntensity;
|
|
@property (nonatomic, assign) CGFloat highlightsIntensity;
|
|
|
|
@property (nonatomic, assign) bool editingHighlights;
|
|
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
|
|
- (NSDictionary *)dictionary;
|
|
|
|
@end
|
|
|
|
@interface PGTintTool : PGPhotoTool
|
|
|
|
@end
|