diff -r 4e567e11f45f -r 2eb229411d73 Source/Grid.h --- a/Source/Grid.h Mon Jul 07 15:47:42 2008 -0700 +++ b/Source/Grid.h Mon Jul 21 17:32:21 2008 -0700 @@ -32,7 +32,7 @@ Class _cellClass; CGColorRef _cellColor, _lineColor; CGImageRef _backgroundImage; - BOOL _usesDiagonals, _allowsMoves, _allowsCaptures; + BOOL _usesDiagonals, _allowsMoves, _allowsCaptures, _reversed; NSMutableArray *_cells; // Really a 2D array, in row-major order. } @@ -55,6 +55,7 @@ @property CGImageRef backgroundImage; // Image drawn in background, behind lines and cells @property BOOL usesDiagonals; // Affects GridCell.neighbors, for rect grids @property BOOL allowsMoves, allowsCaptures; // Can pieces be moved, and can they land on others? +@property BOOL reversed; // Reverses board (rotates 180°) by exchanging cell positions @property (readonly) NSArray *cells;