mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00: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
|