1 //
2 //  PXGrid.h
3 //  Pixen-XCode
4 //
5 //  Created by Andy Matuschak on Wed Mar 17 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 @interface PXGrid : NSObject
13 {
14 	NSSize unitSize;
15 	id color;
16 	BOOL shouldDraw;
17 }
18 
19 - initWithUnitSize:(NSSize)unitSize color:color shouldDraw:(BOOL)shouldDraw;
20 
21 - (NSSize)unitSize;
22 - color;
23 - (BOOL)shouldDraw;
24 
25 - (void)setShouldDraw:(BOOL)shouldDraw;
26 - (void)setColor:color;
27 - (void)setUnitSize:(NSSize)unitSize;
28 
29 @end
30