mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 17:37:33 +01:00
17 lines
418 B
Objective-C
17 lines
418 B
Objective-C
#import "PGPhotoProcessPass.h"
|
|
|
|
@class PGPhotoTool;
|
|
|
|
@interface PGPhotoToolComposer : PGPhotoProcessPass
|
|
|
|
@property (nonatomic, readonly) NSArray *tools;
|
|
@property (nonatomic, readonly) NSArray *advancedTools;
|
|
@property (nonatomic, readonly) bool shouldBeSkipped;
|
|
@property (nonatomic, assign) CGSize imageSize;
|
|
|
|
- (void)addPhotoTool:(PGPhotoTool *)tool;
|
|
- (void)addPhotoTools:(NSArray *)tools;
|
|
- (void)compose;
|
|
|
|
@end
|