mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-05 04:32:52 +00:00
git-subtree-dir: submodules/LegacyComponents git-subtree-mainline:6086305304git-subtree-split:d559434616
14 lines
326 B
Objective-C
14 lines
326 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class TGPaintBrush;
|
|
|
|
@interface TGPaintState : NSObject
|
|
|
|
@property (nonatomic, strong) UIColor *color;
|
|
@property (nonatomic, assign, getter=isEraser) bool eraser;
|
|
@property (nonatomic, assign) CGFloat weight;
|
|
@property (nonatomic, strong) TGPaintBrush *brush;
|
|
|
|
@end
|