Swiftgram/submodules/LegacyComponents/Sources/TGPhotoBrushSettingsView.h
2020-02-22 15:38:54 +04:00

16 lines
403 B
Objective-C

#import <UIKit/UIKit.h>
#import "TGPhotoPaintSettingsView.h"
@class TGPaintBrush;
@class TGPaintBrushPreview;
@interface TGPhotoBrushSettingsView : UIView <TGPhotoPaintPanelView>
@property (nonatomic, copy) void (^brushChanged)(TGPaintBrush *brush);
@property (nonatomic, strong) TGPaintBrush *brush;
- (instancetype)initWithBrushes:(NSArray *)brushes preview:(TGPaintBrushPreview *)preview;
@end