1 //
2 //  PXMagicWandTool.h
3 //  Pixen-XCode
4 //
5 //  Created by Andy Matuschak on Sat Jun 12 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "PXFillTool.h"
11 
12 @interface PXMagicWandTool : PXFillTool
13 {
14     BOOL isMoving, isAdding, isSubtracting;
15 	NSPoint origin;
16 	NSRect selectedRect, lastSelectedRect;
17 	int oldLayerIndex, oldLastLayerIndex;
18 	NSMutableArray *selectedPoints;
19 }
20 
21 @end
22