2020-02-22 15:38:54 +04:00

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