summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuInkView.h
blob: cf376b346a6309affca26d5ffaff1f106c94e678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import <UIKit/UIKit.h>

@interface MuInkView : UIView
{
	CGSize pageSize;
	NSMutableArray *curves;
	UIColor *color;
}

@property(readonly) NSArray *curves;

- (id) initWithPageSize:(CGSize)pageSize;

@end