Swiftgram/LegacyComponents/TGPhotoBrushSettingsView.h
2017-07-28 16:50:06 +03: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