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