1 //
2 //  PXCrosshair.h
3 //  Pixen-XCode
4 //
5 //  Created by Ian Henderson on Fri Jun 11 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 @interface PXCrosshair : NSObject {
13 	NSPoint cursorPosition;
14 }
15 
16 
17 - color;
18 - (BOOL)shouldDraw;
19 - (NSPoint)cursorPosition;
20 
21 - (void)setCursorPosition:(NSPoint)position;
22 
23 @end
24